Repository: sloria/TextBlob Branch: dev Commit: a1c8944b72bb Files: 88 Total size: 2.3 MB Directory structure: gitextract_d9nsa0ec/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── build-release.yml ├── .gitignore ├── .konchrc ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── NOTICE ├── README.rst ├── RELEASING.md ├── SECURITY.md ├── docs/ │ ├── Makefile │ ├── _templates/ │ │ ├── side-primary.html │ │ └── side-secondary.html │ ├── _themes/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── flask_theme_support.py │ │ ├── kr/ │ │ │ ├── layout.html │ │ │ ├── relations.html │ │ │ ├── static/ │ │ │ │ ├── flasky.css_t │ │ │ │ └── small_flask.css │ │ │ └── theme.conf │ │ └── kr_small/ │ │ ├── layout.html │ │ ├── static/ │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── advanced_usage.rst │ ├── api_reference.rst │ ├── authors.rst │ ├── changelog.rst │ ├── classifiers.rst │ ├── conf.py │ ├── contributing.rst │ ├── extensions.rst │ ├── index.rst │ ├── install.rst │ ├── license.rst │ ├── make.bat │ └── quickstart.rst ├── pyproject.toml ├── src/ │ └── textblob/ │ ├── __init__.py │ ├── _text.py │ ├── base.py │ ├── blob.py │ ├── classifiers.py │ ├── decorators.py │ ├── download_corpora.py │ ├── en/ │ │ ├── __init__.py │ │ ├── en-context.txt │ │ ├── en-entities.txt │ │ ├── en-lexicon.txt │ │ ├── en-morphology.txt │ │ ├── en-sentiment.xml │ │ ├── en-spelling.txt │ │ ├── inflect.py │ │ ├── np_extractors.py │ │ ├── parsers.py │ │ ├── sentiments.py │ │ └── taggers.py │ ├── exceptions.py │ ├── formats.py │ ├── inflect.py │ ├── mixins.py │ ├── np_extractors.py │ ├── parsers.py │ ├── sentiments.py │ ├── taggers.py │ ├── tokenizers.py │ ├── utils.py │ └── wordnet.py ├── tests/ │ ├── __init__.py │ ├── data.csv │ ├── data.json │ ├── data.tsv │ ├── test_blob.py │ ├── test_classifiers.py │ ├── test_decorators.py │ ├── test_formats.py │ ├── test_inflect.py │ ├── test_np_extractor.py │ ├── test_parsers.py │ ├── test_sentiments.py │ ├── test_taggers.py │ ├── test_tokenizers.py │ └── test_utils.py └── tox.ini ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: daily open-pull-requests-limit: 10 - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" ================================================ FILE: .github/workflows/build-release.yml ================================================ name: build on: push: branches: ["dev"] tags: ["*"] pull_request: jobs: tests: name: ${{ matrix.name }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - { name: "3.9", python: "3.9", tox: py39 } - { name: "3.13", python: "3.13", tox: py313 } - { name: "lowest", python: "3.9", tox: py39-lowest } steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }} - name: Download nltk data run: | pip install . python -m textblob.download_corpora - run: python -m pip install tox - run: python -m tox -e${{ matrix.tox }} build: name: Build package runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install pypa/build run: python -m pip install build - name: Build a binary wheel and a source tarball run: python -m build - name: Install twine run: python -m pip install twine - name: Check build run: python -m twine check --strict dist/* - name: Store the distribution packages uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ # this duplicates pre-commit.ci, so only run it on tags # it guarantees that linting is passing prior to a release lint-pre-release: if: startsWith(github.ref, 'refs/tags') runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.11" - run: python -m pip install tox - run: python -m tox -e lint publish-to-pypi: name: PyPI release if: startsWith(github.ref, 'refs/tags/') needs: [build, tests, lint-pre-release] runs-on: ubuntu-latest environment: name: pypi url: https://pypi.org/p/textblob permissions: id-token: write steps: - name: Download all the dists uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 ================================================ FILE: .gitignore ================================================ *.py[cod] # virtualenv .venv/ venv/ # C extensions *.so # Packages *.egg *.egg-info dist build eggs parts bin var sdist develop-eggs .installed.cfg lib lib64 # pip pip-log.txt pip-wheel-metadata # Unit test / coverage reports .coverage .tox nosetests.xml test-output/ .pytest_cache # Translations *.mo # Mr Developer .mr.developer.cfg .project .pydevproject # Complexity output/*.html output/*/index.html # Sphinx docs/_build README.html # mypy .mypy_cache !tests/.env # ruff .ruff_cache ================================================ FILE: .konchrc ================================================ # -*- coding: utf-8 -*- # vi: set ft=python : import konch from textblob import TextBlob, Blobber, Word, Sentence konch.config({ 'context': { 'tb': TextBlob, 'Blobber': Blobber, 'Word': Word, 'Sentence': Sentence, }, 'prompt': '>>> ', 'ipy_autoreload': True, }) ================================================ FILE: .pre-commit-config.yaml ================================================ repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.15.6 hooks: - id: ruff - id: ruff-format - repo: https://github.com/python-jsonschema/check-jsonschema rev: 0.37.0 hooks: - id: check-github-workflows - repo: https://github.com/asottile/blacken-docs rev: 1.20.0 hooks: - id: blacken-docs additional_dependencies: [black==24.10.0] ================================================ FILE: .readthedocs.yml ================================================ version: 2 sphinx: configuration: docs/conf.py formats: - pdf build: os: ubuntu-22.04 tools: python: "3.11" python: install: - method: pip path: . extra_requirements: - docs ================================================ FILE: AUTHORS.rst ================================================ ******* Authors ******* Development Lead ================ - Steven Loria `@sloria `_ Contributors (chronological) ============================ - Pete Keen `@peterkeen `_ - Matthew Honnibal `@syllog1sm `_ - Roman Yankovsky `@RomanYankovsky `_ - David Karesh `@davidnk `_ - Evan Dempsey `@evandempsey `_ - Wesley Childs `@mrchilds `_ - Jeff Schnurr `@jschnurr `_ - Adel Qalieh `@adelq `_ - Lage Ragnarsson `@lragnarsson `_ - Jonathon Coe `@jonmcoe `_ - Adrián López Calvo `@AdrianLC `_ - Nitish Kulshrestha `@nitkul `_ - Jhon Eslava `@EpicJhon `_ - `@jcalbert `_ - Tyler James Harden `@tylerjharden `_ - `@pavelmalai `_ - Jeff Kolb `@jeffakolb `_ - Daniel Ong `@danong `_ - Jamie Moschella `@jammmo `_ - Roman Korolev `@roman-y-korolev `_ - Ram Rachum `@cool-RR `_ - Romain Casati `@casatir `_ - Evgeny Kemerov `@sudoguy `_ - Karthikeyan Singaravelan `@tirkarthi `_ - John Franey `@johnfraney `_ ================================================ FILE: CHANGELOG.rst ================================================ Changelog ========= 0.19.0 (2025-01-13) ___________________ Bug fixes: - Fix ``textblob.download_corpora`` script (:issue:`474`). Thanks :user:`cagan-elden` for reporting. Changes: - Remove vendorized ``unicodecsv`` module, as it's no longer used. - Support Python 3.9-3.13 and nltk>=3.9 (:pr:`486`) Thanks :user:`johnfraney` for the PR. 0.18.0 (2024-02-15) ------------------- Bug fixes: - Remove usage of deprecated cElementTree (:issue:`339`). Thanks :user:`tirkarthi` for reporting and for the PR. - Address ``SyntaxWarning`` on Python 3.12 (:pr:`418`). Thanks :user:`smontanaro` for the PR. Removals: - ``TextBlob.translate()`` and ``TextBlob.detect_language``, and ``textblob.translate`` are removed. Use the official Google Translate API instead (:issue:`215`). - Remove ``textblob.compat``. Support: - Support Python 3.8-3.12. Older versions are no longer supported. - Support nltk>=3.8. 0.17.1 (2021-10-21) ------------------- Bug fixes: - Fix translation and language detection (:issue:`395`). Thanks :user:`sudoguy` for the patch. 0.17.0 (2021-02-17) ------------------- Features: - Performance improvement: Use ``chain.from_iterable`` in ``_text.py`` to improve runtime and memory usage (:pr:`333`). Thanks :user:`cool-RR` for the PR. Other changes: - Remove usage of `ctypes` (:pr:`354`). Thanks :user:`casatir`. 0.16.0 (2020-04-26) ------------------- Deprecations: - ``TextBlob.translate()`` and ``TextBlob.detect_language`` are deprecated. Use the official Google Translate API instead (:issue:`215`). Other changes: - *Backwards-incompatible*: Drop support for Python 3.4. - Test against Python 3.7 and Python 3.8. - Pin NLTK to ``nltk<3.5`` on Python 2 (:issue:`315`). 0.15.3 (2019-02-24) ------------------- Bug fixes: - Fix bug when ``Word`` string type after pos_tags is not a ``str`` (:pr:`255`). Thanks :user:`roman-y-korolev` for the patch. 0.15.2 (2018-11-21) ------------------- Bug fixes: - Fix bug that raised a ``RuntimeError`` when executing methods that delegate to ``pattern.en`` (:issue:`230`). Thanks :user:`vvaezian` for the report and thanks :user:`danong` for the fix. - Fix methods of ``WordList`` that modified the list in-place by removing the internal `_collection` variable (:pr:`235`). Thanks :user:`jammmo` for the PR. 0.15.1 (2018-01-20) ------------------- Bug fixes: - Convert POS tags from treebank to wordnet when calling ``lemmatize`` to prevent ``MissingCorpusError`` (:issue:`160`). Thanks :user:`jschnurr`. 0.15.0 (2017-12-02) ------------------- Features: - Add `TextBlob.sentiment_assessments` property which exposes pattern's sentiment assessments (:issue:`170`). Thanks :user:`jeffakolb`. 0.14.0 (2017-11-20) ------------------- Features: - Use specified tokenizer when tagging (:issue:`167`). Thanks :user:`jschnurr` for the PR. 0.13.1 (2017-11-11) ------------------- Bug fixes: - Avoid AttributeError when using pattern's sentiment analyzer (:issue:`178`). Thanks :user:`tylerjharden` for the catch and patch. - Correctly pass ``format`` argument to ``NLTKClassifier.accuracy`` (:issue:`177`). Thanks :user:`pavelmalai` for the catch and patch. 0.13.0 (2017-08-15) ------------------- Features: - Performance improvements to `NaiveBayesClassifier` (:issue:`63`, :issue:`77`, :issue:`123`). Thanks :user:`jcalbert` for the PR. 0.12.0 (2017-02-27) ------------------- Features: - Add `Word.stem` and `WordList.stem` methods (:issue:`145`). Thanks :user:`nitkul`. Bug fixes: - Fix translation and language detection (:issue:`137`). Thanks :user:`EpicJhon` for the fix. Changes: - *Backwards-incompatible*: Remove Python 2.6 and 3.3 support. 0.11.1 (2016-02-17) ------------------- Bug fixes: - Fix translation and language detection (:issue:`115`, :issue:`117`, :issue:`119`). Thanks :user:`AdrianLC` and :user:`jschnurr` for the fix. Thanks :user:`AdrianLC`, :user:`edgaralts`, and :user:`pouya-cognitiv` for reporting. 0.11.0 (2015-11-01) ------------------- Changes: - Compatible with nltk>=3.1. NLTK versions < 3.1 are no longer supported. - Change default tagger to NLTKTagger (uses NLTK's averaged perceptron tagger). - Tested on Python 3.5. Bug fixes: - Fix singularization of a number of words. Thanks :user:`jonmcoe`. - Fix spelling correction when nltk>=3.1 is installed (:issue:`99`). Thanks :user:`shubham12101` for reporting. 0.10.0 (2015-10-04) ------------------- Changes: - Unchanged text is now considered a translation error. Raises ``NotTranslated`` (:issue:`76`). Thanks :user:`jschnurr`. Bug fixes: - ``Translator.translate`` will detect language of input text by default (:issue:`85`). Thanks again :user:`jschnurr`. - Fix matching of tagged phrases with CFG in ``ConllExtractor``. Thanks :user:`lragnarsson`. - Fix inflection of a few irregular English nouns. Thanks :user:`jonmcoe`. 0.9.1 (2015-06-10) ------------------ Bug fixes: - Fix ``DecisionTreeClassifier.pprint`` for compatibility with nltk>=3.0.2. - Translation no longer adds erroneous whitespace around punctuation characters (:issue:`83`). Thanks :user:`AdrianLC` for reporting and thanks :user:`jschnurr` for the patch. 0.9.0 (2014-09-15) ------------------ - TextBlob now depends on NLTK 3. The vendorized version of NLTK has been removed. - Fix bug that raised a `SyntaxError` when translating text with non-ascii characters on Python 3. - Fix bug that showed "double-escaped" unicode characters in translator output (issue #56). Thanks Evan Dempsey. - *Backwards-incompatible*: Completely remove ``import text.blob``. You should ``import textblob`` instead. - *Backwards-incompatible*: Completely remove ``PerceptronTagger``. Install ``textblob-aptagger`` instead. - *Backwards-incompatible*: Rename ``TextBlobException`` to ``TextBlobError`` and ``MissingCorpusException`` to ``MissingCorpusError``. - *Backwards-incompatible*: ``Format`` classes are passed a file object rather than a file path. - *Backwards-incompatible*: If training a classifier with data from a file, you must pass a file object (rather than a file path). - Updated English sentiment corpus. - Add ``feature_extractor`` parameter to ``NaiveBayesAnalyzer``. - Add ``textblob.formats.get_registry()`` and ``textblob.formats.register()`` which allows users to register custom data source formats. - Change ``BaseClassifier.detect`` from a ``staticmethod`` to a ``classmethod``. - Improved docs. - Tested on Python 3.4. 0.8.4 (2014-02-02) ------------------ - Fix display (``__repr__``) of WordList slices on Python 3. - Add download_corpora module. Corpora must now be downloaded using ``python -m textblob.download_corpora``. 0.8.3 (2013-12-29) ------------------ - Sentiment analyzers return namedtuples, e.g. ``Sentiment(polarity=0.12, subjectivity=0.34)``. - Memory usage improvements to NaiveBayesAnalyzer and basic_extractor (default feature extractor for classifiers module). - Add ``textblob.tokenizers.sent_tokenize`` and ``textblob.tokenizers.word_tokenize`` convenience functions. - Add ``textblob.classifiers.MaxEntClassifer``. - Improved NLTKTagger. 0.8.2 (2013-12-21) ------------------ - Fix bug in spelling correction that stripped some punctuation (Issue #48). - Various improvements to spelling correction: preserves whitespace characters (Issue #12); handle contractions and punctuation between words. Thanks @davidnk. - Make ``TextBlob.words`` more memory-efficient. - Translator now sends POST instead of GET requests. This allows for larger bodies of text to be translated (Issue #49). - Update pattern tagger for better accuracy. 0.8.1 (2013-11-16) ------------------ - Fix bug that caused ``ValueError`` upon sentence tokenization. This removes modifications made to the NLTK sentence tokenizer. - Add ``Word.lemmatize()`` method that allows passing in a part-of-speech argument. - ``Word.lemma`` returns correct part of speech for Word objects that have their ``pos`` attribute set. Thanks @RomanYankovsky. 0.8.0 (2013-10-23) ------------------ - *Backwards-incompatible*: Renamed package to ``textblob``. This avoids clashes with other namespaces called `text`. TextBlob should now be imported with ``from textblob import TextBlob``. - Update pattern resources for improved parser accuracy. - Update NLTK. - Allow Translator to connect to proxy server. - PerceptronTagger completely deprecated. Install the ``textblob-aptagger`` extension instead. 0.7.1 (2013-09-30) ------------------ - Bugfix updates. - Fix bug in feature extraction for ``NaiveBayesClassifier``. - ``basic_extractor`` is now case-sensitive, e.g. contains(I) != contains(i) - Fix ``repr`` output when a TextBlob contains non-ascii characters. - Fix part-of-speech tagging with ``PatternTagger`` on Windows. - Suppress warning about not having scikit-learn installed. 0.7.0 (2013-09-25) ------------------ - Wordnet integration. ``Word`` objects have ``synsets`` and ``definitions`` properties. The ``text.wordnet`` module allows you to create ``Synset`` and ``Lemma`` objects directly. - Move all English-specific code to its own module, ``text.en``. - Basic extensions framework in place. TextBlob has been refactored to make it easier to develop extensions. - Add ``text.classifiers.PositiveNaiveBayesClassifier``. - Update NLTK. - ``NLTKTagger`` now working on Python 3. - Fix ``__str__`` behavior. ``print(blob)`` should now print non-ascii text correctly in both Python 2 and 3. - *Backwards-incompatible*: All abstract base classes have been moved to the ``text.base`` module. - *Backwards-incompatible*: ``PerceptronTagger`` will now be maintained as an extension, ``textblob-aptagger``. Instantiating a ``text.taggers.PerceptronTagger()`` will raise a ``DeprecationWarning``. 0.6.3 (2013-09-15) ------------------ - Word tokenization fix: Words that stem from a contraction will still have an apostrophe, e.g. ``"Let's" => ["Let", "'s"]``. - Fix bug with comparing blobs to strings. - Add ``text.taggers.PerceptronTagger``, a fast and accurate POS tagger. Thanks `@syllog1sm `_. - Note for Python 3 users: You may need to update your corpora, since NLTK master has reorganized its corpus system. Just run ``curl https://raw.github.com/sloria/TextBlob/master/download_corpora.py | python`` again. - Add ``download_corpora_lite.py`` script for getting the minimum corpora requirements for TextBlob's basic features. 0.6.2 (2013-09-05) ------------------ - Fix bug that resulted in a ``UnicodeEncodeError`` when tagging text with non-ascii characters. - Add ``DecisionTreeClassifier``. - Add ``labels()`` and ``train()`` methods to classifiers. 0.6.1 (2013-09-01) ------------------ - Classifiers can be trained and tested on CSV, JSON, or TSV data. - Add basic WordNet lemmatization via the ``Word.lemma`` property. - ``WordList.pluralize()`` and ``WordList.singularize()`` methods return ``WordList`` objects. 0.6.0 (2013-08-25) ------------------ - Add Naive Bayes classification. New ``text.classifiers`` module, ``TextBlob.classify()``, and ``Sentence.classify()`` methods. - Add parsing functionality via the ``TextBlob.parse()`` method. The ``text.parsers`` module currently has one implementation (``PatternParser``). - Add spelling correction. This includes the ``TextBlob.correct()`` and ``Word.spellcheck()`` methods. - Update NLTK. - Backwards incompatible: ``clean_html`` has been deprecated, just as it has in NLTK. Use Beautiful Soup's ``soup.get_text()`` method for HTML-cleaning instead. - Slight API change to language translation: if ``from_lang`` isn't specified, attempts to detect the language. - Add ``itokenize()`` method to tokenizers that returns a generator instead of a list of tokens. 0.5.3 (2013-08-21) ------------------ - Unicode fixes: This fixes a bug that sometimes raised a ``UnicodeEncodeError`` upon creating accessing ``sentences`` for TextBlobs with non-ascii characters. - Update NLTK 0.5.2 (2013-08-14) ------------------ - `Important patch update for NLTK users`: Fix bug with importing TextBlob if local NLTK is installed. - Fix bug with computing start and end indices of sentences. 0.5.1 (2013-08-13) ------------------ - Fix bug that disallowed display of non-ascii characters in the Python REPL. - Backwards incompatible: Restore ``blob.json`` property for backwards compatibility with textblob<=0.3.10. Add a ``to_json()`` method that takes the same arguments as ``json.dumps``. - Add ``WordList.append`` and ``WordList.extend`` methods that append Word objects. 0.5.0 (2013-08-10) ------------------ - Language translation and detection API! - Add ``text.sentiments`` module. Contains the ``PatternAnalyzer`` (default implementation) as well as a ``NaiveBayesAnalyzer``. - Part-of-speech tags can be accessed via ``TextBlob.tags`` or ``TextBlob.pos_tags``. - Add ``polarity`` and ``subjectivity`` helper properties. 0.4.0 (2013-08-05) ------------------ - New ``text.tokenizers`` module with ``WordTokenizer`` and ``SentenceTokenizer``. Tokenizer instances (from either textblob itself or NLTK) can be passed to TextBlob's constructor. Tokens are accessed through the new ``tokens`` property. - New ``Blobber`` class for creating TextBlobs that share the same tagger, tokenizer, and np_extractor. - Add ``ngrams`` method. - `Backwards-incompatible`: ``TextBlob.json()`` is now a method, not a property. This allows you to pass arguments (the same that you would pass to ``json.dumps()``). - New home for documentation: https://textblob.readthedocs.io/ - Add parameter for cleaning HTML markup from text. - Minor improvement to word tokenization. - Updated NLTK. - Fix bug with adding blobs to bytestrings. 0.3.10 (2013-08-02) ------------------- - Bundled NLTK no longer overrides local installation. - Fix sentiment analysis of text with non-ascii characters. 0.3.9 (2013-07-31) ------------------ - Updated nltk. - ConllExtractor is now Python 3-compatible. - Improved sentiment analysis. - Blobs are equal (with `==`) to their string counterparts. - Added instructions to install textblob without nltk bundled. - Dropping official 3.1 and 3.2 support. 0.3.8 (2013-07-30) ------------------ - Importing TextBlob is now **much faster**. This is because the noun phrase parsers are trained only on the first call to ``noun_phrases`` (instead of training them every time you import TextBlob). - Add text.taggers module which allows user to change which POS tagger implementation to use. Currently supports PatternTagger and NLTKTagger (NLTKTagger only works with Python 2). - NPExtractor and Tagger objects can be passed to TextBlob's constructor. - Fix bug with POS-tagger not tagging one-letter words. - Rename text/np_extractor.py -> text/np_extractors.py - Add run_tests.py script. 0.3.7 (2013-07-28) ------------------ - Every word in a ``Blob`` or ``Sentence`` is a ``Word`` instance which has methods for inflection, e.g ``word.pluralize()`` and ``word.singularize()``. - Updated the ``np_extractor`` module. Now has an new implementation, ``ConllExtractor`` that uses the Conll2000 chunking corpus. Only works on Py2. ================================================ FILE: CONTRIBUTING.rst ================================================ Contributing guidelines ======================= In General ---------- - `PEP 8`_, when sensible. - Conventions *and* configuration. - TextBlob wraps functionality in NLTK and pattern.en. Anything outside of that should be written as an extension. - Test ruthlessly. Write docs for new features. - Even more important than Test-Driven Development--*Human-Driven Development*. - These guidelines may--and probably will--change. .. _`PEP 8`: http://www.python.org/dev/peps/pep-0008/ In Particular ------------- Questions, Feature Requests, Bug Reports, and Feedback. . . +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ . . .should all be reported on the `Github Issue Tracker`_ . .. _`Github Issue Tracker`: https://github.com/sloria/TextBlob/issues?state=open Setting Up for Local Development ++++++++++++++++++++++++++++++++ 1. Fork TextBlob_ on Github. :: $ git clone https://github.com/sloria/TextBlob.git $ cd TextBlob 2. Install development requirements. It is highly recommended that you use a virtualenv. :: # After activating your virtualenv $ pip install -e '.[tests]' .. _extension-development: Developing Extensions +++++++++++++++++++++ Extensions are packages with the name ``textblob-something``, where "something" is the name of your extension. Extensions should be imported with ``import textblob_something``. Model Extensions ++++++++++++++++ To create a new extension for a part-of-speech tagger, sentiment analyzer, noun phrase extractor, classifier, tokenizer, or parser, simply create a module that has a class that implements the correct interface from ``textblob.base``. For example, a tagger might look like this: .. code-block:: python from textblob.base import BaseTagger class MyTagger(BaseTagger): def tag(self, text): pass # Your implementation goes here Language Extensions +++++++++++++++++++ The process for developing language extensions is the same as developing model extensions. Create your part-of-speech taggers, tokenizers, parsers, etc. in the language of your choice. Packages should be named ``textblob-xx`` where "xx" is the two- or three-letter language code (`Language code reference`_). .. _Language code reference: http://www.loc.gov/standards/iso639-2/php/code_list.php To see examples of existing extensions, visit the :ref:`Extensions ` page. Check out the :ref:`API reference ` for more info on the model interfaces. Git Branch Structure ++++++++++++++++++++ TextBlob loosely follows Vincent Driessen's `Successful Git Branching Model `_ . In practice, the following branch conventions are used: ``dev`` The next release branch. ``master`` Current production release on PyPI. Pull Requests ++++++++++++++ 1. Create a new local branch. :: $ git checkout -b name-of-feature 2. Commit your changes. Write `good commit messages `_. :: $ git commit -m "Detailed commit message" $ git push origin name-of-feature 3. Before submitting a pull request, check the following: - If the pull request adds functionality, it is tested and the docs are updated. - If you've developed an extension, it is on the :ref:`Extensions List `. - You've added yourself to ``AUTHORS.rst``. 4. Submit a pull request to the ``sloria:dev`` branch. Running tests +++++++++++++ To run all the tests: :: $ pytest To skip slow tests: :: $ pytest -m 'not slow' Documentation +++++++++++++ Contributions to the documentation are welcome. Documentation is written in `reStructuredText`_ (rST). A quick rST reference can be found `here `_. Builds are powered by Sphinx_. To build docs and run in watch mode: :: $ tox -e docs-serve .. _Sphinx: http://sphinx.pocoo.org/ .. _`reStructuredText`: https://docutils.sourceforge.io/rst.html .. _TextBlob: https://github.com/sloria/TextBlob ================================================ FILE: LICENSE ================================================ Copyright Steven Loria and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: NOTICE ================================================ TextBlob includes some vendorized python libraries, including parts of pattern. pattern License =============== Copyright (c) 2011-2013 University of Antwerp, Belgium All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of Pattern nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT OWNER 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. ================================================ FILE: README.rst ================================================ TextBlob: Simplified Text Processing ==================================== .. image:: https://badgen.net/pypi/v/TextBlob :target: https://pypi.org/project/textblob/ :alt: Latest version .. image:: https://github.com/sloria/TextBlob/actions/workflows/build-release.yml/badge.svg :target: https://github.com/sloria/TextBlob/actions/workflows/build-release.yml :alt: Build status Homepage: `https://textblob.readthedocs.io/ `_ `TextBlob` is a Python library for processing textual data. It provides a simple API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, classification, and more. .. code-block:: python from textblob import TextBlob text = """ The titular threat of The Blob has always struck me as the ultimate movie monster: an insatiably hungry, amoeba-like mass able to penetrate virtually any safeguard, capable of--as a doomed doctor chillingly describes it--"assimilating flesh on contact. Snide comparisons to gelatin be damned, it's a concept with the most devastating of potential consequences, not unlike the grey goo scenario proposed by technological theorists fearful of artificial intelligence run rampant. """ blob = TextBlob(text) blob.tags # [('The', 'DT'), ('titular', 'JJ'), # ('threat', 'NN'), ('of', 'IN'), ...] blob.noun_phrases # WordList(['titular threat', 'blob', # 'ultimate movie monster', # 'amoeba-like mass', ...]) for sentence in blob.sentences: print(sentence.sentiment.polarity) # 0.060 # -0.341 TextBlob stands on the giant shoulders of `NLTK`_ and `pattern`_, and plays nicely with both. Features -------- - Noun phrase extraction - Part-of-speech tagging - Sentiment analysis - Classification (Naive Bayes, Decision Tree) - Tokenization (splitting text into words and sentences) - Word and phrase frequencies - Parsing - `n`-grams - Word inflection (pluralization and singularization) and lemmatization - Spelling correction - Add new models or languages through extensions - WordNet integration Get it now ---------- :: $ pip install -U textblob $ python -m textblob.download_corpora Examples -------- See more examples at the `Quickstart guide`_. .. _`Quickstart guide`: https://textblob.readthedocs.io/en/latest/quickstart.html#quickstart Documentation ------------- Full documentation is available at https://textblob.readthedocs.io/. Project Links ------------- - Docs: https://textblob.readthedocs.io/ - Changelog: https://textblob.readthedocs.io/en/latest/changelog.html - PyPI: https://pypi.python.org/pypi/TextBlob - Issues: https://github.com/sloria/TextBlob/issues License ------- MIT licensed. See the bundled `LICENSE `_ file for more details. .. _pattern: https://github.com/clips/pattern/ .. _NLTK: http://nltk.org/ ================================================ FILE: RELEASING.md ================================================ # Releasing 1. Bump version in `pyproject.toml` and update the changelog with today's date. 2. Commit: `git commit -m "Bump version and update changelog"` 3. Tag the commit: `git tag x.y.z` 4. Push: `git push --tags origin dev`. CI will take care of the PyPI release. ================================================ FILE: SECURITY.md ================================================ # Security Contact Information To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. ================================================ FILE: docs/Makefile ================================================ # Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) endif # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" @echo " text to make text files" @echo " man to make manual pages" @echo " texinfo to make Texinfo files" @echo " info to make Texinfo files and run them through makeinfo" @echo " gettext to make PO message catalogs" @echo " changes to make an overview of all changed/added/deprecated items" @echo " xml to make Docutils-native XML files" @echo " pseudoxml to make pseudoxml-XML files for display purposes" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: rm -rf $(BUILDDIR)/* html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/textblob.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/textblob.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/textblob" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/textblob" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." $(MAKE) -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." latexpdfja: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through platex and dvipdfmx..." $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." texinfo: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." @echo "Run \`make' in that directory to run these through makeinfo" \ "(use \`make info' here to do that automatically)." info: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo "Running Texinfo files through makeinfo..." make -C $(BUILDDIR)/texinfo info @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." gettext: $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale @echo @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." xml: $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml @echo @echo "Build finished. The XML files are in $(BUILDDIR)/xml." pseudoxml: $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml @echo @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." ================================================ FILE: docs/_templates/side-primary.html ================================================

TextBlob is a Python library for processing textual data. It provides a consistent API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, and more.

Useful Links

Stay Informed

================================================ FILE: docs/_templates/side-secondary.html ================================================

TextBlob is a Python library for processing textual data. It provides a consistent API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, and more.

Useful Links

================================================ FILE: docs/_themes/.gitignore ================================================ *.pyc *.pyo .DS_Store ================================================ FILE: docs/_themes/LICENSE ================================================ Modifications: Copyright (c) 2010 Kenneth Reitz. Original Project: Copyright (c) 2010 by Armin Ronacher. Some rights reserved. Redistribution and use in source and binary forms of the theme, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission. We kindly ask you to only use these themes in an unmodified manner just for Flask and Flask-related products, not for unrelated projects. If you like the visual style and want to use it for your own projects, please consider making some larger changes to the themes (such as changing font faces, sizes, colors or margins). THIS THEME IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT OWNER 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 THEME, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: docs/_themes/flask_theme_support.py ================================================ # flasky extensions. flasky pygments style based on tango style from pygments.style import Style from pygments.token import ( Comment, Error, Generic, Keyword, Literal, Name, Number, Operator, Other, Punctuation, String, Whitespace, ) class FlaskyStyle(Style): background_color = "#f8f8f8" default_style = "" styles = { # No corresponding class for the following: # Text: "", # class: '' Whitespace: "underline #f8f8f8", # class: 'w' Error: "#a40000 border:#ef2929", # class: 'err' Other: "#000000", # class 'x' Comment: "italic #8f5902", # class: 'c' Comment.Preproc: "noitalic", # class: 'cp' Keyword: "bold #004461", # class: 'k' Keyword.Constant: "bold #004461", # class: 'kc' Keyword.Declaration: "bold #004461", # class: 'kd' Keyword.Namespace: "bold #004461", # class: 'kn' Keyword.Pseudo: "bold #004461", # class: 'kp' Keyword.Reserved: "bold #004461", # class: 'kr' Keyword.Type: "bold #004461", # class: 'kt' Operator: "#582800", # class: 'o' Operator.Word: "bold #004461", # class: 'ow' - like keywords Punctuation: "bold #000000", # class: 'p' # because special names such as Name.Class, Name.Function, etc. # are not recognized as such later in the parsing, we choose them # to look the same as ordinary variables. Name: "#000000", # class: 'n' Name.Attribute: "#c4a000", # class: 'na' - to be revised Name.Builtin: "#004461", # class: 'nb' Name.Builtin.Pseudo: "#3465a4", # class: 'bp' Name.Class: "#000000", # class: 'nc' - to be revised Name.Constant: "#000000", # class: 'no' - to be revised Name.Decorator: "#888", # class: 'nd' - to be revised Name.Entity: "#ce5c00", # class: 'ni' Name.Exception: "bold #cc0000", # class: 'ne' Name.Function: "#000000", # class: 'nf' Name.Property: "#000000", # class: 'py' Name.Label: "#f57900", # class: 'nl' Name.Namespace: "#000000", # class: 'nn' - to be revised Name.Other: "#000000", # class: 'nx' Name.Tag: "bold #004461", # class: 'nt' - like a keyword Name.Variable: "#000000", # class: 'nv' - to be revised Name.Variable.Class: "#000000", # class: 'vc' - to be revised Name.Variable.Global: "#000000", # class: 'vg' - to be revised Name.Variable.Instance: "#000000", # class: 'vi' - to be revised Number: "#990000", # class: 'm' Literal: "#000000", # class: 'l' Literal.Date: "#000000", # class: 'ld' String: "#4e9a06", # class: 's' String.Backtick: "#4e9a06", # class: 'sb' String.Char: "#4e9a06", # class: 'sc' String.Doc: "italic #8f5902", # class: 'sd' - like a comment String.Double: "#4e9a06", # class: 's2' String.Escape: "#4e9a06", # class: 'se' String.Heredoc: "#4e9a06", # class: 'sh' String.Interpol: "#4e9a06", # class: 'si' String.Other: "#4e9a06", # class: 'sx' String.Regex: "#4e9a06", # class: 'sr' String.Single: "#4e9a06", # class: 's1' String.Symbol: "#4e9a06", # class: 'ss' Generic: "#000000", # class: 'g' Generic.Deleted: "#a40000", # class: 'gd' Generic.Emph: "italic #000000", # class: 'ge' Generic.Error: "#ef2929", # class: 'gr' Generic.Heading: "bold #000080", # class: 'gh' Generic.Inserted: "#00A000", # class: 'gi' Generic.Output: "#888", # class: 'go' Generic.Prompt: "#745334", # class: 'gp' Generic.Strong: "bold #000000", # class: 'gs' Generic.Subheading: "bold #800080", # class: 'gu' Generic.Traceback: "bold #a40000", # class: 'gt' } ================================================ FILE: docs/_themes/kr/layout.html ================================================ {%- extends "basic/layout.html" %} {%- block extrahead %} {{ super() }} {% if theme_touch_icon %} {% endif %} {% endblock %} {%- block relbar2 %}{% endblock %} {%- block footer %} Fork me on GitHub {%- endblock %} ================================================ FILE: docs/_themes/kr/relations.html ================================================

Related Topics

================================================ FILE: docs/_themes/kr/static/flasky.css_t ================================================ /* * flasky.css_t * ~~~~~~~~~~~~ * * :copyright: Copyright 2010 by Armin Ronacher. Modifications by Kenneth Reitz. * :license: Flask Design License, see LICENSE for details. */ {% set page_width = '940px' %} {% set sidebar_width = '220px' %} @import url("basic.css"); /* -- page layout ----------------------------------------------------------- */ body { font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro'; font-size: 17px; background-color: white; color: #000; margin: 0; padding: 0; } div.document { width: {{ page_width }}; margin: 30px auto 0 auto; } div.documentwrapper { float: left; width: 100%; } div.bodywrapper { margin: 0 0 0 {{ sidebar_width }}; } div.sphinxsidebar { width: {{ sidebar_width }}; } hr { border: 1px solid #B1B4B6; } div.body { background-color: #ffffff; color: #3E4349; padding: 0 30px 0 30px; } img.floatingflask { padding: 0 0 10px 10px; float: right; } div.footer { width: {{ page_width }}; margin: 20px auto 30px auto; font-size: 14px; color: #888; text-align: right; } div.footer a { color: #888; } div.related { display: none; } div.sphinxsidebar a { color: #444; text-decoration: none; border-bottom: 1px dotted #999; } div.sphinxsidebar a:hover { border-bottom: 1px solid #999; } div.sphinxsidebar { font-size: 14px; line-height: 1.5; } div.sphinxsidebarwrapper { padding: 18px 10px; } div.sphinxsidebarwrapper p.logo { padding: 0; margin: -10px 0 0 -20px; text-align: center; } div.sphinxsidebar h3, div.sphinxsidebar h4 { font-family: 'Garamond', 'Georgia', serif; color: #444; font-size: 24px; font-weight: normal; margin: 0 0 5px 0; padding: 0; } div.sphinxsidebar h4 { font-size: 20px; } div.sphinxsidebar h3 a { color: #444; } div.sphinxsidebar p.logo a, div.sphinxsidebar h3 a, div.sphinxsidebar p.logo a:hover, div.sphinxsidebar h3 a:hover { border: none; } div.sphinxsidebar p { color: #555; margin: 10px 0; } div.sphinxsidebar ul { margin: 10px 0; padding: 0; color: #000; } div.sphinxsidebar input { border: 1px solid #ccc; font-family: 'Georgia', serif; font-size: 1em; } /* -- body styles ----------------------------------------------------------- */ a { color: #004B6B; text-decoration: underline; } a:hover { color: #6D4100; text-decoration: underline; } div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; margin: 30px 0px 10px 0px; padding: 0; } div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } div.body h2 { font-size: 180%; } div.body h3 { font-size: 150%; } div.body h4 { font-size: 130%; } div.body h5 { font-size: 100%; } div.body h6 { font-size: 100%; } a.headerlink { color: #ddd; padding: 0 4px; text-decoration: none; } a.headerlink:hover { color: #444; background: #eaeaea; } div.body p, div.body dd, div.body li { line-height: 1.4em; } div.admonition { background: #fafafa; margin: 20px -30px; padding: 10px 30px; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; } div.admonition tt.xref, div.admonition a tt { border-bottom: 1px solid #fafafa; } dd div.admonition { margin-left: -60px; padding-left: 60px; } div.admonition p.admonition-title { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; font-size: 24px; margin: 0 0 10px 0; padding: 0; line-height: 1; } div.admonition p.last { margin-bottom: 0; } div.highlight { background-color: white; } dt:target, .highlight { background: #FAF3E8; } div.note { background-color: #eee; border: 1px solid #ccc; } div.seealso { background-color: #ffc; border: 1px solid #ff6; } div.topic { background-color: #eee; } p.admonition-title { display: inline; } p.admonition-title:after { content: ":"; } pre, tt { font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.9em; } img.screenshot { } tt.descname, tt.descclassname { font-size: 0.95em; } tt.descname { padding-right: 0.08em; } img.screenshot { -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils { border: 1px solid #888; -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils td, table.docutils th { border: 1px solid #888; padding: 0.25em 0.7em; } table.field-list, table.footnote { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } table.footnote { margin: 15px 0; width: 100%; border: 1px solid #eee; background: #fdfdfd; font-size: 0.9em; } table.footnote + table.footnote { margin-top: -15px; border-top: none; } table.field-list th { padding: 0 0.8em 0 0; } table.field-list td { padding: 0; } table.footnote td.label { width: 0px; padding: 0.3em 0 0.3em 0.5em; } table.footnote td { padding: 0.3em 0.5em; } dl { margin: 0; padding: 0; } dl dd { margin-left: 30px; } blockquote { margin: 0 0 0 30px; padding: 0; } ul, ol { margin: 10px 0 10px 30px; padding: 0; } pre { background: #eee; padding: 7px 30px; margin: 15px -30px; line-height: 1.3em; } dl pre, blockquote pre, li pre { margin-left: -60px; padding-left: 60px; } dl dl pre { margin-left: -90px; padding-left: 90px; } tt { background-color: #ecf0f3; color: #222; /* padding: 1px 2px; */ } tt.xref, a tt { background-color: #FBFBFB; border-bottom: 1px solid white; } a.reference { text-decoration: none; border-bottom: 1px dotted #004B6B; } a.reference:hover { border-bottom: 1px solid #6D4100; } a.footnote-reference { text-decoration: none; font-size: 0.7em; vertical-align: top; border-bottom: 1px dotted #004B6B; } a.footnote-reference:hover { border-bottom: 1px solid #6D4100; } a:hover tt { background: #EEE; } @media screen and (max-width: 870px) { div.sphinxsidebar { display: none; } div.document { width: 100%; } div.documentwrapper { margin-left: 0; margin-top: 0; margin-right: 0; margin-bottom: 0; } div.bodywrapper { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; } ul { margin-left: 0; } .document { width: auto; } .footer { width: auto; } .bodywrapper { margin: 0; } .footer { width: auto; } .github { display: none; } } @media screen and (max-width: 875px) { body { margin: 0; padding: 20px 30px; } div.documentwrapper { float: none; background: white; } div.sphinxsidebar { display: block; float: none; width: 102.5%; margin: 50px -30px -20px -30px; padding: 10px 20px; background: #333; color: white; } div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, div.sphinxsidebar h3 a { color: white; } div.sphinxsidebar a { color: #aaa; } div.sphinxsidebar p.logo { display: none; } div.document { width: 100%; margin: 0; } div.related { display: block; margin: 0; padding: 10px 0 20px 0; } div.related ul, div.related ul li { margin: 0; padding: 0; } div.footer { display: none; } div.bodywrapper { margin: 0; } div.body { min-height: 0; padding: 0; } .rtd_doc_footer { display: none; } .document { width: auto; } .footer { width: auto; } .footer { width: auto; } .github { display: none; } } /* misc. */ .revsys-inline { display: none!important; } div.sphinxsidebar a.flattr-button { text-decoration: none; border-bottom: none; } ================================================ FILE: docs/_themes/kr/static/small_flask.css ================================================ /* * small_flask.css_t * ~~~~~~~~~~~~~~~~~ * * :copyright: Copyright 2010 by Armin Ronacher. * :license: Flask Design License, see LICENSE for details. */ body { margin: 0; padding: 20px 30px; } div.documentwrapper { float: none; background: white; } div.sphinxsidebar { display: block; float: none; width: 102.5%; margin: 50px -30px -20px -30px; padding: 10px 20px; background: #333; color: white; } div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, div.sphinxsidebar h3 a { color: white; } div.sphinxsidebar a { color: #aaa; } div.sphinxsidebar p.logo { display: none; } div.document { width: 100%; margin: 0; } div.related { display: block; margin: 0; padding: 10px 0 20px 0; } div.related ul, div.related ul li { margin: 0; padding: 0; } div.footer { display: none; } div.bodywrapper { margin: 0; } div.body { min-height: 0; padding: 0; } .rtd_doc_footer { display: none; } .document { width: auto; } .footer { width: auto; } .footer { width: auto; } .github { display: none; } img { border: 0px 0px; } ================================================ FILE: docs/_themes/kr/theme.conf ================================================ [theme] inherit = basic stylesheet = flasky.css pygments_style = flask_theme_support.FlaskyStyle [options] touch_icon = ================================================ FILE: docs/_themes/kr_small/layout.html ================================================ {% extends "basic/layout.html" %} {% block header %} {{ super() }} {% if pagename == 'index' %}
{% endif %} {% endblock %} {% block footer %} {% if pagename == 'index' %}
{% endif %} {% endblock %} {# do not display relbars #} {% block relbar1 %}{% endblock %} {% block relbar2 %} {% if theme_github_fork %} Fork me on GitHub {% endif %} {% endblock %} {% block sidebar1 %}{% endblock %} {% block sidebar2 %}{% endblock %} ================================================ FILE: docs/_themes/kr_small/static/flasky.css_t ================================================ /* * flasky.css_t * ~~~~~~~~~~~~ * * Sphinx stylesheet -- flasky theme based on nature theme. * * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @import url("basic.css"); /* -- page layout ----------------------------------------------------------- */ body { font-family: 'Georgia', serif; font-size: 17px; color: #000; background: white; margin: 0; padding: 0; } div.documentwrapper { float: left; width: 100%; } div.bodywrapper { margin: 40px auto 0 auto; width: 700px; } hr { border: 1px solid #B1B4B6; } div.body { background-color: #ffffff; color: #3E4349; padding: 0 30px 30px 30px; } img.floatingflask { padding: 0 0 10px 10px; float: right; } div.footer { text-align: right; color: #888; padding: 10px; font-size: 14px; width: 650px; margin: 0 auto 40px auto; } div.footer a { color: #888; text-decoration: underline; } div.related { line-height: 32px; color: #888; } div.related ul { padding: 0 0 0 10px; } div.related a { color: #444; } /* -- body styles ----------------------------------------------------------- */ a { color: #004B6B; text-decoration: underline; } a:hover { color: #6D4100; text-decoration: underline; } div.body { padding-bottom: 40px; /* saved for footer */ } div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; margin: 30px 0px 10px 0px; padding: 0; } {% if theme_index_logo %} div.indexwrapper h1 { text-indent: -999999px; background: url({{ theme_index_logo }}) no-repeat center center; height: {{ theme_index_logo_height }}; } {% endif %} div.body h2 { font-size: 180%; } div.body h3 { font-size: 150%; } div.body h4 { font-size: 130%; } div.body h5 { font-size: 100%; } div.body h6 { font-size: 100%; } a.headerlink { color: white; padding: 0 4px; text-decoration: none; } a.headerlink:hover { color: #444; background: #eaeaea; } div.body p, div.body dd, div.body li { line-height: 1.4em; } div.admonition { background: #fafafa; margin: 20px -30px; padding: 10px 30px; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; } div.admonition p.admonition-title { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; font-size: 24px; margin: 0 0 10px 0; padding: 0; line-height: 1; } div.admonition p.last { margin-bottom: 0; } div.highlight{ background-color: white; } dt:target, .highlight { background: #FAF3E8; } div.note { background-color: #eee; border: 1px solid #ccc; } div.seealso { background-color: #ffc; border: 1px solid #ff6; } div.topic { background-color: #eee; } div.warning { background-color: #ffe4e4; border: 1px solid #f66; } p.admonition-title { display: inline; } p.admonition-title:after { content: ":"; } pre, tt { font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.85em; } img.screenshot { } tt.descname, tt.descclassname { font-size: 0.95em; } tt.descname { padding-right: 0.08em; } img.screenshot { -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils { border: 1px solid #888; -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils td, table.docutils th { border: 1px solid #888; padding: 0.25em 0.7em; } table.field-list, table.footnote { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } table.footnote { margin: 15px 0; width: 100%; border: 1px solid #eee; } table.field-list th { padding: 0 0.8em 0 0; } table.field-list td { padding: 0; } table.footnote td { padding: 0.5em; } dl { margin: 0; padding: 0; } dl dd { margin-left: 30px; } pre { padding: 0; margin: 15px -30px; padding: 8px; line-height: 1.3em; padding: 7px 30px; background: #eee; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; } dl pre { margin-left: -60px; padding-left: 60px; } tt { background-color: #ecf0f3; color: #222; /* padding: 1px 2px; */ } tt.xref, a tt { background-color: #FBFBFB; } a:hover tt { background: #EEE; } ================================================ FILE: docs/_themes/kr_small/theme.conf ================================================ [theme] inherit = basic stylesheet = flasky.css nosidebar = true pygments_style = flask_theme_support.FlaskyStyle [options] index_logo = '' index_logo_height = 120px github_fork = '' ================================================ FILE: docs/advanced_usage.rst ================================================ .. _advanced: Advanced Usage: Overriding Models and the Blobber Class ======================================================= TextBlob allows you to specify which algorithms you want to use under the hood of its simple API. Sentiment Analyzers ------------------- New in version `0.5.0`. The ``textblob.sentiments`` module contains two sentiment analysis implementations, ``PatternAnalyzer`` (based on the pattern_ library) and ``NaiveBayesAnalyzer`` (an NLTK_ classifier trained on a movie reviews corpus). The default implementation is ``PatternAnalyzer``, but you can override the analyzer by passing another implementation into a TextBlob's constructor. For instance, the ``NaiveBayesAnalyzer`` returns its result as a namedtuple of the form: ``Sentiment(classification, p_pos, p_neg)``. :: >>> from textblob import TextBlob >>> from textblob.sentiments import NaiveBayesAnalyzer >>> blob = TextBlob("I love this library", analyzer=NaiveBayesAnalyzer()) >>> blob.sentiment Sentiment(classification='pos', p_pos=0.7996209910191279, p_neg=0.2003790089808724) Tokenizers ---------- New in version `0.4.0`. The ``words`` and ``sentences`` properties are helpers that use the ``textblob.tokenizers.WordTokenizer`` and ``textblob.tokenizers.SentenceTokenizer`` classes, respectively. You can use other tokenizers, such as those provided by NLTK, by passing them into the ``TextBlob`` constructor then accessing the ``tokens`` property. .. doctest:: >>> from textblob import TextBlob >>> from nltk.tokenize import TabTokenizer >>> tokenizer = TabTokenizer() >>> blob = TextBlob("This is\ta rather tabby\tblob.", tokenizer=tokenizer) >>> blob.tokens WordList(['This is', 'a rather tabby', 'blob.']) You can also use the ``tokenize([tokenizer])`` method. .. doctest:: >>> from textblob import TextBlob >>> from nltk.tokenize import BlanklineTokenizer >>> tokenizer = BlanklineTokenizer() >>> blob = TextBlob("A token\n\nof appreciation") >>> blob.tokenize(tokenizer) WordList(['A token', 'of appreciation']) Noun Phrase Chunkers -------------------- TextBlob currently has two noun phrases chunker implementations, ``textblob.np_extractors.FastNPExtractor`` (default, based on Shlomi Babluki's implementation from `this blog post `_) and ``textblob.np_extractors.ConllExtractor``, which uses the CoNLL 2000 corpus to train a tagger. You can change the chunker implementation (or even use your own) by explicitly passing an instance of a noun phrase extractor to a TextBlob's constructor. .. doctest:: >>> from textblob import TextBlob >>> from textblob.np_extractors import ConllExtractor >>> extractor = ConllExtractor() >>> blob = TextBlob("Python is a high-level programming language.", np_extractor=extractor) >>> blob.noun_phrases WordList(['python', 'high-level programming language']) POS Taggers ----------- TextBlob currently has two POS tagger implementations, located in ``textblob.taggers``. The default is the ``PatternTagger`` which uses the same implementation as the pattern_ library. The second implementation is ``NLTKTagger`` which uses NLTK_'s TreeBank tagger. *Numpy is required to use the NLTKTagger*. Similar to the tokenizers and noun phrase chunkers, you can explicitly specify which POS tagger to use by passing a tagger instance to the constructor. :: >>> from textblob import TextBlob >>> from textblob.taggers import NLTKTagger >>> nltk_tagger = NLTKTagger() >>> blob = TextBlob("Tag! You're It!", pos_tagger=nltk_tagger) >>> blob.pos_tags [(Word('Tag'), u'NN'), (Word('You'), u'PRP'), (Word('''), u'VBZ'), (Word('re'), u'NN'), (Word('It') , u'PRP')] .. _pattern: http://www.clips.ua.ac.be/pattern .. _NLTK: http://nltk.org/ Parsers ------- New in version `0.6.0`. Parser implementations can also be passed to the TextBlob constructor. :: >>> from textblob import TextBlob >>> from textblob.parsers import PatternParser >>> blob = TextBlob("Parsing is fun.", parser=PatternParser()) >>> blob.parse() 'Parsing/VBG/B-VP/O is/VBZ/I-VP/O fun/VBG/I-VP/O ././O/O' Blobber: A TextBlob Factory --------------------------- New in `0.4.0`. It can be tedious to repeatedly pass taggers, NP extractors, sentiment analyzers, classifiers, and tokenizers to multiple TextBlobs. To keep your code `DRY `_, you can use the ``Blobber`` class to create TextBlobs that share the same models. First, instantiate a ``Blobber`` with the tagger, NP extractor, sentiment analyzer, classifier, and/or tokenizer of your choice. .. doctest:: >>> from textblob import Blobber >>> from textblob.taggers import NLTKTagger >>> tb = Blobber(pos_tagger=NLTKTagger()) You can now create new TextBlobs like so: .. doctest:: >>> blob1 = tb("This is a blob.") >>> blob2 = tb("This is another blob.") >>> blob1.pos_tagger is blob2.pos_tagger True ================================================ FILE: docs/api_reference.rst ================================================ .. _api: API Reference ============= Blob Classes ------------ .. automodule:: textblob.blob :members: :inherited-members: .. _api_base_classes: Base Classes ------------ .. automodule:: textblob.base :members: Tokenizers ---------- .. automodule:: textblob.tokenizers :members: :inherited-members: POS Taggers ----------- .. automodule:: textblob.en.taggers :members: :inherited-members: Noun Phrase Extractors ---------------------- .. automodule:: textblob.en.np_extractors :members: BaseNPExtractor, ConllExtractor, FastNPExtractor :inherited-members: Sentiment Analyzers ------------------- .. automodule:: textblob.en.sentiments :members: :inherited-members: Parsers ------- .. automodule:: textblob.en.parsers :members: :inherited-members: .. _api_classifiers: Classifiers ----------- .. automodule:: textblob.classifiers :members: :inherited-members: Blobber ------- .. autoclass:: textblob.blob.Blobber :members: :special-members: :exclude-members: __weakref__ File Formats ------------ .. automodule:: textblob.formats :members: :inherited-members: Wordnet ------- .. automodule:: textblob.wordnet :members: Exceptions ---------- .. module:: textblob.exceptions .. autoexception:: textblob.exceptions.TextBlobError .. autoexception:: textblob.exceptions.MissingCorpusError .. autoexception:: textblob.exceptions.DeprecationError .. autoexception:: textblob.exceptions.TranslatorError .. autoexception:: textblob.exceptions.NotTranslated .. autoexception:: textblob.exceptions.FormatError ================================================ FILE: docs/authors.rst ================================================ .. include:: ../AUTHORS.rst ================================================ FILE: docs/changelog.rst ================================================ .. _changelog: .. include:: ../CHANGELOG.rst ================================================ FILE: docs/classifiers.rst ================================================ .. _classifiers: Tutorial: Building a Text Classification System *********************************************** The ``textblob.classifiers`` module makes it simple to create custom classifiers. As an example, let's create a custom sentiment analyzer. Loading Data and Creating a Classifier ====================================== First we'll create some training and test data. .. doctest:: >>> train = [ ... ("I love this sandwich.", "pos"), ... ("this is an amazing place!", "pos"), ... ("I feel very good about these beers.", "pos"), ... ("this is my best work.", "pos"), ... ("what an awesome view", "pos"), ... ("I do not like this restaurant", "neg"), ... ("I am tired of this stuff.", "neg"), ... ("I can't deal with this", "neg"), ... ("he is my sworn enemy!", "neg"), ... ("my boss is horrible.", "neg"), ... ] >>> test = [ ... ("the beer was good.", "pos"), ... ("I do not enjoy my job", "neg"), ... ("I ain't feeling dandy today.", "neg"), ... ("I feel amazing!", "pos"), ... ("Gary is a friend of mine.", "pos"), ... ("I can't believe I'm doing this.", "neg"), ... ] Now we'll create a Naive Bayes classifier, passing the training data into the constructor. .. doctest:: >>> from textblob.classifiers import NaiveBayesClassifier >>> cl = NaiveBayesClassifier(train) .. _data_files: Loading Data from Files ----------------------- You can also load data from common file formats including CSV, JSON, and TSV. CSV files should be formatted like so: :: I love this sandwich.,pos This is an amazing place!,pos I do not like this restaurant,neg JSON files should be formatted like so: :: [ {"text": "I love this sandwich.", "label": "pos"}, {"text": "This is an amazing place!", "label": "pos"}, {"text": "I do not like this restaurant", "label": "neg"} ] You can then pass the opened file into the constructor. :: >>> with open('train.json', 'r') as fp: ... cl = NaiveBayesClassifier(fp, format="json") Classifying Text ================ Call the ``classify(text)`` method to use the classifier. .. doctest:: >>> cl.classify("This is an amazing library!") 'pos' You can get the label probability distribution with the ``prob_classify(text)`` method. .. doctest:: >>> prob_dist = cl.prob_classify("This one's a doozy.") >>> prob_dist.max() 'pos' >>> round(prob_dist.prob("pos"), 2) 0.63 >>> round(prob_dist.prob("neg"), 2) 0.37 Classifying TextBlobs ===================== Another way to classify text is to pass a classifier into the constructor of ``TextBlob`` and call its ``classify()`` method. .. doctest:: >>> from textblob import TextBlob >>> blob = TextBlob("The beer is good. But the hangover is horrible.", classifier=cl) >>> blob.classify() 'pos' The advantage of this approach is that you can classify sentences within a ``TextBlob``. .. doctest:: >>> for s in blob.sentences: ... print(s) ... print(s.classify()) ... The beer is good. pos But the hangover is horrible. neg Evaluating Classifiers ====================== To compute the accuracy on our test set, use the ``accuracy(test_data)`` method. .. doctest:: >>> cl.accuracy(test) 0.8333333333333334 .. note:: You can also pass in a file object into the ``accuracy`` method. The file can be in any of the formats listed in the :ref:`Loading Data ` section. Use the ``show_informative_features()`` method to display a listing of the most informative features. .. doctest:: >>> cl.show_informative_features(5) # doctest: +SKIP Most Informative Features contains(my) = True neg : pos = 1.7 : 1.0 contains(an) = False neg : pos = 1.6 : 1.0 contains(I) = True neg : pos = 1.4 : 1.0 contains(I) = False pos : neg = 1.4 : 1.0 contains(my) = False pos : neg = 1.3 : 1.0 Updating Classifiers with New Data ================================== Use the ``update(new_data)`` method to update a classifier with new training data. .. doctest:: >>> new_data = [ ... ("She is my best friend.", "pos"), ... ("I'm happy to have a new friend.", "pos"), ... ("Stay thirsty, my friend.", "pos"), ... ("He ain't from around here.", "neg"), ... ] >>> cl.update(new_data) True >>> cl.accuracy(test) 1.0 Feature Extractors ================== By default, the ``NaiveBayesClassifier`` uses a simple feature extractor that indicates which words in the training set are contained in a document. For example, the sentence *"I feel happy"* might have the features ``contains(happy): True`` or ``contains(angry): False``. You can override this feature extractor by writing your own. A feature extractor is simply a function with ``document`` (the text to extract features from) as the first argument. The function may include a second argument, ``train_set`` (the training dataset), if necessary. The function should return a dictionary of features for ``document``. For example, let's create a feature extractor that just uses the first and last words of a document as its features. .. doctest:: >>> def end_word_extractor(document): ... tokens = document.split() ... first_word, last_word = tokens[0], tokens[-1] ... feats = {} ... feats["first({0})".format(first_word)] = True ... feats["last({0})".format(last_word)] = False ... return feats ... >>> features = end_word_extractor("I feel happy") >>> assert features == {"last(happy)": False, "first(I)": True} We can then use the feature extractor in a classifier by passing it as the second argument of the constructor. .. doctest:: >>> cl2 = NaiveBayesClassifier(test, feature_extractor=end_word_extractor) >>> blob = TextBlob("I'm excited to try my new classifier.", classifier=cl2) >>> blob.classify() 'pos' Next Steps ========== Be sure to check out the :ref:`API Reference ` for the :ref:`classifiers module `. Want to try different POS taggers or noun phrase chunkers with TextBlobs? Check out the :ref:`Advanced Usage ` guide. ================================================ FILE: docs/conf.py ================================================ import importlib.metadata import os import sys sys.path.append(os.path.abspath("_themes")) # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ "sphinx.ext.autodoc", "sphinx.ext.doctest", "sphinx.ext.viewcode", "sphinx_issues", ] primary_domain = "py" default_role = "py:obj" issues_github_path = "sloria/TextBlob" # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # The suffix of source filenames. source_suffix = ".rst" # The master toctree document. master_doc = "index" # General information about the project. project = "TextBlob" copyright = 'Steven Loria and contributors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = release = importlib.metadata.version("textblob") exclude_patterns = ["_build"] pygments_style = "flask_theme_support.FlaskyStyle" html_theme = "kr" html_theme_path = ["_themes"] html_static_path = ["_static"] # Custom sidebar templates, maps document names to template names. html_sidebars = { "index": ["side-primary.html", "searchbox.html"], "**": ["side-secondary.html", "localtoc.html", "relations.html", "searchbox.html"], } # Output file base name for HTML help builder. htmlhelp_basename = "textblobdoc" # -- Options for LaTeX output -------------------------------------------------- # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ("index", "TextBlob.tex", "textblob Documentation", "Steven Loria", "manual"), ] # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [("index", "textblob", "textblob Documentation", ["Steven Loria"], 1)] # -- Options for Texinfo output ------------------------------------------------ # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ( "index", "textblob", "TextBlob Documentation", "Steven Loria", "textblob", "Simplified Python text-processing.", "Natural Language Processing", ), ] ================================================ FILE: docs/contributing.rst ================================================ .. include:: ../CONTRIBUTING.rst ================================================ FILE: docs/extensions.rst ================================================ .. _extensions: ********** Extensions ********** TextBlob supports adding custom models and new languages through "extensions". Extensions can be installed from the PyPI. :: $ pip install textblob-name where "name" is the name of the package. Available extensions ==================== Languages --------- * `textblob-fr `_: French * `textblob-de `_: German Part-of-speech Taggers ---------------------- * `textblob-aptagger `_: A fast and accurate tagger based on the Averaged Perceptron. .. admonition:: Interested in creating an extension? See the :ref:`Contributing guide `. ================================================ FILE: docs/index.rst ================================================ .. textblob documentation master file, created by sphinx-quickstart on Mon Aug 5 01:41:33 2013. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. TextBlob: Simplified Text Processing ==================================== Release v\ |version|. (:ref:`Changelog`) *TextBlob* is a Python library for processing textual data. It provides a simple API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, classification, and more. .. code-block:: python from textblob import TextBlob text = """ The titular threat of The Blob has always struck me as the ultimate movie monster: an insatiably hungry, amoeba-like mass able to penetrate virtually any safeguard, capable of--as a doomed doctor chillingly describes it--"assimilating flesh on contact. Snide comparisons to gelatin be damned, it's a concept with the most devastating of potential consequences, not unlike the grey goo scenario proposed by technological theorists fearful of artificial intelligence run rampant. """ blob = TextBlob(text) blob.tags # [('The', 'DT'), ('titular', 'JJ'), # ('threat', 'NN'), ('of', 'IN'), ...] blob.noun_phrases # WordList(['titular threat', 'blob', # 'ultimate movie monster', # 'amoeba-like mass', ...]) for sentence in blob.sentences: print(sentence.sentiment.polarity) # 0.060 # -0.341 TextBlob stands on the giant shoulders of `NLTK`_ and `pattern`_, and plays nicely with both. Features -------- - Noun phrase extraction - Part-of-speech tagging - Sentiment analysis - Classification (Naive Bayes, Decision Tree) - Tokenization (splitting text into words and sentences) - Word and phrase frequencies - Parsing - `n`-grams - Word inflection (pluralization and singularization) and lemmatization - Spelling correction - Add new models or languages through extensions - WordNet integration Get it now ---------- :: $ pip install -U textblob $ python -m textblob.download_corpora Ready to dive in? Go on to the :ref:`Quickstart guide `. Guide ===== .. toctree:: :maxdepth: 2 license install quickstart classifiers advanced_usage extensions api_reference Project info ============ .. toctree:: :maxdepth: 1 changelog authors contributing .. _NLTK: http://www.nltk.org .. _pattern: https://github.com/clips/pattern ================================================ FILE: docs/install.rst ================================================ .. _install: Installation ============ Installing/Upgrading From the PyPI ---------------------------------- :: $ pip install -U textblob $ python -m textblob.download_corpora This will install TextBlob and download the necessary NLTK corpora. If you need to change the default download directory set the ``NLTK_DATA`` environment variable. .. admonition:: Downloading the minimum corpora If you only intend to use TextBlob's default models (no model overrides), you can pass the ``lite`` argument. This downloads only those corpora needed for basic functionality. :: $ python -m textblob.download_corpora lite With conda ---------- TextBlob is also available as a `conda `_ package. To install with ``conda``, run :: $ conda install -c conda-forge textblob $ python -m textblob.download_corpora From Source ----------- TextBlob is actively developed on Github_. You can clone the public repo: :: $ git clone https://github.com/sloria/TextBlob.git Or download one of the following: * tarball_ * zipball_ Once you have the source, you can install it into your site-packages with :: $ python setup.py install .. _Github: https://github.com/sloria/TextBlob .. _tarball: https://github.com/sloria/TextBlob/tarball/master .. _zipball: https://github.com/sloria/TextBlob/zipball/master Get the bleeding edge version ----------------------------- To get the latest development version of TextBlob, run :: $ pip install -U git+https://github.com/sloria/TextBlob.git@dev Migrating from older versions (<=0.7.1) --------------------------------------- As of TextBlob 0.8.0, TextBlob's core package was renamed to ``textblob``, whereas earlier versions used a package called ``text``. Therefore, migrating to newer versions should be as simple as rewriting your imports, like so: New: :: from textblob import TextBlob, Word, Blobber from textblob.classifiers import NaiveBayesClassifier from textblob.taggers import NLTKTagger Old: :: from text.blob import TextBlob, Word, Blobber from text.classifiers import NaiveBayesClassifier from text.taggers import NLTKTagger Dependencies ++++++++++++ TextBlob depends on NLTK 3. NLTK will be installed automatically when you run ``pip install textblob``. Some features, such as the maximum entropy classifier, require `numpy`_, but it is not required for basic usage. .. _numpy: http://www.numpy.org/ .. _NLTK: http://nltk.org/ ================================================ FILE: docs/license.rst ================================================ License ======= .. literalinclude:: ../LICENSE ================================================ FILE: docs/make.bat ================================================ @ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^` where ^ is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\textblob.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\textblob.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end ================================================ FILE: docs/quickstart.rst ================================================ .. _quickstart: Tutorial: Quickstart ==================== .. module:: textblob.blob TextBlob aims to provide access to common text-processing operations through a familiar interface. You can treat :class:`TextBlob ` objects as if they were Python strings that learned how to do Natural Language Processing. Create a TextBlob ----------------- First, the import. .. doctest:: >>> from textblob import TextBlob Let's create our first :class:`TextBlob `. .. doctest:: >>> wiki = TextBlob("Python is a high-level, general-purpose programming language.") Part-of-speech Tagging ---------------------- Part-of-speech tags can be accessed through the :meth:`tags ` property. .. doctest:: >>> wiki.tags [('Python', 'NNP'), ('is', 'VBZ'), ('a', 'DT'), ('high-level', 'JJ'), ('general-purpose', 'JJ'), ('programming', 'NN'), ('language', 'NN')] Noun Phrase Extraction ---------------------- Similarly, noun phrases are accessed through the :meth:`noun_phrases ` property. .. doctest:: >>> wiki.noun_phrases WordList(['python']) Sentiment Analysis ------------------ The :meth:`sentiment ` property returns a namedtuple of the form ``Sentiment(polarity, subjectivity)``. The polarity score is a float within the range [-1.0, 1.0]. The subjectivity is a float within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is very subjective. .. doctest:: >>> testimonial = TextBlob("Textblob is amazingly simple to use. What great fun!") >>> testimonial.sentiment Sentiment(polarity=0.39166666666666666, subjectivity=0.4357142857142857) >>> testimonial.sentiment.polarity 0.39166666666666666 Tokenization ------------ You can break TextBlobs into words or sentences. .. doctest:: >>> zen = TextBlob( ... "Beautiful is better than ugly. " ... "Explicit is better than implicit. " ... "Simple is better than complex." ... ) >>> zen.words WordList(['Beautiful', 'is', 'better', 'than', 'ugly', 'Explicit', 'is', 'better', 'than', 'implicit', 'Simple', 'is', 'better', 'than', 'complex']) >>> zen.sentences [Sentence("Beautiful is better than ugly."), Sentence("Explicit is better than implicit."), Sentence("Simple is better than complex.")] :class:`Sentence ` objects have the same properties and methods as TextBlobs. :: >>> for sentence in zen.sentences: ... print(sentence.sentiment) For more advanced tokenization, see the :ref:`Advanced Usage ` guide. Words Inflection and Lemmatization ---------------------------------- Each word in :meth:`TextBlob.words ` or :meth:`Sentence.words ` is a :class:`Word ` object (a subclass of ``unicode``) with useful methods, e.g. for word inflection. .. doctest:: >>> sentence = TextBlob("Use 4 spaces per indentation level.") >>> sentence.words WordList(['Use', '4', 'spaces', 'per', 'indentation', 'level']) >>> sentence.words[2].singularize() 'space' >>> sentence.words[-1].pluralize() 'levels' Words can be lemmatized by calling the :meth:`lemmatize ` method. .. doctest:: >>> from textblob import Word >>> w = Word("octopi") >>> w.lemmatize() 'octopus' >>> w = Word("went") >>> w.lemmatize("v") # Pass in WordNet part of speech (verb) 'go' WordNet Integration ------------------- You can access the synsets for a :class:`Word ` via the :meth:`synsets ` property or the :meth:`get_synsets ` method, optionally passing in a part of speech. .. doctest:: >>> from textblob import Word >>> from textblob.wordnet import VERB >>> word = Word("octopus") >>> word.synsets [Synset('octopus.n.01'), Synset('octopus.n.02')] >>> Word("hack").get_synsets(pos=VERB) [Synset('chop.v.05'), Synset('hack.v.02'), Synset('hack.v.03'), Synset('hack.v.04'), Synset('hack.v.05'), Synset('hack.v.06'), Synset('hack.v.07'), Synset('hack.v.08')] You can access the definitions for each synset via the :meth:`definitions ` property or the :meth:`define() ` method, which can also take an optional part-of-speech argument. .. doctest:: >>> Word("octopus").definitions ['tentacles of octopus prepared as food', 'bottom-living cephalopod having a soft oval body with eight long tentacles'] You can also create synsets directly. .. doctest:: >>> from textblob.wordnet import Synset >>> octopus = Synset("octopus.n.02") >>> shrimp = Synset("shrimp.n.03") >>> octopus.path_similarity(shrimp) 0.1111111111111111 For more information on the WordNet API, see the NLTK documentation on the `Wordnet Interface `_. WordLists --------- A :class:`WordList ` is just a Python list with additional methods. .. doctest:: >>> animals = TextBlob("cat dog octopus") >>> animals.words WordList(['cat', 'dog', 'octopus']) >>> animals.words.pluralize() WordList(['cats', 'dogs', 'octopodes']) Spelling Correction ------------------- Use the :meth:`correct() ` method to attempt spelling correction. .. doctest:: >>> b = TextBlob("I havv goood speling!") >>> print(b.correct()) I have good spelling! :class:`Word ` objects have a :meth:`spellcheck() Word.spellcheck` method that returns a list of ``(word, confidence)`` tuples with spelling suggestions. .. doctest:: >>> from textblob import Word >>> w = Word("falibility") >>> w.spellcheck() [('fallibility', 1.0)] Spelling correction is based on Peter Norvig's "How to Write a Spelling Corrector"[#]_ as implemented in the pattern library. It is about 70% accurate [#]_. Get Word and Noun Phrase Frequencies ------------------------------------ There are two ways to get the frequency of a word or noun phrase in a :class:`TextBlob `. The first is through the ``word_counts`` dictionary. :: >>> monty = TextBlob("We are no longer the Knights who say Ni. " ... "We are now the Knights who say Ekki ekki ekki PTANG.") >>> monty.word_counts['ekki'] 3 If you access the frequencies this way, the search will *not* be case sensitive, and words that are not found will have a frequency of 0. The second way is to use the ``count()`` method. :: >>> monty.words.count('ekki') 3 You can specify whether or not the search should be case-sensitive (default is ``False``). :: >>> monty.words.count('ekki', case_sensitive=True) 2 Each of these methods can also be used with noun phrases. :: >>> wiki.noun_phrases.count('python') 1 Parsing ------- Use the :meth:`parse() ` method to parse the text. .. doctest:: >>> b = TextBlob("And now for something completely different.") >>> print(b.parse()) And/CC/O/O now/RB/B-ADVP/O for/IN/B-PP/B-PNP something/NN/B-NP/I-PNP completely/RB/B-ADJP/O different/JJ/I-ADJP/O ././O/O By default, TextBlob uses pattern's parser [#]_. TextBlobs Are Like Python Strings! ---------------------------------- You can use Python's substring syntax. .. doctest:: >>> zen[0:19] TextBlob("Beautiful is better") You can use common string methods. .. doctest:: >>> zen.upper() TextBlob("BEAUTIFUL IS BETTER THAN UGLY. EXPLICIT IS BETTER THAN IMPLICIT. SIMPLE IS BETTER THAN COMPLEX.") >>> zen.find("Simple") 65 You can make comparisons between TextBlobs and strings. .. doctest:: >>> apple_blob = TextBlob("apples") >>> banana_blob = TextBlob("bananas") >>> apple_blob < banana_blob True >>> apple_blob == "apples" True You can concatenate and interpolate TextBlobs and strings. .. doctest:: >>> apple_blob + " and " + banana_blob TextBlob("apples and bananas") >>> "{0} and {1}".format(apple_blob, banana_blob) 'apples and bananas' `n`-grams --------- The :class:`TextBlob.ngrams() ` method returns a list of tuples of `n` successive words. .. doctest:: >>> blob = TextBlob("Now is better than never.") >>> blob.ngrams(n=3) [WordList(['Now', 'is', 'better']), WordList(['is', 'better', 'than']), WordList(['better', 'than', 'never'])] Get Start and End Indices of Sentences -------------------------------------- Use ``sentence.start`` and ``sentence.end`` to get the indices where a sentence starts and ends within a :class:`TextBlob `. .. doctest:: >>> for s in zen.sentences: ... print(s) ... print("---- Starts at index {}, Ends at index {}".format(s.start, s.end)) ... Beautiful is better than ugly. ---- Starts at index 0, Ends at index 30 Explicit is better than implicit. ---- Starts at index 31, Ends at index 64 Simple is better than complex. ---- Starts at index 65, Ends at index 95 Next Steps ++++++++++ Want to build your own text classification system? Check out the :ref:`Classifiers Tutorial `. Want to use a different POS tagger or noun phrase chunker implementation? Check out the :ref:`Advanced Usage ` guide. .. [#] http://norvig.com/spell-correct.html .. [#] http://www.clips.ua.ac.be/pages/pattern-en#spelling .. [#] http://www.clips.ua.ac.be/pages/pattern-en#parser ================================================ FILE: pyproject.toml ================================================ [project] name = "textblob" version = "0.19.0" description = "Simple, Pythonic text processing. Sentiment analysis, part-of-speech tagging, noun phrase parsing, and more." readme = "README.rst" license = { file = "LICENSE" } authors = [{ name = "Steven Loria", email = "sloria1@gmail.com" }] classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Text Processing :: Linguistic", ] keywords = ["textblob", "nlp", 'linguistics', 'nltk', 'pattern'] requires-python = ">=3.9" dependencies = ["nltk>=3.9"] [project.urls] Changelog = "https://textblob.readthedocs.io/en/latest/changelog.html" Issues = "https://github.com/sloria/TextBlob/issues" Source = "https://github.com/sloria/TextBlob" [project.optional-dependencies] docs = ["sphinx==9.1.0", "sphinx-issues==5.0.1", "PyYAML==6.0.3"] tests = ["pytest", "numpy"] dev = ["textblob[tests]", "tox", "pre-commit>=3.5,<5.0", "pyright", "ruff"] [build-system] requires = ["flit_core<4"] build-backend = "flit_core.buildapi" [tool.flit.sdist] include = ["tests/", "CHANGELOG.rst", "CONTRIBUTING.rst", "tox.ini", "NOTICE"] [tool.ruff] src = ["src"] fix = true show-fixes = true unsafe-fixes = true exclude = [ # Default excludes from ruff ".bzr", ".direnv", ".eggs", ".git", ".git-rewrite", ".hg", ".ipynb_checkpoints", ".mypy_cache", ".nox", ".pants.d", ".pyenv", ".pytest_cache", ".pytype", ".ruff_cache", ".svn", ".tox", ".venv", ".vscode", "__pypackages__", "_build", "buck-out", "build", "dist", "node_modules", "site-packages", "venv", # Vendorized code "src/textblob/en", "src/textblob/_text.py", ] [tool.ruff.format] docstring-code-format = true [tool.ruff.lint] select = [ "B", # flake8-bugbear "E", # pycodestyle error "F", # pyflakes "I", # isort "UP", # pyupgrade "W", # pycodestyle warning "TC", # flake8-typechecking ] [tool.ruff.lint.per-file-ignores] "tests/*" = ["E721"] [tool.pytest.ini_options] markers = [ "slow: marks tests as slow (deselect with '-m \"not slow\"')", "numpy: marks tests that require numpy", ] [tool.pyright] include = ["src/**", "tests/**"] ================================================ FILE: src/textblob/__init__.py ================================================ from .blob import Blobber, Sentence, TextBlob, Word, WordList __all__ = [ "TextBlob", "Word", "Sentence", "Blobber", "WordList", ] ================================================ FILE: src/textblob/_text.py ================================================ """This file is adapted from the pattern library. URL: http://www.clips.ua.ac.be/pages/pattern-web Licence: BSD """ import codecs import os import re import string import types from itertools import chain from xml.etree import ElementTree basestring = (str, bytes) try: MODULE = os.path.dirname(os.path.abspath(__file__)) except: MODULE = "" SLASH, WORD, POS, CHUNK, PNP, REL, ANCHOR, LEMMA = ( "&slash;", "word", "part-of-speech", "chunk", "preposition", "relation", "anchor", "lemma", ) # String functions def decode_string(v, encoding="utf-8"): """Returns the given value as a Unicode string (if possible).""" if isinstance(encoding, basestring): encoding = ((encoding,),) + (("windows-1252",), ("utf-8", "ignore")) if isinstance(v, bytes): for e in encoding: try: return v.decode(*e) except: pass return v return str(v) def encode_string(v, encoding="utf-8"): """Returns the given value as a Python byte string (if possible).""" if isinstance(encoding, basestring): encoding = ((encoding,),) + (("windows-1252",), ("utf-8", "ignore")) if isinstance(v, str): for e in encoding: try: return v.encode(*e) except: pass return v return str(v) decode_utf8 = decode_string encode_utf8 = encode_string def isnumeric(strg): try: float(strg) except ValueError: return False return True # --- LAZY DICTIONARY ------------------------------------------------------------------------------- # A lazy dictionary is empty until one of its methods is called. # This way many instances (e.g., lexicons) can be created without using memory until used. class lazydict(dict): def load(self): # Must be overridden in a subclass. # Must load data with dict.__setitem__(self, k, v) instead of lazydict[k] = v. pass def _lazy(self, method, *args): """If the dictionary is empty, calls lazydict.load(). Replaces lazydict.method() with dict.method() and calls it. """ if dict.__len__(self) == 0: self.load() setattr(self, method, types.MethodType(getattr(dict, method), self)) return getattr(dict, method)(self, *args) def __repr__(self): return self._lazy("__repr__") def __len__(self): return self._lazy("__len__") def __iter__(self): return self._lazy("__iter__") def __contains__(self, *args): return self._lazy("__contains__", *args) def __getitem__(self, *args): return self._lazy("__getitem__", *args) def __setitem__(self, *args): return self._lazy("__setitem__", *args) def setdefault(self, *args): return self._lazy("setdefault", *args) def get(self, *args, **kwargs): return self._lazy("get", *args) def items(self): return self._lazy("items") def keys(self): return self._lazy("keys") def values(self): return self._lazy("values") def update(self, *args, **kwargs): return self._lazy("update", *args) def pop(self, *args): return self._lazy("pop", *args) def popitem(self, *args): return self._lazy("popitem", *args) class lazylist(list): def load(self): # Must be overridden in a subclass. # Must load data with list.append(self, v) instead of lazylist.append(v). pass def _lazy(self, method, *args): """If the list is empty, calls lazylist.load(). Replaces lazylist.method() with list.method() and calls it. """ if list.__len__(self) == 0: self.load() setattr(self, method, types.MethodType(getattr(list, method), self)) return getattr(list, method)(self, *args) def __repr__(self): return self._lazy("__repr__") def __len__(self): return self._lazy("__len__") def __iter__(self): return self._lazy("__iter__") def __contains__(self, *args): return self._lazy("__contains__", *args) def insert(self, *args): return self._lazy("insert", *args) def append(self, *args): return self._lazy("append", *args) def extend(self, *args): return self._lazy("extend", *args) def remove(self, *args): return self._lazy("remove", *args) def pop(self, *args): return self._lazy("pop", *args) # --- UNIVERSAL TAGSET ------------------------------------------------------------------------------ # The default part-of-speech tagset used in Pattern is Penn Treebank II. # However, not all languages are well-suited to Penn Treebank (which was developed for English). # As more languages are implemented, this is becoming more problematic. # # A universal tagset is proposed by Slav Petrov (2012): # http://www.petrovi.de/data/lrec.pdf # # Subclasses of Parser should start implementing # Parser.parse(tagset=UNIVERSAL) with a simplified tagset. # The names of the constants correspond to Petrov's naming scheme, while # the value of the constants correspond to Penn Treebank. UNIVERSAL = "universal" NOUN, VERB, ADJ, ADV, PRON, DET, PREP, ADP, NUM, CONJ, INTJ, PRT, PUNC, X = ( "NN", "VB", "JJ", "RB", "PR", "DT", "PP", "PP", "NO", "CJ", "UH", "PT", ".", "X", ) def penntreebank2universal(token, tag): """Returns a (token, tag)-tuple with a simplified universal part-of-speech tag.""" if tag.startswith(("NNP-", "NNPS-")): return (token, "{}-{}".format(NOUN, tag.split("-")[-1])) if tag in ("NN", "NNS", "NNP", "NNPS", "NP"): return (token, NOUN) if tag in ("MD", "VB", "VBD", "VBG", "VBN", "VBP", "VBZ"): return (token, VERB) if tag in ("JJ", "JJR", "JJS"): return (token, ADJ) if tag in ("RB", "RBR", "RBS", "WRB"): return (token, ADV) if tag in ("PRP", "PRP$", "WP", "WP$"): return (token, PRON) if tag in ("DT", "PDT", "WDT", "EX"): return (token, DET) if tag in ("IN",): return (token, PREP) if tag in ("CD",): return (token, NUM) if tag in ("CC",): return (token, CONJ) if tag in ("UH",): return (token, INTJ) if tag in ("POS", "RP", "TO"): return (token, PRT) if tag in ("SYM", "LS", ".", "!", "?", ",", ":", "(", ")", '"', "#", "$"): return (token, PUNC) return (token, X) # --- TOKENIZER ------------------------------------------------------------------------------------- TOKEN = re.compile(r"(\S+)\s") # Handle common punctuation marks. PUNCTUATION = punctuation = ".,;:!?()[]{}`''\"@#$^&*+-|=~_" # Handle common abbreviations. ABBREVIATIONS = abbreviations = set( ( "a.", "adj.", "adv.", "al.", "a.m.", "c.", "cf.", "comp.", "conf.", "def.", "ed.", "e.g.", "esp.", "etc.", "ex.", "f.", "fig.", "gen.", "id.", "i.e.", "int.", "l.", "m.", "Med.", "Mil.", "Mr.", "n.", "n.q.", "orig.", "pl.", "pred.", "pres.", "p.m.", "ref.", "v.", "vs.", "w/", ) ) RE_ABBR1 = re.compile(r"^[A-Za-z]\.$") # single letter, "T. De Smedt" RE_ABBR2 = re.compile(r"^([A-Za-z]\.)+$") # alternating letters, "U.S." RE_ABBR3 = re.compile( "^[A-Z][" + "|".join( # capital followed by consonants, "Mr." "bcdfghjklmnpqrstvwxz" ) + "]+.$" ) # Handle emoticons. EMOTICONS = { # (facial expression, sentiment)-keys ("love", +1.00): set(("<3", "♥")), ("grin", +1.00): set( (">:D", ":-D", ":D", "=-D", "=D", "X-D", "x-D", "XD", "xD", "8-D") ), ("taunt", +0.75): set( (">:P", ":-P", ":P", ":-p", ":p", ":-b", ":b", ":c)", ":o)", ":^)") ), ("smile", +0.50): set( (">:)", ":-)", ":)", "=)", "=]", ":]", ":}", ":>", ":3", "8)", "8-)") ), ("wink", +0.25): set((">;]", ";-)", ";)", ";-]", ";]", ";D", ";^)", "*-)", "*)")), ("gasp", +0.05): set((">:o", ":-O", ":O", ":o", ":-o", "o_O", "o.O", "°O°", "°o°")), ("worry", -0.25): set( (">:/", ":-/", ":/", ":\\", ">:\\", ":-.", ":-s", ":s", ":S", ":-S", ">.>") ), ("frown", -0.75): set( (">:[", ":-(", ":(", "=(", ":-[", ":[", ":{", ":-<", ":c", ":-c", "=/") ), ("cry", -1.00): set((":'(", ":'''(", ";'(")), } TEMP_RE_EMOTICONS = [ r" ?".join([re.escape(each) for each in e]) for v in EMOTICONS.values() for e in v ] RE_EMOTICONS = re.compile(r"(%s)($|\s)" % "|".join(TEMP_RE_EMOTICONS)) # Handle sarcasm punctuation (!). RE_SARCASM = re.compile(r"\( ?\! ?\)") # Handle common contractions. replacements = { "'d": " 'd", "'m": " 'm", "'s": " 's", "'ll": " 'll", "'re": " 're", "'ve": " 've", "n't": " n't", } # Handle paragraph line breaks (\n\n marks end of sentence). EOS = "END-OF-SENTENCE" def find_tokens( string, punctuation=PUNCTUATION, abbreviations=ABBREVIATIONS, replace=replacements, linebreak=r"\n{2,}", ): """Returns a list of sentences. Each sentence is a space-separated string of tokens (words). Handles common cases of abbreviations (e.g., etc., ...). Punctuation marks are split from other words. Periods (or ?!) mark the end of a sentence. Headings without an ending period are inferred by line breaks. """ # Handle periods separately. punctuation = tuple(punctuation.replace(".", "")) # Handle replacements (contractions). for a, b in list(replace.items()): string = re.sub(a, b, string) # Handle Unicode quotes. if isinstance(string, str): string = ( str(string) .replace("“", " “ ") .replace("”", " ” ") .replace("‘", " ‘ ") .replace("’", " ’ ") .replace("'", " ' ") .replace('"', ' " ') ) # Collapse whitespace. string = re.sub("\r\n", "\n", string) string = re.sub(linebreak, " %s " % EOS, string) string = re.sub(r"\s+", " ", string) tokens = [] for t in TOKEN.findall(string + " "): if len(t) > 0: tail = [] while t.startswith(punctuation) and t not in replace: # Split leading punctuation. if t.startswith(punctuation): tokens.append(t[0]) t = t[1:] while t.endswith(punctuation + (".",)) and t not in replace: # Split trailing punctuation. if t.endswith(punctuation): tail.append(t[-1]) t = t[:-1] # Split ellipsis (...) before splitting period. if t.endswith("..."): tail.append("...") t = t[:-3].rstrip(".") # Split period (if not an abbreviation). if t.endswith("."): if ( t in abbreviations or RE_ABBR1.match(t) is not None or RE_ABBR2.match(t) is not None or RE_ABBR3.match(t) is not None ): break else: tail.append(t[-1]) t = t[:-1] if t != "": tokens.append(t) tokens.extend(reversed(tail)) sentences, i, j = [[]], 0, 0 while j < len(tokens): if tokens[j] in ("...", ".", "!", "?", EOS): # Handle citations, trailing parenthesis, repeated punctuation (!?). while j < len(tokens) and tokens[j] in ( "'", '"', "”", "’", "...", ".", "!", "?", ")", EOS, ): if tokens[j] in ("'", '"') and sentences[-1].count(tokens[j]) % 2 == 0: break # Balanced quotes. j += 1 sentences[-1].extend(t for t in tokens[i:j] if t != EOS) sentences.append([]) i = j j += 1 sentences[-1].extend(tokens[i:j]) sentences = (" ".join(s) for s in sentences if len(s) > 0) sentences = (RE_SARCASM.sub("(!)", s) for s in sentences) sentences = [ RE_EMOTICONS.sub(lambda m: m.group(1).replace(" ", "") + m.group(2), s) for s in sentences ] return sentences #### LEXICON ####################################################################################### # --- LEXICON --------------------------------------------------------------------------------------- # Pattern's text parsers are based on Brill's algorithm. # Brill's algorithm automatically acquires a lexicon of known words, # and a set of rules for tagging unknown words from a training corpus. # Lexical rules are used to tag unknown words, based on the word morphology (prefix, suffix, ...). # Contextual rules are used to tag all words, based on the word's role in the sentence. # Named entity rules are used to discover proper nouns (NNP's). def _read(path, encoding="utf-8", comment=";;;"): """Returns an iterator over the lines in the file at the given path, stripping comments and decoding each line to Unicode. """ if path: if isinstance(path, basestring) and os.path.exists(path): # From file path. f = open(path, encoding="utf-8") elif isinstance(path, basestring): # From string. f = path.splitlines() elif hasattr(path, "read"): # From string buffer. f = path.read().splitlines() else: f = path for i, line in enumerate(f): line = ( line.strip(codecs.BOM_UTF8) if i == 0 and isinstance(line, bytes) else line ) line = line.strip() line = decode_utf8(line) if not line or (comment and line.startswith(comment)): continue yield line return class Lexicon(lazydict): def __init__( self, path="", morphology="", context="", entities="", NNP="NNP", language=None, ): """A dictionary of words and their part-of-speech tags. For unknown words, rules for word morphology, context and named entities can be used. """ self._path = path self._language = language self.morphology = Morphology(self, path=morphology) self.context = Context(self, path=context) self.entities = Entities(self, path=entities, tag=NNP) def load(self): # Arnold NNP x dict.update(self, (x.split(" ")[:2] for x in _read(self._path) if x.strip())) @property def path(self): return self._path @property def language(self): return self._language # --- MORPHOLOGICAL RULES --------------------------------------------------------------------------- # Brill's algorithm generates lexical (i.e., morphological) rules in the following format: # NN s fhassuf 1 NNS x => unknown words ending in -s and tagged NN change to NNS. # ly hassuf 2 RB x => unknown words ending in -ly change to RB. class Rules: def __init__(self, lexicon=None, cmd=None): if cmd is None: cmd = {} if lexicon is None: lexicon = {} self.lexicon, self.cmd = lexicon, cmd def apply(self, x): """Applies the rule to the given token or list of tokens.""" return x class Morphology(lazylist, Rules): def __init__(self, lexicon=None, path=""): """A list of rules based on word morphology (prefix, suffix).""" if lexicon is None: lexicon = {} cmd = ( "char", # Word contains x. "haspref", # Word starts with x. "hassuf", # Word end with x. "addpref", # x + word is in lexicon. "addsuf", # Word + x is in lexicon. "deletepref", # Word without x at the start is in lexicon. "deletesuf", # Word without x at the end is in lexicon. "goodleft", # Word preceded by word x. "goodright", # Word followed by word x. ) cmd = dict.fromkeys(cmd, True) cmd.update(("f" + k, v) for k, v in list(cmd.items())) Rules.__init__(self, lexicon, cmd) self._path = path @property def path(self): return self._path def load(self): # ["NN", "s", "fhassuf", "1", "NNS", "x"] list.extend(self, (x.split() for x in _read(self._path))) def apply(self, token, previous=(None, None), next=(None, None)): """Applies lexical rules to the given token, which is a [word, tag] list.""" w = token[0] for r in self: if r[1] in self.cmd: # Rule = ly hassuf 2 RB x f, x, pos, cmd = bool(0), r[0], r[-2], r[1].lower() if r[2] in self.cmd: # Rule = NN s fhassuf 1 NNS x f, x, pos, cmd = bool(1), r[1], r[-2], r[2].lower().lstrip("f") if f and token[1] != r[0]: continue if ( (cmd == "char" and x in w) or (cmd == "haspref" and w.startswith(x)) or (cmd == "hassuf" and w.endswith(x)) or (cmd == "addpref" and x + w in self.lexicon) or (cmd == "addsuf" and w + x in self.lexicon) or ( cmd == "deletepref" and w.startswith(x) and w[len(x) :] in self.lexicon ) or ( cmd == "deletesuf" and w.endswith(x) and w[: -len(x)] in self.lexicon ) or (cmd == "goodleft" and x == next[0]) or (cmd == "goodright" and x == previous[0]) ): token[1] = pos return token def insert(self, i, tag, affix, cmd="hassuf", tagged=None): """Inserts a new rule that assigns the given tag to words with the given affix, e.g., Morphology.append("RB", "-ly"). """ if affix.startswith("-") and affix.endswith("-"): affix, cmd = affix[+1:-1], "char" if affix.startswith("-"): affix, cmd = affix[+1:-0], "hassuf" if affix.endswith("-"): affix, cmd = affix[+0:-1], "haspref" if tagged: r = [tagged, affix, "f" + cmd.lstrip("f"), tag, "x"] else: r = [affix, cmd.lstrip("f"), tag, "x"] lazylist.insert(self, i, r) def append(self, *args, **kwargs): self.insert(len(self) - 1, *args, **kwargs) def extend(self, rules=None): if rules is None: rules = [] for r in rules: self.append(*r) # --- CONTEXT RULES --------------------------------------------------------------------------------- # Brill's algorithm generates contextual rules in the following format: # VBD VB PREVTAG TO => unknown word tagged VBD changes to VB if preceded by a word tagged TO. class Context(lazylist, Rules): def __init__(self, lexicon=None, path=""): """A list of rules based on context (preceding and following words).""" if lexicon is None: lexicon = {} cmd = ( "prevtag", # Preceding word is tagged x. "nexttag", # Following word is tagged x. "prev2tag", # Word 2 before is tagged x. "next2tag", # Word 2 after is tagged x. "prev1or2tag", # One of 2 preceding words is tagged x. "next1or2tag", # One of 2 following words is tagged x. "prev1or2or3tag", # One of 3 preceding words is tagged x. "next1or2or3tag", # One of 3 following words is tagged x. "surroundtag", # Preceding word is tagged x and following word is tagged y. "curwd", # Current word is x. "prevwd", # Preceding word is x. "nextwd", # Following word is x. "prev1or2wd", # One of 2 preceding words is x. "next1or2wd", # One of 2 following words is x. "next1or2or3wd", # One of 3 preceding words is x. "prev1or2or3wd", # One of 3 following words is x. "prevwdtag", # Preceding word is x and tagged y. "nextwdtag", # Following word is x and tagged y. "wdprevtag", # Current word is y and preceding word is tagged x. "wdnexttag", # Current word is x and following word is tagged y. "wdand2aft", # Current word is x and word 2 after is y. "wdand2tagbfr", # Current word is y and word 2 before is tagged x. "wdand2tagaft", # Current word is x and word 2 after is tagged y. "lbigram", # Current word is y and word before is x. "rbigram", # Current word is x and word after is y. "prevbigram", # Preceding word is tagged x and word before is tagged y. "nextbigram", # Following word is tagged x and word after is tagged y. ) Rules.__init__(self, lexicon, dict.fromkeys(cmd, True)) self._path = path @property def path(self): return self._path def load(self): # ["VBD", "VB", "PREVTAG", "TO"] list.extend(self, (x.split() for x in _read(self._path))) def apply(self, tokens): """Applies contextual rules to the given list of tokens, where each token is a [word, tag] list. """ o = [("STAART", "STAART")] * 3 # Empty delimiters for look ahead/back. t = o + tokens + o for i, token in enumerate(t): for r in self: if token[1] == "STAART": continue if token[1] != r[0] and r[0] != "*": continue cmd, x, y = r[2], r[3], r[4] if len(r) > 4 else "" cmd = cmd.lower() if ( (cmd == "prevtag" and x == t[i - 1][1]) or (cmd == "nexttag" and x == t[i + 1][1]) or (cmd == "prev2tag" and x == t[i - 2][1]) or (cmd == "next2tag" and x == t[i + 2][1]) or (cmd == "prev1or2tag" and x in (t[i - 1][1], t[i - 2][1])) or (cmd == "next1or2tag" and x in (t[i + 1][1], t[i + 2][1])) or ( cmd == "prev1or2or3tag" and x in (t[i - 1][1], t[i - 2][1], t[i - 3][1]) ) or ( cmd == "next1or2or3tag" and x in (t[i + 1][1], t[i + 2][1], t[i + 3][1]) ) or (cmd == "surroundtag" and x == t[i - 1][1] and y == t[i + 1][1]) or (cmd == "curwd" and x == t[i + 0][0]) or (cmd == "prevwd" and x == t[i - 1][0]) or (cmd == "nextwd" and x == t[i + 1][0]) or (cmd == "prev1or2wd" and x in (t[i - 1][0], t[i - 2][0])) or (cmd == "next1or2wd" and x in (t[i + 1][0], t[i + 2][0])) or (cmd == "prevwdtag" and x == t[i - 1][0] and y == t[i - 1][1]) or (cmd == "nextwdtag" and x == t[i + 1][0] and y == t[i + 1][1]) or (cmd == "wdprevtag" and x == t[i - 1][1] and y == t[i + 0][0]) or (cmd == "wdnexttag" and x == t[i + 0][0] and y == t[i + 1][1]) or (cmd == "wdand2aft" and x == t[i + 0][0] and y == t[i + 2][0]) or (cmd == "wdand2tagbfr" and x == t[i - 2][1] and y == t[i + 0][0]) or (cmd == "wdand2tagaft" and x == t[i + 0][0] and y == t[i + 2][1]) or (cmd == "lbigram" and x == t[i - 1][0] and y == t[i + 0][0]) or (cmd == "rbigram" and x == t[i + 0][0] and y == t[i + 1][0]) or (cmd == "prevbigram" and x == t[i - 2][1] and y == t[i - 1][1]) or (cmd == "nextbigram" and x == t[i + 1][1] and y == t[i + 2][1]) ): t[i] = [t[i][0], r[1]] return t[len(o) : -len(o)] def insert(self, i, tag1, tag2, cmd="prevtag", x=None, y=None, *args): """Inserts a new rule that updates words with tag1 to tag2, given constraints x and y, e.g., Context.append("TO < NN", "VB") """ if " < " in tag1 and not x and not y: tag1, x = tag1.split(" < ") cmd = "prevtag" if " > " in tag1 and not x and not y: x, tag1 = tag1.split(" > ") cmd = "nexttag" lazylist.insert(self, i, [tag1, tag2, cmd, x or "", y or ""]) def append(self, *args, **kwargs): self.insert(len(self) - 1, *args, **kwargs) def extend(self, rules=None, *args): if rules is None: rules = [] for r in rules: self.append(*r) # --- NAMED ENTITY RECOGNIZER ----------------------------------------------------------------------- RE_ENTITY1 = re.compile(r"^http://") # http://www.domain.com/path RE_ENTITY2 = re.compile(r"^www\..*?\.[com|org|net|edu|de|uk]$") # www.domain.com RE_ENTITY3 = re.compile(r"^[\w\-\.\+]+@(\w[\w\-]+\.)+[\w\-]+$") # name@domain.com class Entities(lazydict, Rules): def __init__(self, lexicon=None, path="", tag="NNP"): """A dictionary of named entities and their labels. For domain names and e-mail adresses, regular expressions are used. """ if lexicon is None: lexicon = {} cmd = ( "pers", # Persons: George/NNP-PERS "loc", # Locations: Washington/NNP-LOC "org", # Organizations: Google/NNP-ORG ) Rules.__init__(self, lexicon, cmd) self._path = path self.tag = tag @property def path(self): return self._path def load(self): # ["Alexander", "the", "Great", "PERS"] # {"alexander": [["alexander", "the", "great", "pers"], ...]} for x in _read(self.path): x = [x.lower() for x in x.split()] dict.setdefault(self, x[0], []).append(x) def apply(self, tokens): """Applies the named entity recognizer to the given list of tokens, where each token is a [word, tag] list. """ # Note: we could also scan for patterns, e.g., # "my|his|her name is|was *" => NNP-PERS. i = 0 while i < len(tokens): w = tokens[i][0].lower() if RE_ENTITY1.match(w) or RE_ENTITY2.match(w) or RE_ENTITY3.match(w): tokens[i][1] = self.tag if w in self: for e in self[w]: # Look ahead to see if successive words match the named entity. e, tag = ( (e[:-1], "-" + e[-1].upper()) if e[-1] in self.cmd else (e, "") ) b = True for j, e in enumerate(e): if i + j >= len(tokens) or tokens[i + j][0].lower() != e: b = False break if b: for token in tokens[i : i + j + 1]: token[1] = ( token[1] == "NNPS" and token[1] or self.tag ) + tag i += j break i += 1 return tokens def append(self, entity, name="pers"): """Appends a named entity to the lexicon, e.g., Entities.append("Hooloovoo", "PERS") """ e = [s.lower() for s in entity.split(" ") + [name]] self.setdefault(e[0], []).append(e) def extend(self, entities): for entity, name in entities: self.append(entity, name) ### SENTIMENT POLARITY LEXICON ##################################################################### # A sentiment lexicon can be used to discern objective facts from subjective opinions in text. # Each word in the lexicon has scores for: # 1) polarity: negative vs. positive (-1.0 => +1.0) # 2) subjectivity: objective vs. subjective (+0.0 => +1.0) # 3) intensity: modifies next word? (x0.5 => x2.0) # For English, adverbs are used as modifiers (e.g., "very good"). # For Dutch, adverbial adjectives are used as modifiers # ("hopeloos voorspelbaar", "ontzettend spannend", "verschrikkelijk goed"). # Negation words (e.g., "not") reverse the polarity of the following word. # Sentiment()(txt) returns an averaged (polarity, subjectivity)-tuple. # Sentiment().assessments(txt) returns a list of (chunk, polarity, subjectivity, label)-tuples. # Semantic labels are useful for fine-grained analysis, e.g., # negative words + positive emoticons could indicate cynicism. # Semantic labels: MOOD = "mood" # emoticons, emojis IRONY = "irony" # sarcasm mark (!) NOUN, VERB, ADJECTIVE, ADVERB = "NN", "VB", "JJ", "RB" RE_SYNSET = re.compile(r"^[acdnrv][-_][0-9]+$") def avg(list): return sum(list) / float(len(list) or 1) class Score(tuple): def __new__(self, polarity, subjectivity, assessments=None): """A (polarity, subjectivity)-tuple with an assessments property.""" if assessments is None: assessments = [] return tuple.__new__(self, [polarity, subjectivity]) def __init__(self, polarity, subjectivity, assessments=None): if assessments is None: assessments = [] self.assessments = assessments class Sentiment(lazydict): def __init__(self, path="", language=None, synset=None, confidence=None, **kwargs): """A dictionary of words (adjectives) and polarity scores (positive/negative). The value for each word is a dictionary of part-of-speech tags. The value for each word POS-tag is a tuple with values for polarity (-1.0-1.0), subjectivity (0.0-1.0) and intensity (0.5-2.0). """ self._path = path # XML file path. self._language = None # XML language attribute ("en", "fr", ...) self._confidence = None # XML confidence attribute threshold (>=). self._synset = synset # XML synset attribute ("wordnet_id", "cornetto_id", ...) self._synsets = {} # {"a-01123879": (1.0, 1.0, 1.0)} self.labeler = {} # {"dammit": "profanity"} self.tokenizer = kwargs.get("tokenizer", find_tokens) self.negations = kwargs.get("negations", ("no", "not", "n't", "never")) self.modifiers = kwargs.get("modifiers", ("RB",)) self.modifier = kwargs.get("modifier", lambda w: w.endswith("ly")) @property def path(self): return self._path @property def language(self): return self._language @property def confidence(self): return self._confidence def load(self, path=None): """Loads the XML-file (with sentiment annotations) from the given path. By default, Sentiment.path is lazily loaded. """ # # if not path: path = self._path if not os.path.exists(path): return words, synsets, labels = {}, {}, {} xml = ElementTree.parse(path) xml = xml.getroot() for w in xml.findall("word"): if self._confidence is None or self._confidence <= float( w.attrib.get("confidence", 0.0) ): w, pos, p, s, i, label, synset = ( w.attrib.get("form"), w.attrib.get("pos"), w.attrib.get("polarity", 0.0), w.attrib.get("subjectivity", 0.0), w.attrib.get("intensity", 1.0), w.attrib.get("label"), w.attrib.get(self._synset), # wordnet_id, cornetto_id, ... ) psi = (float(p), float(s), float(i)) if w: words.setdefault(w, {}).setdefault(pos, []).append(psi) if w and label: labels[w] = label if synset: synsets.setdefault(synset, []).append(psi) self._language = xml.attrib.get("language", self._language) # Average scores of all word senses per part-of-speech tag. for w in words: words[w] = dict( (pos, [avg(each) for each in zip(*psi)]) for pos, psi in words[w].items() ) # Average scores of all part-of-speech tags. for w, pos in list(words.items()): words[w][None] = [avg(each) for each in zip(*pos.values())] # Average scores of all synonyms per synset. for id, psi in synsets.items(): synsets[id] = [avg(each) for each in zip(*psi)] dict.update(self, words) dict.update(self.labeler, labels) dict.update(self._synsets, synsets) def synset(self, id, pos=ADJECTIVE): """Returns a (polarity, subjectivity)-tuple for the given synset id. For example, the adjective "horrible" has id 193480 in WordNet: Sentiment.synset(193480, pos="JJ") => (-0.6, 1.0, 1.0). """ id = str(id).zfill(8) if not id.startswith(("n-", "v-", "a-", "r-")): if pos == NOUN: id = "n-" + id if pos == VERB: id = "v-" + id if pos == ADJECTIVE: id = "a-" + id if pos == ADVERB: id = "r-" + id if dict.__len__(self) == 0: self.load() return tuple(self._synsets.get(id, (0.0, 0.0))[:2]) def __call__(self, s, negation=True, **kwargs): """Returns a (polarity, subjectivity)-tuple for the given sentence, with polarity between -1.0 and 1.0 and subjectivity between 0.0 and 1.0. The sentence can be a string, Synset, Text, Sentence, Chunk, Word, Document, Vector. An optional weight parameter can be given, as a function that takes a list of words and returns a weight. """ def avg(assessments, weighted=lambda w: 1): s, n = 0, 0 for words, score in assessments: w = weighted(words) s += w * score n += w return s / float(n or 1) # A pattern.en.wordnet.Synset. # Sentiment(synsets("horrible", "JJ")[0]) => (-0.6, 1.0) if hasattr(s, "gloss"): a = [(s.synonyms[0],) + self.synset(s.id, pos=s.pos) + (None,)] # A synset id. # Sentiment("a-00193480") => horrible => (-0.6, 1.0) (English WordNet) # Sentiment("c_267") => verschrikkelijk => (-0.9, 1.0) (Dutch Cornetto) elif ( isinstance(s, basestring) and RE_SYNSET.match(s) and hasattr(s, "synonyms") ): a = [(s.synonyms[0],) + self.synset(s.id, pos=s.pos) + (None,)] # A string of words. # Sentiment("a horrible movie") => (-0.6, 1.0) elif isinstance(s, basestring): a = self.assessments( ((w.lower(), None) for w in " ".join(self.tokenizer(s)).split()), negation, ) # A pattern.en.Text. elif hasattr(s, "sentences"): a = self.assessments( ( (w.lemma or w.string.lower(), w.pos[:2]) for w in chain.from_iterable(s) ), negation, ) # A pattern.en.Sentence or pattern.en.Chunk. elif hasattr(s, "lemmata"): a = self.assessments( ((w.lemma or w.string.lower(), w.pos[:2]) for w in s.words), negation ) # A pattern.en.Word. elif hasattr(s, "lemma"): a = self.assessments(((s.lemma or s.string.lower(), s.pos[:2]),), negation) # A pattern.vector.Document. # Average score = weighted average using feature weights. # Bag-of words is unordered: inject None between each two words # to stop assessments() from scanning for preceding negation & modifiers. elif hasattr(s, "terms"): a = self.assessments( chain.from_iterable(((w, None), (None, None)) for w in s), negation ) kwargs.setdefault("weight", lambda w: s.terms[w[0]]) # A dict of (word, weight)-items. elif isinstance(s, dict): a = self.assessments( chain.from_iterable(((w, None), (None, None)) for w in s), negation ) kwargs.setdefault("weight", lambda w: s[w[0]]) # A list of words. elif isinstance(s, list): a = self.assessments(((w, None) for w in s), negation) else: a = [] weight = kwargs.get("weight", lambda w: 1) # [(w, p) for w, p, s, x in a] return Score( polarity=avg([(w, p) for w, p, s, x in a], weight), subjectivity=avg([(w, s) for w, p, s, x in a], weight), assessments=a, ) def assessments(self, words=None, negation=True): """Returns a list of (chunk, polarity, subjectivity, label)-tuples for the given list of words: where chunk is a list of successive words: a known word optionally preceded by a modifier ("very good") or a negation ("not good"). """ if words is None: words = [] a = [] m = None # Preceding modifier (i.e., adverb or adjective). n = None # Preceding negation (e.g., "not beautiful"). for w, pos in words: # Only assess known words, preferably by part-of-speech tag. # Including unknown words (polarity 0.0 and subjectivity 0.0) lowers the average. if w is None: continue if w in self and pos in self[w]: p, s, i = self[w][pos] # Known word not preceded by a modifier ("good"). if m is None: a.append(dict(w=[w], p=p, s=s, i=i, n=1, x=self.labeler.get(w))) # Known word preceded by a modifier ("really good"). if m is not None: a[-1]["w"].append(w) a[-1]["p"] = max(-1.0, min(p * a[-1]["i"], +1.0)) a[-1]["s"] = max(-1.0, min(s * a[-1]["i"], +1.0)) a[-1]["i"] = i a[-1]["x"] = self.labeler.get(w) # Known word preceded by a negation ("not really good"). if n is not None: a[-1]["w"].insert(0, n) a[-1]["i"] = 1.0 / a[-1]["i"] a[-1]["n"] = -1 # Known word may be a negation. # Known word may be modifying the next word (i.e., it is a known adverb). m = None n = None if ( pos and pos in self.modifiers or any(map(self[w].__contains__, self.modifiers)) ): m = (w, pos) if negation and w in self.negations: n = w else: # Unknown word may be a negation ("not good"). if negation and w in self.negations: n = w # Unknown word. Retain negation across small words ("not a good"). elif n and len(w.strip("'")) > 1: n = None # Unknown word may be a negation preceded by a modifier ("really not good"). if ( n is not None and m is not None and (pos in self.modifiers or self.modifier(m[0])) ): a[-1]["w"].append(n) a[-1]["n"] = -1 n = None # Unknown word. Retain modifier across small words ("really is a good"). elif m and len(w) > 2: m = None # Exclamation marks boost previous word. if w == "!" and len(a) > 0: a[-1]["w"].append("!") a[-1]["p"] = max(-1.0, min(a[-1]["p"] * 1.25, +1.0)) # Exclamation marks in parentheses indicate sarcasm. if w == "(!)": a.append(dict(w=[w], p=0.0, s=1.0, i=1.0, n=1, x=IRONY)) # EMOTICONS: {("grin", +1.0): set((":-D", ":D"))} if ( w.isalpha() is False and len(w) <= 5 and w not in PUNCTUATION ): # speedup for (_type, p), e in EMOTICONS.items(): if w in map(lambda e: e.lower(), e): a.append(dict(w=[w], p=p, s=1.0, i=1.0, n=1, x=MOOD)) break for i in range(len(a)): w = a[i]["w"] p = a[i]["p"] s = a[i]["s"] n = a[i]["n"] x = a[i]["x"] # "not good" = slightly bad, "not bad" = slightly good. a[i] = (w, p * -0.5 if n < 0 else p, s, x) return a def annotate( self, word, pos=None, polarity=0.0, subjectivity=0.0, intensity=1.0, label=None ): """Annotates the given word with polarity, subjectivity and intensity scores, and optionally a semantic label (e.g., MOOD for emoticons, IRONY for "(!)"). """ w = self.setdefault(word, {}) w[pos] = w[None] = (polarity, subjectivity, intensity) if label: self.labeler[word] = label # --- PART-OF-SPEECH TAGGER ------------------------------------------------------------------------- # Unknown words are recognized as numbers if they contain only digits and -,.:/%$ CD = re.compile(r"^[0-9\-\,\.\:\/\%\$]+$") def _suffix_rules(token, tag="NN"): """Default morphological tagging rules for English, based on word suffixes.""" if isinstance(token, (list, tuple)): token, tag = token if token.endswith("ing"): tag = "VBG" if token.endswith("ly"): tag = "RB" if token.endswith("s") and not token.endswith(("is", "ous", "ss")): tag = "NNS" if ( token.endswith( ("able", "al", "ful", "ible", "ient", "ish", "ive", "less", "tic", "ous") ) or "-" in token ): tag = "JJ" if token.endswith("ed"): tag = "VBN" if token.endswith(("ate", "ify", "ise", "ize")): tag = "VBP" return [token, tag] def find_tags( tokens, lexicon=None, model=None, morphology=None, context=None, entities=None, default=("NN", "NNP", "CD"), language="en", map=None, **kwargs, ): """Returns a list of [token, tag]-items for the given list of tokens: ["The", "cat", "purs"] => [["The", "DT"], ["cat", "NN"], ["purs", "VB"]] Words are tagged using the given lexicon of (word, tag)-items. Unknown words are tagged NN by default. Unknown words that start with a capital letter are tagged NNP (unless language="de"). Unknown words that consist only of digits and punctuation marks are tagged CD. Unknown words are then improved with morphological rules. All words are improved with contextual rules. If a model is given, uses model for unknown words instead of morphology and context. If map is a function, it is applied to each (token, tag) after applying all rules. """ if lexicon is None: lexicon = {} tagged = [] # Tag known words. for i, token in enumerate(tokens): tagged.append( [token, lexicon.get(token, i == 0 and lexicon.get(token.lower()) or None)] ) # Tag unknown words. for i, (token, tag) in enumerate(tagged): prev, next = (None, None), (None, None) if i > 0: prev = tagged[i - 1] if i < len(tagged) - 1: next = tagged[i + 1] if tag is None or token in (model is not None and model.unknown or ()): # Use language model (i.e., SLP). if model is not None: tagged[i] = model.apply([token, None], prev, next) # Use NNP for capitalized words (except in German). elif token.istitle() and language != "de": tagged[i] = [token, default[1]] # Use CD for digits and numbers. elif CD.match(token) is not None: tagged[i] = [token, default[2]] # Use suffix rules (e.g., -ly = RB). elif morphology is not None: tagged[i] = morphology.apply([token, default[0]], prev, next) # Use suffix rules (English default). elif language == "en": tagged[i] = _suffix_rules([token, default[0]]) # Use most frequent tag (NN). else: tagged[i] = [token, default[0]] # Tag words by context. if context is not None and model is None: tagged = context.apply(tagged) # Tag named entities. if entities is not None: tagged = entities.apply(tagged) # Map tags with a custom function. if map is not None: tagged = [list(map(token, tag)) or [token, default[0]] for token, tag in tagged] return tagged # --- PHRASE CHUNKER -------------------------------------------------------------------------------- SEPARATOR = "/" NN = r"NN|NNS|NNP|NNPS|NNPS?\-[A-Z]{3,4}|PR|PRP|PRP\$" VB = r"VB|VBD|VBG|VBN|VBP|VBZ" JJ = r"JJ|JJR|JJS" RB = r"(? The/DT/B-NP nice/JJ/I-NP fish/NN/I-NP is/VBZ/B-VP dead/JJ/B-ADJP ././O """ chunked = [x for x in tagged] tags = "".join(f"{tag}{SEPARATOR}" for token, tag in tagged) # Use Germanic or Romance chunking rules according to given language. for tag, rule in CHUNKS[ int(language in ("ca", "es", "pt", "fr", "it", "pt", "ro")) ]: for m in rule.finditer(tags): # Find the start of chunks inside the tags-string. # Number of preceding separators = number of preceding tokens. i = m.start() j = tags[:i].count(SEPARATOR) n = m.group(0).count(SEPARATOR) for k in range(j, j + n): if len(chunked[k]) == 3: continue if len(chunked[k]) < 3: # A conjunction can not be start of a chunk. if k == j and chunked[k][1] in ("CC", "CJ", "KON", "Conj(neven)"): j += 1 # Mark first token in chunk with B-. elif k == j: chunked[k].append("B-" + tag) # Mark other tokens in chunk with I-. else: chunked[k].append("I-" + tag) # Mark chinks (tokens outside of a chunk) with O-. for chink in filter(lambda x: len(x) < 3, chunked): chink.append("O") # Post-processing corrections. for i, (_word, tag, chunk) in enumerate(chunked): if tag.startswith("RB") and chunk == "B-NP": # "Very nice work" (NP) <=> "Perhaps" (ADVP) + "you" (NP). if i < len(chunked) - 1 and not chunked[i + 1][1].startswith("JJ"): chunked[i + 0][2] = "B-ADVP" chunked[i + 1][2] = "B-NP" return chunked def find_prepositions(chunked): """The input is a list of [token, tag, chunk]-items. The output is a list of [token, tag, chunk, preposition]-items. PP-chunks followed by NP-chunks make up a PNP-chunk. """ # Tokens that are not part of a preposition just get the O-tag. for ch in chunked: ch.append("O") for i, chunk in enumerate(chunked): if chunk[2].endswith("PP") and chunk[-1] == "O": # Find PP followed by other PP, NP with nouns and pronouns, VP with a gerund. if i < len(chunked) - 1 and ( chunked[i + 1][2].endswith(("NP", "PP")) or chunked[i + 1][1] in ("VBG", "VBN") ): chunk[-1] = "B-PNP" pp = True for ch in chunked[i + 1 :]: if not (ch[2].endswith(("NP", "PP")) or ch[1] in ("VBG", "VBN")): break if ch[2].endswith("PP") and pp: ch[-1] = "I-PNP" if not ch[2].endswith("PP"): ch[-1] = "I-PNP" pp = False return chunked #### PARSER ######################################################################################## # --- PARSER ---------------------------------------------------------------------------------------- # A shallow parser can be used to retrieve syntactic-semantic information from text # in an efficient way (usually at the expense of deeper configurational syntactic information). # The shallow parser in Pattern is meant to handle the following tasks: # 1) Tokenization: split punctuation marks from words and find sentence periods. # 2) Tagging: find the part-of-speech tag of each word (noun, verb, ...) in a sentence. # 3) Chunking: find words that belong together in a phrase. # 4) Role labeling: find the subject and object of the sentence. # 5) Lemmatization: find the base form of each word ("was" => "is"). # WORD TAG CHUNK PNP ROLE LEMMA # ------------------------------------------------------------------ # The DT B-NP O NP-SBJ-1 the # black JJ I-NP O NP-SBJ-1 black # cat NN I-NP O NP-SBJ-1 cat # sat VB B-VP O VP-1 sit # on IN B-PP B-PNP PP-LOC on # the DT B-NP I-PNP NP-OBJ-1 the # mat NN I-NP I-PNP NP-OBJ-1 mat # . . O O O . # The example demonstrates what information can be retrieved: # # - the period is split from "mat." = the end of the sentence, # - the words are annotated: NN (noun), VB (verb), JJ (adjective), DT (determiner), ... # - the phrases are annotated: NP (noun phrase), VP (verb phrase), PNP (preposition), ... # - the phrases are labeled: SBJ (subject), OBJ (object), LOC (location), ... # - the phrase start is marked: B (begin), I (inside), O (outside), # - the past tense "sat" is lemmatized => "sit". # By default, the English parser uses the Penn Treebank II tagset: # http://www.clips.ua.ac.be/pages/penn-treebank-tagset PTB = PENN = "penn" class Parser: def __init__(self, lexicon=None, default=("NN", "NNP", "CD"), language=None): """A simple shallow parser using a Brill-based part-of-speech tagger. The given lexicon is a dictionary of known words and their part-of-speech tag. The given default tags are used for unknown words. Unknown words that start with a capital letter are tagged NNP (except for German). Unknown words that contain only digits and punctuation are tagged CD. The given language can be used to discern between Germanic and Romance languages for phrase chunking. """ if lexicon is None: lexicon = {} self.lexicon = lexicon self.default = default self.language = language def find_tokens(self, string, **kwargs): """Returns a list of sentences from the given string. Punctuation marks are separated from each word by a space. """ # "The cat purs." => ["The cat purs ."] return find_tokens( str(string), punctuation=kwargs.get("punctuation", PUNCTUATION), abbreviations=kwargs.get("abbreviations", ABBREVIATIONS), replace=kwargs.get("replace", replacements), linebreak=r"\n{2,}", ) def find_tags(self, tokens, **kwargs): """Annotates the given list of tokens with part-of-speech tags. Returns a list of tokens, where each token is now a [word, tag]-list. """ # ["The", "cat", "purs"] => [["The", "DT"], ["cat", "NN"], ["purs", "VB"]] return find_tags( tokens, language=kwargs.get("language", self.language), lexicon=kwargs.get("lexicon", self.lexicon), default=kwargs.get("default", self.default), map=kwargs.get("map", None), ) def find_chunks(self, tokens, **kwargs): """Annotates the given list of tokens with chunk tags. Several tags can be added, for example chunk + preposition tags. """ # [["The", "DT"], ["cat", "NN"], ["purs", "VB"]] => # [["The", "DT", "B-NP"], ["cat", "NN", "I-NP"], ["purs", "VB", "B-VP"]] return find_prepositions( find_chunks(tokens, language=kwargs.get("language", self.language)) ) def find_prepositions(self, tokens, **kwargs): """Annotates the given list of tokens with prepositional noun phrase tags.""" return find_prepositions(tokens) # See also Parser.find_chunks(). def find_labels(self, tokens, **kwargs): """Annotates the given list of tokens with verb/predicate tags.""" return find_relations(tokens) def find_lemmata(self, tokens, **kwargs): """Annotates the given list of tokens with word lemmata.""" return [token + [token[0].lower()] for token in tokens] def parse( self, s, tokenize=True, tags=True, chunks=True, relations=False, lemmata=False, encoding="utf-8", **kwargs, ): """Takes a string (sentences) and returns a tagged Unicode string (TaggedString). Sentences in the output are separated by newlines. With tokenize=True, punctuation is split from words and sentences are separated by \n. With tags=True, part-of-speech tags are parsed (NN, VB, IN, ...). With chunks=True, phrase chunk tags are parsed (NP, VP, PP, PNP, ...). With relations=True, semantic role labels are parsed (SBJ, OBJ). With lemmata=True, word lemmata are parsed. Optional parameters are passed to the tokenizer, tagger, chunker, labeler and lemmatizer. """ # Tokenizer. if tokenize: s = self.find_tokens(s, **kwargs) if isinstance(s, (list, tuple)): s = [isinstance(s, basestring) and s.split(" ") or s for s in s] if isinstance(s, basestring): s = [s.split(" ") for s in s.split("\n")] # Unicode. for i in range(len(s)): for j in range(len(s[i])): if isinstance(s[i][j], bytes): s[i][j] = decode_string(s[i][j], encoding) # Tagger (required by chunker, labeler & lemmatizer). if tags or chunks or relations or lemmata: s[i] = self.find_tags(s[i], **kwargs) else: s[i] = [[w] for w in s[i]] # Chunker. if chunks or relations: s[i] = self.find_chunks(s[i], **kwargs) # Labeler. if relations: s[i] = self.find_labels(s[i], **kwargs) # Lemmatizer. if lemmata: s[i] = self.find_lemmata(s[i], **kwargs) # Slash-formatted tagged string. # With collapse=False (or split=True), returns raw list # (this output is not usable by tree.Text). if not kwargs.get("collapse", True) or kwargs.get("split", False): return s # Construct TaggedString.format. # (this output is usable by tree.Text). format = ["word"] if tags: format.append("part-of-speech") if chunks: format.extend(("chunk", "preposition")) if relations: format.append("relation") if lemmata: format.append("lemma") # Collapse raw list. # Sentences are separated by newlines, tokens by spaces, tags by slashes. # Slashes in words are encoded with &slash; for i in range(len(s)): for j in range(len(s[i])): s[i][j][0] = s[i][j][0].replace("/", "&slash;") s[i][j] = "/".join(s[i][j]) s[i] = " ".join(s[i]) s = "\n".join(s) s = TaggedString( str(s), format, language=kwargs.get("language", self.language) ) return s # --- TAGGED STRING --------------------------------------------------------------------------------- # Pattern.parse() returns a TaggedString: a Unicode string with "tags" and "language" attributes. # The pattern.text.tree.Text class uses this attribute to determine the token format and # transform the tagged string to a parse tree of nested Sentence, Chunk and Word objects. TOKENS = "tokens" class TaggedString(str): def __new__(cls, string, tags=None, language=None): """Unicode string with tags and language attributes. For example: TaggedString("cat/NN/NP", tags=["word", "pos", "chunk"]). """ # From a TaggedString: if tags is None: tags = ["word"] if isinstance(string, str) and hasattr(string, "tags"): tags, language = string.tags, string.language # From a TaggedString.split(TOKENS) list: if isinstance(string, list): string = [ [[x.replace("/", "&slash;") for x in token] for token in s] for s in string ] string = "\n".join(" ".join("/".join(token) for token in s) for s in string) s = str.__new__(cls, string) s.tags = list(tags) s.language = language return s def split(self, sep=TOKENS): """Returns a list of sentences, where each sentence is a list of tokens, where each token is a list of word + tags. """ if sep != TOKENS: return str.split(self, sep) if len(self) == 0: return [] return [ [ [x.replace("&slash;", "/") for x in token.split("/")] for token in sentence.split(" ") ] for sentence in str.split(self, "\n") ] #### SPELLING CORRECTION ########################################################################### # Based on: Peter Norvig, "How to Write a Spelling Corrector", http://norvig.com/spell-correct.html class Spelling(lazydict): ALPHA = "abcdefghijklmnopqrstuvwxyz" def __init__(self, path=""): self._path = path def load(self): for x in _read(self._path): x = x.split() dict.__setitem__(self, x[0], int(x[1])) @property def path(self): return self._path @property def language(self): return self._language @classmethod def train(cls, s, path="spelling.txt"): """Counts the words in the given string and saves the probabilities at the given path. This can be used to generate a new model for the Spelling() constructor. """ model = {} for w in re.findall("[a-z]+", s.lower()): model[w] = w in model and model[w] + 1 or 1 model = (f"{k} {v}" for k, v in sorted(model.items())) model = "\n".join(model) f = open(path, "w") f.write(model) f.close() def _edit1(self, w): """Returns a set of words with edit distance 1 from the given word.""" # Of all spelling errors, 80% is covered by edit distance 1. # Edit distance 1 = one character deleted, swapped, replaced or inserted. split = [(w[:i], w[i:]) for i in range(len(w) + 1)] delete, transpose, replace, insert = ( [a + b[1:] for a, b in split if b], [a + b[1] + b[0] + b[2:] for a, b in split if len(b) > 1], [a + c + b[1:] for a, b in split for c in Spelling.ALPHA if b], [a + c + b[0:] for a, b in split for c in Spelling.ALPHA], ) return set(delete + transpose + replace + insert) def _edit2(self, w): """Returns a set of words with edit distance 2 from the given word""" # Of all spelling errors, 99% is covered by edit distance 2. # Only keep candidates that are actually known words (20% speedup). return set(e2 for e1 in self._edit1(w) for e2 in self._edit1(e1) if e2 in self) def _known(self, words=None): """Returns the given list of words filtered by known words.""" if words is None: words = [] return set(w for w in words if w in self) def suggest(self, w): """Return a list of (word, confidence) spelling corrections for the given word, based on the probability of known words with edit distance 1-2 from the given word. """ if len(self) == 0: self.load() if len(w) == 1: return [(w, 1.0)] # I if w in PUNCTUATION: return [(w, 1.0)] # .?! if w in string.whitespace: return [(w, 1.0)] # \n if w.replace(".", "").isdigit(): return [(w, 1.0)] # 1.5 candidates = ( self._known([w]) or self._known(self._edit1(w)) or self._known(self._edit2(w)) or [w] ) candidates = [(self.get(c, 0.0), c) for c in candidates] s = float(sum(p for p, word in candidates) or 1) candidates = sorted(((p / s, word) for p, word in candidates), reverse=True) if w.istitle(): # Preserve capitalization candidates = [(word.title(), p) for p, word in candidates] else: candidates = [(word, p) for p, word in candidates] return candidates ================================================ FILE: src/textblob/base.py ================================================ """Abstract base classes for models (taggers, noun phrase extractors, etc.) which define the interface for descendant classes. .. versionchanged:: 0.7.0 All base classes are defined in the same module, ``textblob.base``. """ from __future__ import annotations from abc import ABCMeta, abstractmethod from typing import TYPE_CHECKING import nltk if TYPE_CHECKING: from typing import Any, AnyStr ##### POS TAGGERS ##### class BaseTagger(metaclass=ABCMeta): """Abstract tagger class from which all taggers inherit from. All descendants must implement a ``tag()`` method. """ @abstractmethod def tag(self, text: str, tokenize=True) -> list[tuple[str, str]]: """Return a list of tuples of the form (word, tag) for a given set of text or BaseBlob instance. """ ... ##### NOUN PHRASE EXTRACTORS ##### class BaseNPExtractor(metaclass=ABCMeta): """Abstract base class from which all NPExtractor classes inherit. Descendant classes must implement an ``extract(text)`` method that returns a list of noun phrases as strings. """ @abstractmethod def extract(self, text: str) -> list[str]: """Return a list of noun phrases (strings) for a body of text.""" ... ##### TOKENIZERS ##### class BaseTokenizer(nltk.tokenize.api.TokenizerI, metaclass=ABCMeta): # pyright: ignore """Abstract base class from which all Tokenizer classes inherit. Descendant classes must implement a ``tokenize(text)`` method that returns a list of noun phrases as strings. """ @abstractmethod def tokenize(self, text: str) -> list[str]: """Return a list of tokens (strings) for a body of text. :rtype: list """ ... def itokenize(self, text: str, *args, **kwargs): """Return a generator that generates tokens "on-demand". .. versionadded:: 0.6.0 :rtype: generator """ return (t for t in self.tokenize(text, *args, **kwargs)) ##### SENTIMENT ANALYZERS #### DISCRETE = "ds" CONTINUOUS = "co" class BaseSentimentAnalyzer(metaclass=ABCMeta): """Abstract base class from which all sentiment analyzers inherit. Should implement an ``analyze(text)`` method which returns either the results of analysis. """ _trained: bool kind = DISCRETE def __init__(self): self._trained = False def train(self): # Train me self._trained = True @abstractmethod def analyze(self, text) -> Any: """Return the result of of analysis. Typically returns either a tuple, float, or dictionary. """ # Lazily train the classifier if not self._trained: self.train() # Analyze text return None ##### PARSERS ##### class BaseParser(metaclass=ABCMeta): """Abstract parser class from which all parsers inherit from. All descendants must implement a ``parse()`` method. """ @abstractmethod def parse(self, text: AnyStr): """Parses the text.""" ... ================================================ FILE: src/textblob/blob.py ================================================ """Wrappers for various units of text, including the main :class:`TextBlob `, :class:`Word `, and :class:`WordList ` classes. Example usage: :: >>> from textblob import TextBlob >>> b = TextBlob("Simple is better than complex.") >>> b.tags [(u'Simple', u'NN'), (u'is', u'VBZ'), (u'better', u'JJR'), (u'than', u'IN'), (u'complex', u'NN')] >>> b.noun_phrases WordList([u'simple']) >>> b.words WordList([u'Simple', u'is', u'better', u'than', u'complex']) >>> b.sentiment (0.06666666666666667, 0.41904761904761906) >>> b.words[0].synsets()[0] Synset('simple.n.01') .. versionchanged:: 0.8.0 These classes are now imported from ``textblob`` rather than ``text.blob``. """ # noqa: E501 import json import sys from collections import defaultdict import nltk from textblob.base import ( BaseNPExtractor, BaseParser, BaseSentimentAnalyzer, BaseTagger, BaseTokenizer, ) from textblob.decorators import cached_property, requires_nltk_corpus from textblob.en import suggest from textblob.inflect import pluralize as _pluralize from textblob.inflect import singularize as _singularize from textblob.mixins import BlobComparableMixin, StringlikeMixin from textblob.np_extractors import FastNPExtractor from textblob.parsers import PatternParser from textblob.sentiments import PatternAnalyzer from textblob.taggers import NLTKTagger from textblob.tokenizers import WordTokenizer, sent_tokenize, word_tokenize from textblob.utils import PUNCTUATION_REGEX, lowerstrip # Wordnet interface # NOTE: textblob.wordnet is not imported so that the wordnet corpus can be lazy-loaded _wordnet = nltk.corpus.wordnet basestring = (str, bytes) def _penn_to_wordnet(tag): """Converts a Penn corpus tag into a Wordnet tag.""" if tag in ("NN", "NNS", "NNP", "NNPS"): return _wordnet.NOUN if tag in ("JJ", "JJR", "JJS"): return _wordnet.ADJ if tag in ("VB", "VBD", "VBG", "VBN", "VBP", "VBZ"): return _wordnet.VERB if tag in ("RB", "RBR", "RBS"): return _wordnet.ADV return None class Word(str): """A simple word representation. Includes methods for inflection, and WordNet integration. """ def __new__(cls, string, pos_tag=None): """Return a new instance of the class. It is necessary to override this method in order to handle the extra pos_tag argument in the constructor. """ return super().__new__(cls, string) def __init__(self, string, pos_tag=None): self.string = string self.pos_tag = pos_tag def __repr__(self): return repr(self.string) def __str__(self): return self.string def singularize(self): """Return the singular version of the word as a string.""" return Word(_singularize(self.string)) def pluralize(self): """Return the plural version of the word as a string.""" return Word(_pluralize(self.string)) def spellcheck(self): """Return a list of (word, confidence) tuples of spelling corrections. Based on: Peter Norvig, "How to Write a Spelling Corrector" (http://norvig.com/spell-correct.html) as implemented in the pattern library. .. versionadded:: 0.6.0 """ return suggest(self.string) def correct(self): """Correct the spelling of the word. Returns the word with the highest confidence using the spelling corrector. .. versionadded:: 0.6.0 """ return Word(self.spellcheck()[0][0]) @cached_property @requires_nltk_corpus def lemma(self): """Return the lemma of this word using Wordnet's morphy function.""" return self.lemmatize(pos=self.pos_tag) @requires_nltk_corpus def lemmatize(self, pos=None): """Return the lemma for a word using WordNet's morphy function. :param pos: Part of speech to filter upon. If `None`, defaults to ``_wordnet.NOUN``. .. versionadded:: 0.8.1 """ if pos is None: tag = _wordnet.NOUN elif pos in _wordnet._FILEMAP.keys(): tag = pos else: tag = _penn_to_wordnet(pos) lemmatizer = nltk.stem.WordNetLemmatizer() return lemmatizer.lemmatize(self.string, tag) PorterStemmer = nltk.stem.PorterStemmer() LancasterStemmer = nltk.stem.LancasterStemmer() SnowballStemmer = nltk.stem.SnowballStemmer("english") # added 'stemmer' on lines of lemmatizer # based on nltk def stem(self, stemmer=PorterStemmer): """Stem a word using various NLTK stemmers. (Default: Porter Stemmer) .. versionadded:: 0.12.0 """ return stemmer.stem(self.string) @cached_property def synsets(self): """The list of Synset objects for this Word. :rtype: list of Synsets .. versionadded:: 0.7.0 """ return self.get_synsets(pos=None) @cached_property def definitions(self): """The list of definitions for this word. Each definition corresponds to a synset. .. versionadded:: 0.7.0 """ return self.define(pos=None) def get_synsets(self, pos=None): """Return a list of Synset objects for this word. :param pos: A part-of-speech tag to filter upon. If ``None``, all synsets for all parts of speech will be loaded. :rtype: list of Synsets .. versionadded:: 0.7.0 """ return _wordnet.synsets(self.string, pos) def define(self, pos=None): """Return a list of definitions for this word. Each definition corresponds to a synset for this word. :param pos: A part-of-speech tag to filter upon. If ``None``, definitions for all parts of speech will be loaded. :rtype: List of strings .. versionadded:: 0.7.0 """ return [syn.definition() for syn in self.get_synsets(pos=pos)] class WordList(list): """A list-like collection of words.""" def __init__(self, collection): """Initialize a WordList. Takes a collection of strings as its only argument. """ super().__init__([Word(w) for w in collection]) def __str__(self): """Returns a string representation for printing.""" return super().__repr__() def __repr__(self): """Returns a string representation for debugging.""" class_name = self.__class__.__name__ return f"{class_name}({super().__repr__()})" def __getitem__(self, key): """Returns a string at the given index.""" item = super().__getitem__(key) if isinstance(key, slice): return self.__class__(item) else: return item def __getslice__(self, i, j): # This is included for Python 2.* compatibility return self.__class__(super().__getslice__(i, j)) def __setitem__(self, index, obj): """Places object at given index, replacing existing item. If the object is a string, inserts a :class:`Word ` object. """ if isinstance(obj, basestring): super().__setitem__(index, Word(obj)) else: super().__setitem__(index, obj) def count(self, strg, case_sensitive=False, *args, **kwargs): """Get the count of a word or phrase `s` within this WordList. :param strg: The string to count. :param case_sensitive: A boolean, whether or not the search is case-sensitive. """ if not case_sensitive: return [word.lower() for word in self].count(strg.lower(), *args, **kwargs) return super().count(strg, *args, **kwargs) def append(self, obj): """Append an object to end. If the object is a string, appends a :class:`Word ` object. """ if isinstance(obj, basestring): super().append(Word(obj)) else: super().append(obj) def extend(self, iterable): """Extend WordList by appending elements from ``iterable``. If an element is a string, appends a :class:`Word ` object. """ for e in iterable: self.append(e) def upper(self): """Return a new WordList with each word upper-cased.""" return self.__class__([word.upper() for word in self]) def lower(self): """Return a new WordList with each word lower-cased.""" return self.__class__([word.lower() for word in self]) def singularize(self): """Return the single version of each word in this WordList.""" return self.__class__([word.singularize() for word in self]) def pluralize(self): """Return the plural version of each word in this WordList.""" return self.__class__([word.pluralize() for word in self]) def lemmatize(self): """Return the lemma of each word in this WordList.""" return self.__class__([word.lemmatize() for word in self]) def stem(self, *args, **kwargs): """Return the stem for each word in this WordList.""" return self.__class__([word.stem(*args, **kwargs) for word in self]) def _validated_param(obj, name, base_class, default, base_class_name=None): """Validates a parameter passed to __init__. Makes sure that obj is the correct class. Return obj if it's not None or falls back to default :param obj: The object passed in. :param name: The name of the parameter. :param base_class: The class that obj must inherit from. :param default: The default object to fall back upon if obj is None. """ base_class_name = base_class_name if base_class_name else base_class.__name__ if obj is not None and not isinstance(obj, base_class): raise ValueError(f"{name} must be an instance of {base_class_name}") return obj or default def _initialize_models( obj, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier ): """Common initialization between BaseBlob and Blobber classes.""" # tokenizer may be a textblob or an NLTK tokenizer obj.tokenizer = _validated_param( tokenizer, "tokenizer", base_class=(BaseTokenizer, nltk.tokenize.api.TokenizerI), # pyright: ignore default=BaseBlob.tokenizer, base_class_name="BaseTokenizer", ) obj.np_extractor = _validated_param( np_extractor, "np_extractor", base_class=BaseNPExtractor, default=BaseBlob.np_extractor, ) obj.pos_tagger = _validated_param( pos_tagger, "pos_tagger", BaseTagger, BaseBlob.pos_tagger ) obj.analyzer = _validated_param( analyzer, "analyzer", BaseSentimentAnalyzer, BaseBlob.analyzer ) obj.parser = _validated_param(parser, "parser", BaseParser, BaseBlob.parser) obj.classifier = classifier class BaseBlob(StringlikeMixin, BlobComparableMixin): """An abstract base class that all textblob classes will inherit from. Includes words, POS tag, NP, and word count properties. Also includes basic dunder and string methods for making objects like Python strings. :param text: A string. :param tokenizer: (optional) A tokenizer instance. If ``None``, defaults to :class:`WordTokenizer() `. :param np_extractor: (optional) An NPExtractor instance. If ``None``, defaults to :class:`FastNPExtractor() `. :param pos_tagger: (optional) A Tagger instance. If ``None``, defaults to :class:`NLTKTagger `. :param analyzer: (optional) A sentiment analyzer. If ``None``, defaults to :class:`PatternAnalyzer `. :param parser: A parser. If ``None``, defaults to :class:`PatternParser `. :param classifier: A classifier. .. versionchanged:: 0.6.0 ``clean_html`` parameter deprecated, as it was in NLTK. """ # noqa: E501 np_extractor = FastNPExtractor() pos_tagger = NLTKTagger() tokenizer = WordTokenizer() analyzer = PatternAnalyzer() parser = PatternParser() def __init__( self, text, tokenizer=None, pos_tagger=None, np_extractor=None, analyzer=None, parser=None, classifier=None, clean_html=False, ): if not isinstance(text, basestring): raise TypeError( "The `text` argument passed to `__init__(text)` " f"must be a string, not {type(text)}" ) if clean_html: raise NotImplementedError( "clean_html has been deprecated. " "To remove HTML markup, use BeautifulSoup's " "get_text() function" ) self.raw = self.string = text self.stripped = lowerstrip(self.raw, all=True) _initialize_models( self, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier ) @cached_property def words(self): """Return a list of word tokens. This excludes punctuation characters. If you want to include punctuation characters, access the ``tokens`` property. :returns: A :class:`WordList ` of word tokens. """ return WordList(word_tokenize(self.raw, include_punc=False)) @cached_property def tokens(self): """Return a list of tokens, using this blob's tokenizer object (defaults to :class:`WordTokenizer `). """ return WordList(self.tokenizer.tokenize(self.raw)) def tokenize(self, tokenizer=None): """Return a list of tokens, using ``tokenizer``. :param tokenizer: (optional) A tokenizer object. If None, defaults to this blob's default tokenizer. """ t = tokenizer if tokenizer is not None else self.tokenizer return WordList(t.tokenize(self.raw)) def parse(self, parser=None): """Parse the text. :param parser: (optional) A parser instance. If ``None``, defaults to this blob's default parser. .. versionadded:: 0.6.0 """ p = parser if parser is not None else self.parser return p.parse(self.raw) def classify(self): """Classify the blob using the blob's ``classifier``.""" if self.classifier is None: raise NameError("This blob has no classifier. Train one first!") return self.classifier.classify(self.raw) @cached_property def sentiment(self): """Return a tuple of form (polarity, subjectivity ) where polarity is a float within the range [-1.0, 1.0] and subjectivity is a float within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is very subjective. :rtype: namedtuple of the form ``Sentiment(polarity, subjectivity)`` """ return self.analyzer.analyze(self.raw) @cached_property def sentiment_assessments(self): """Return a tuple of form (polarity, subjectivity, assessments ) where polarity is a float within the range [-1.0, 1.0], subjectivity is a float within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is very subjective, and assessments is a list of polarity and subjectivity scores for the assessed tokens. :rtype: namedtuple of the form ``Sentiment(polarity, subjectivity, assessments)`` """ return self.analyzer.analyze(self.raw, keep_assessments=True) @cached_property def polarity(self): """Return the polarity score as a float within the range [-1.0, 1.0] :rtype: float """ return PatternAnalyzer().analyze(self.raw)[0] @cached_property def subjectivity(self): """Return the subjectivity score as a float within the range [0.0, 1.0] where 0.0 is very objective and 1.0 is very subjective. :rtype: float """ return PatternAnalyzer().analyze(self.raw)[1] @cached_property def noun_phrases(self): """Returns a list of noun phrases for this blob.""" return WordList( [ phrase.strip().lower() for phrase in self.np_extractor.extract(self.raw) if len(phrase) > 1 ] ) @cached_property def pos_tags(self): """Returns an list of tuples of the form (word, POS tag). Example: :: [ ("At", "IN"), ("eight", "CD"), ("o'clock", "JJ"), ("on", "IN"), ("Thursday", "NNP"), ("morning", "NN"), ] :rtype: list of tuples """ if isinstance(self, TextBlob): return [ val for sublist in [s.pos_tags for s in self.sentences] for val in sublist ] else: return [ (Word(str(word), pos_tag=t), str(t)) for word, t in self.pos_tagger.tag(self) if not PUNCTUATION_REGEX.match(str(t)) ] tags = pos_tags @cached_property def word_counts(self): """Dictionary of word frequencies in this text.""" counts = defaultdict(int) stripped_words = [lowerstrip(word) for word in self.words] for word in stripped_words: counts[word] += 1 return counts @cached_property def np_counts(self): """Dictionary of noun phrase frequencies in this text.""" counts = defaultdict(int) for phrase in self.noun_phrases: counts[phrase] += 1 return counts def ngrams(self, n=3): """Return a list of n-grams (tuples of n successive words) for this blob. :rtype: List of :class:`WordLists ` """ if n <= 0: return [] grams = [ WordList(self.words[i : i + n]) for i in range(len(self.words) - n + 1) ] return grams def correct(self): """Attempt to correct the spelling of a blob. .. versionadded:: 0.6.0 :rtype: :class:`BaseBlob ` """ # regex matches: word or punctuation or whitespace tokens = nltk.tokenize.regexp_tokenize(self.raw, r"\w+|[^\w\s]|\s") corrected = (Word(w).correct() for w in tokens) ret = "".join(corrected) return self.__class__(ret) def _cmpkey(self): """Key used by ComparableMixin to implement all rich comparison operators. """ return self.raw def _strkey(self): """Key used by StringlikeMixin to implement string methods.""" return self.raw def __hash__(self): return hash(self._cmpkey()) def __add__(self, other): """Concatenates two text objects the same way Python strings are concatenated. Arguments: - `other`: a string or a text object """ if isinstance(other, basestring): return self.__class__(self.raw + other) elif isinstance(other, BaseBlob): return self.__class__(self.raw + other.raw) else: raise TypeError( f"Operands must be either strings or {self.__class__.__name__} objects" ) def split(self, sep=None, maxsplit=sys.maxsize): """Behaves like the built-in str.split() except returns a WordList. :rtype: :class:`WordList ` """ return WordList(self._strkey().split(sep, maxsplit)) class TextBlob(BaseBlob): """A general text block, meant for larger bodies of text (esp. those containing sentences). Inherits from :class:`BaseBlob `. :param str text: A string. :param tokenizer: (optional) A tokenizer instance. If ``None``, defaults to :class:`WordTokenizer() `. :param np_extractor: (optional) An NPExtractor instance. If ``None``, defaults to :class:`FastNPExtractor() `. :param pos_tagger: (optional) A Tagger instance. If ``None``, defaults to :class:`NLTKTagger `. :param analyzer: (optional) A sentiment analyzer. If ``None``, defaults to :class:`PatternAnalyzer `. :param classifier: (optional) A classifier. """ # noqa: E501 @cached_property def sentences(self): """Return list of :class:`Sentence ` objects.""" return self._create_sentence_objects() @cached_property def words(self): """Return a list of word tokens. This excludes punctuation characters. If you want to include punctuation characters, access the ``tokens`` property. :returns: A :class:`WordList ` of word tokens. """ return WordList(word_tokenize(self.raw, include_punc=False)) @property def raw_sentences(self): """List of strings, the raw sentences in the blob.""" return [sentence.raw for sentence in self.sentences] @property def serialized(self): """Returns a list of each sentence's dict representation.""" return [sentence.dict for sentence in self.sentences] def to_json(self, *args, **kwargs): """Return a json representation (str) of this blob. Takes the same arguments as json.dumps. .. versionadded:: 0.5.1 """ return json.dumps(self.serialized, *args, **kwargs) @property def json(self): """The json representation of this blob. .. versionchanged:: 0.5.1 Made ``json`` a property instead of a method to restore backwards compatibility that was broken after version 0.4.0. """ return self.to_json() def _create_sentence_objects(self): """Returns a list of Sentence objects from the raw text.""" sentence_objects = [] sentences = sent_tokenize(self.raw) char_index = 0 # Keeps track of character index within the blob for sent in sentences: # Compute the start and end indices of the sentence # within the blob start_index = self.raw.index(sent, char_index) char_index += len(sent) end_index = start_index + len(sent) # Sentences share the same models as their parent blob s = Sentence( sent, start_index=start_index, end_index=end_index, tokenizer=self.tokenizer, np_extractor=self.np_extractor, pos_tagger=self.pos_tagger, analyzer=self.analyzer, parser=self.parser, classifier=self.classifier, ) sentence_objects.append(s) return sentence_objects class Sentence(BaseBlob): """A sentence within a TextBlob. Inherits from :class:`BaseBlob `. :param sentence: A string, the raw sentence. :param start_index: An int, the index where this sentence begins in a TextBlob. If not given, defaults to 0. :param end_index: An int, the index where this sentence ends in a TextBlob. If not given, defaults to the length of the sentence - 1. """ def __init__(self, sentence, start_index=0, end_index=None, *args, **kwargs): super().__init__(sentence, *args, **kwargs) #: The start index within a TextBlob self.start = self.start_index = start_index #: The end index within a textBlob self.end = self.end_index = end_index or len(sentence) - 1 @property def dict(self): """The dict representation of this sentence.""" return { "raw": self.raw, "start_index": self.start_index, "end_index": self.end_index, "stripped": self.stripped, "noun_phrases": self.noun_phrases, "polarity": self.polarity, "subjectivity": self.subjectivity, } class Blobber: """A factory for TextBlobs that all share the same tagger, tokenizer, parser, classifier, and np_extractor. Usage: >>> from textblob import Blobber >>> from textblob.taggers import NLTKTagger >>> from textblob.tokenizers import SentenceTokenizer >>> tb = Blobber(pos_tagger=NLTKTagger(), tokenizer=SentenceTokenizer()) >>> blob1 = tb("This is one blob.") >>> blob2 = tb("This blob has the same tagger and tokenizer.") >>> blob1.pos_tagger is blob2.pos_tagger True :param tokenizer: (optional) A tokenizer instance. If ``None``, defaults to :class:`WordTokenizer() `. :param np_extractor: (optional) An NPExtractor instance. If ``None``, defaults to :class:`FastNPExtractor() `. :param pos_tagger: (optional) A Tagger instance. If ``None``, defaults to :class:`NLTKTagger `. :param analyzer: (optional) A sentiment analyzer. If ``None``, defaults to :class:`PatternAnalyzer `. :param parser: A parser. If ``None``, defaults to :class:`PatternParser `. :param classifier: A classifier. .. versionadded:: 0.4.0 """ # noqa: E501 np_extractor = FastNPExtractor() pos_tagger = NLTKTagger() tokenizer = WordTokenizer() analyzer = PatternAnalyzer() parser = PatternParser() def __init__( self, tokenizer=None, pos_tagger=None, np_extractor=None, analyzer=None, parser=None, classifier=None, ): _initialize_models( self, tokenizer, pos_tagger, np_extractor, analyzer, parser, classifier ) def __call__(self, text): """Return a new TextBlob object with this Blobber's ``np_extractor``, ``pos_tagger``, ``tokenizer``, ``analyzer``, and ``classifier``. :returns: A new :class:`TextBlob `. """ return TextBlob( text, tokenizer=self.tokenizer, pos_tagger=self.pos_tagger, np_extractor=self.np_extractor, analyzer=self.analyzer, parser=self.parser, classifier=self.classifier, ) def __repr__(self): classifier_name = ( self.classifier.__class__.__name__ + "()" if self.classifier else "None" ) return ( f"Blobber(tokenizer={self.tokenizer.__class__.__name__}(), " f"pos_tagger={self.pos_tagger.__class__.__name__}(), " f"np_extractor={self.np_extractor.__class__.__name__}(), " f"analyzer={self.analyzer.__class__.__name__}(), " f"parser={self.parser.__class__.__name__}(), " f"classifier={classifier_name})" ) __str__ = __repr__ ================================================ FILE: src/textblob/classifiers.py ================================================ """Various classifier implementations. Also includes basic feature extractor methods. Example Usage: :: >>> from textblob import TextBlob >>> from textblob.classifiers import NaiveBayesClassifier >>> train = [ ... ('I love this sandwich.', 'pos'), ... ('This is an amazing place!', 'pos'), ... ('I feel very good about these beers.', 'pos'), ... ('I do not like this restaurant', 'neg'), ... ('I am tired of this stuff.', 'neg'), ... ("I can't deal with this", 'neg'), ... ("My boss is horrible.", "neg") ... ] >>> cl = NaiveBayesClassifier(train) >>> cl.classify("I feel amazing!") 'pos' >>> blob = TextBlob("The beer is good. But the hangover is horrible.", classifier=cl) >>> for s in blob.sentences: ... print(s) ... print(s.classify()) ... The beer is good. pos But the hangover is horrible. neg .. versionadded:: 0.6.0 """ # noqa: E501 from itertools import chain import nltk import textblob.formats as formats from textblob.decorators import cached_property from textblob.exceptions import FormatError from textblob.tokenizers import word_tokenize from textblob.utils import is_filelike, strip_punc basestring = (str, bytes) ### Basic feature extractors ### def _get_words_from_dataset(dataset): """Return a set of all words in a dataset. :param dataset: A list of tuples of the form ``(words, label)`` where ``words`` is either a string of a list of tokens. """ # Words may be either a string or a list of tokens. Return an iterator # of tokens accordingly def tokenize(words): if isinstance(words, basestring): return word_tokenize(words, include_punc=False) else: return words all_words = chain.from_iterable(tokenize(words) for words, _ in dataset) return set(all_words) def _get_document_tokens(document): if isinstance(document, basestring): tokens = set( strip_punc(w, all=False) for w in word_tokenize(document, include_punc=False) ) else: tokens = set(strip_punc(w, all=False) for w in document) return tokens def basic_extractor(document, train_set): """A basic document feature extractor that returns a dict indicating what words in ``train_set`` are contained in ``document``. :param document: The text to extract features from. Can be a string or an iterable. :param list train_set: Training data set, a list of tuples of the form ``(words, label)`` OR an iterable of strings. """ try: el_zero = next(iter(train_set)) # Infer input from first element. except StopIteration: return {} if isinstance(el_zero, basestring): word_features = [w for w in chain([el_zero], train_set)] else: try: assert isinstance(el_zero[0], basestring) word_features = _get_words_from_dataset(chain([el_zero], train_set)) except Exception as error: raise ValueError("train_set is probably malformed.") from error tokens = _get_document_tokens(document) features = dict((f"contains({word})", (word in tokens)) for word in word_features) return features def contains_extractor(document): """A basic document feature extractor that returns a dict of words that the document contains. """ tokens = _get_document_tokens(document) features = dict((f"contains({w})", True) for w in tokens) return features ##### CLASSIFIERS ##### class BaseClassifier: """Abstract classifier class from which all classifers inherit. At a minimum, descendant classes must implement a ``classify`` method and have a ``classifier`` property. :param train_set: The training set, either a list of tuples of the form ``(text, classification)`` or a file-like object. ``text`` may be either a string or an iterable. :param callable feature_extractor: A feature extractor function that takes one or two arguments: ``document`` and ``train_set``. :param str format: If ``train_set`` is a filename, the file format, e.g. ``"csv"`` or ``"json"``. If ``None``, will attempt to detect the file format. :param kwargs: Additional keyword arguments are passed to the constructor of the :class:`Format ` class used to read the data. Only applies when a file-like object is passed as ``train_set``. .. versionadded:: 0.6.0 """ def __init__( self, train_set, feature_extractor=basic_extractor, format=None, **kwargs ): self.format_kwargs = kwargs self.feature_extractor = feature_extractor if is_filelike(train_set): self.train_set = self._read_data(train_set, format) else: # train_set is a list of tuples self.train_set = train_set self._word_set = _get_words_from_dataset( self.train_set ) # Keep a hidden set of unique words. self.train_features = None def _read_data(self, dataset, format=None): """Reads a data file and returns an iterable that can be used as testing or training data. """ # Attempt to detect file format if "format" isn't specified if not format: format_class = formats.detect(dataset) if not format_class: raise FormatError( "Could not automatically detect format for the given data source." ) else: registry = formats.get_registry() if format not in registry.keys(): raise ValueError(f"'{format}' format not supported.") format_class = registry[format] return format_class(dataset, **self.format_kwargs).to_iterable() @cached_property def classifier(self): """The classifier object.""" raise NotImplementedError('Must implement the "classifier" property.') def classify(self, text): """Classifies a string of text.""" raise NotImplementedError('Must implement a "classify" method.') def train(self, labeled_featureset): """Trains the classifier.""" raise NotImplementedError('Must implement a "train" method.') def labels(self): """Returns an iterable containing the possible labels.""" raise NotImplementedError('Must implement a "labels" method.') def extract_features(self, text): """Extracts features from a body of text. :rtype: dictionary of features """ # Feature extractor may take one or two arguments try: return self.feature_extractor(text, self._word_set) except (TypeError, AttributeError): return self.feature_extractor(text) class NLTKClassifier(BaseClassifier): """An abstract class that wraps around the nltk.classify module. Expects that descendant classes include a class variable ``nltk_class`` which is the class in the nltk.classify module to be wrapped. Example: :: class MyClassifier(NLTKClassifier): nltk_class = nltk.classify.svm.SvmClassifier """ #: The NLTK class to be wrapped. Must be a class within nltk.classify nltk_class = None def __init__( self, train_set, feature_extractor=basic_extractor, format=None, **kwargs ): super().__init__(train_set, feature_extractor, format, **kwargs) self.train_features = [(self.extract_features(d), c) for d, c in self.train_set] def __repr__(self): class_name = self.__class__.__name__ return f"<{class_name} trained on {len(self.train_set)} instances>" @cached_property def classifier(self): """The classifier.""" try: return self.train() except AttributeError as error: # nltk_class has not been defined raise ValueError( "NLTKClassifier must have a nltk_class variable that is not None." ) from error def train(self, *args, **kwargs): """Train the classifier with a labeled feature set and return the classifier. Takes the same arguments as the wrapped NLTK class. This method is implicitly called when calling ``classify`` or ``accuracy`` methods and is included only to allow passing in arguments to the ``train`` method of the wrapped NLTK class. .. versionadded:: 0.6.2 :rtype: A classifier """ try: self.classifier = self.nltk_class.train( self.train_features, *args, **kwargs ) return self.classifier except AttributeError as error: raise ValueError( "NLTKClassifier must have a nltk_class variable that is not None." ) from error def labels(self): """Return an iterable of possible labels.""" return self.classifier.labels() def classify(self, text): """Classifies the text. :param str text: A string of text. """ text_features = self.extract_features(text) return self.classifier.classify(text_features) def accuracy(self, test_set, format=None): """Compute the accuracy on a test set. :param test_set: A list of tuples of the form ``(text, label)``, or a file pointer. :param format: If ``test_set`` is a filename, the file format, e.g. ``"csv"`` or ``"json"``. If ``None``, will attempt to detect the file format. """ if is_filelike(test_set): test_data = self._read_data(test_set, format) else: # test_set is a list of tuples test_data = test_set test_features = [(self.extract_features(d), c) for d, c in test_data] return nltk.classify.accuracy(self.classifier, test_features) def update(self, new_data, *args, **kwargs): """Update the classifier with new training data and re-trains the classifier. :param new_data: New data as a list of tuples of the form ``(text, label)``. """ self.train_set += new_data self._word_set.update(_get_words_from_dataset(new_data)) self.train_features = [(self.extract_features(d), c) for d, c in self.train_set] try: self.classifier = self.nltk_class.train( self.train_features, *args, **kwargs ) except AttributeError as error: # Descendant has not defined nltk_class raise ValueError( "NLTKClassifier must have a nltk_class variable that is not None." ) from error return True class NaiveBayesClassifier(NLTKClassifier): """A classifier based on the Naive Bayes algorithm, as implemented in NLTK. :param train_set: The training set, either a list of tuples of the form ``(text, classification)`` or a filename. ``text`` may be either a string or an iterable. :param feature_extractor: A feature extractor function that takes one or two arguments: ``document`` and ``train_set``. :param format: If ``train_set`` is a filename, the file format, e.g. ``"csv"`` or ``"json"``. If ``None``, will attempt to detect the file format. .. versionadded:: 0.6.0 """ nltk_class = nltk.classify.NaiveBayesClassifier def prob_classify(self, text): """Return the label probability distribution for classifying a string of text. Example: :: >>> classifier = NaiveBayesClassifier(train_data) >>> prob_dist = classifier.prob_classify("I feel happy this morning.") >>> prob_dist.max() 'positive' >>> prob_dist.prob("positive") 0.7 :rtype: nltk.probability.DictionaryProbDist """ text_features = self.extract_features(text) return self.classifier.prob_classify(text_features) def informative_features(self, *args, **kwargs): """Return the most informative features as a list of tuples of the form ``(feature_name, feature_value)``. :rtype: list """ return self.classifier.most_informative_features(*args, **kwargs) def show_informative_features(self, *args, **kwargs): """Displays a listing of the most informative features for this classifier. :rtype: None """ return self.classifier.show_most_informative_features(*args, **kwargs) class DecisionTreeClassifier(NLTKClassifier): """A classifier based on the decision tree algorithm, as implemented in NLTK. :param train_set: The training set, either a list of tuples of the form ``(text, classification)`` or a filename. ``text`` may be either a string or an iterable. :param feature_extractor: A feature extractor function that takes one or two arguments: ``document`` and ``train_set``. :param format: If ``train_set`` is a filename, the file format, e.g. ``"csv"`` or ``"json"``. If ``None``, will attempt to detect the file format. .. versionadded:: 0.6.2 """ nltk_class = nltk.classify.decisiontree.DecisionTreeClassifier def pretty_format(self, *args, **kwargs): """Return a string containing a pretty-printed version of this decision tree. Each line in the string corresponds to a single decision tree node or leaf, and indentation is used to display the structure of the tree. :rtype: str """ return self.classifier.pretty_format(*args, **kwargs) # Backwards-compat pprint = pretty_format def pseudocode(self, *args, **kwargs): """Return a string representation of this decision tree that expresses the decisions it makes as a nested set of pseudocode if statements. :rtype: str """ return self.classifier.pseudocode(*args, **kwargs) class PositiveNaiveBayesClassifier(NLTKClassifier): """A variant of the Naive Bayes Classifier that performs binary classification with partially-labeled training sets, i.e. when only one class is labeled and the other is not. Assuming a prior distribution on the two labels, uses the unlabeled set to estimate the frequencies of the features. Example usage: :: >>> from text.classifiers import PositiveNaiveBayesClassifier >>> sports_sentences = ['The team dominated the game', ... 'They lost the ball', ... 'The game was intense', ... 'The goalkeeper catched the ball', ... 'The other team controlled the ball'] >>> various_sentences = ['The President did not comment', ... 'I lost the keys', ... 'The team won the game', ... 'Sara has two kids', ... 'The ball went off the court', ... 'They had the ball for the whole game', ... 'The show is over'] >>> classifier = PositiveNaiveBayesClassifier(positive_set=sports_sentences, ... unlabeled_set=various_sentences) >>> classifier.classify("My team lost the game") True >>> classifier.classify("And now for something completely different.") False :param positive_set: A collection of strings that have the positive label. :param unlabeled_set: A collection of unlabeled strings. :param feature_extractor: A feature extractor function. :param positive_prob_prior: A prior estimate of the probability of the label ``True``. .. versionadded:: 0.7.0 """ nltk_class = nltk.classify.PositiveNaiveBayesClassifier def __init__( self, positive_set, unlabeled_set, feature_extractor=contains_extractor, positive_prob_prior=0.5, **kwargs, ): self.feature_extractor = feature_extractor self.positive_set = positive_set self.unlabeled_set = unlabeled_set self.positive_features = [self.extract_features(d) for d in self.positive_set] self.unlabeled_features = [self.extract_features(d) for d in self.unlabeled_set] self.positive_prob_prior = positive_prob_prior def __repr__(self): class_name = self.__class__.__name__ return ( f"<{class_name} trained on {len(self.positive_set)} labeled " f"and {len(self.unlabeled_set)} unlabeled instances>" ) # Override def train(self, *args, **kwargs): """Train the classifier with a labeled and unlabeled feature sets and return the classifier. Takes the same arguments as the wrapped NLTK class. This method is implicitly called when calling ``classify`` or ``accuracy`` methods and is included only to allow passing in arguments to the ``train`` method of the wrapped NLTK class. :rtype: A classifier """ self.classifier = self.nltk_class.train( self.positive_features, self.unlabeled_features, self.positive_prob_prior ) return self.classifier def update( self, new_positive_data=None, new_unlabeled_data=None, positive_prob_prior=0.5, *args, **kwargs, ): """Update the classifier with new data and re-trains the classifier. :param new_positive_data: List of new, labeled strings. :param new_unlabeled_data: List of new, unlabeled strings. """ self.positive_prob_prior = positive_prob_prior if new_positive_data: self.positive_set += new_positive_data self.positive_features += [ self.extract_features(d) for d in new_positive_data ] if new_unlabeled_data: self.unlabeled_set += new_unlabeled_data self.unlabeled_features += [ self.extract_features(d) for d in new_unlabeled_data ] self.classifier = self.nltk_class.train( self.positive_features, self.unlabeled_features, self.positive_prob_prior, *args, **kwargs, ) return True class MaxEntClassifier(NLTKClassifier): __doc__ = nltk.classify.MaxentClassifier.__doc__ nltk_class = nltk.classify.MaxentClassifier def prob_classify(self, text): """Return the label probability distribution for classifying a string of text. Example: :: >>> classifier = MaxEntClassifier(train_data) >>> prob_dist = classifier.prob_classify("I feel happy this morning.") >>> prob_dist.max() 'positive' >>> prob_dist.prob("positive") 0.7 :rtype: nltk.probability.DictionaryProbDist """ feats = self.extract_features(text) return self.classifier.prob_classify(feats) ================================================ FILE: src/textblob/decorators.py ================================================ """Custom decorators.""" from __future__ import annotations from functools import wraps from typing import TYPE_CHECKING from textblob.exceptions import MissingCorpusError if TYPE_CHECKING: from collections.abc import Callable from typing import TypeVar ReturnType = TypeVar("ReturnType") class cached_property: """A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property. Credit to Marcel Hellkamp, author of bottle.py. """ def __init__(self, func): self.__doc__ = func.__doc__ self.func = func def __get__(self, obj, cls): if obj is None: return self value = obj.__dict__[self.func.__name__] = self.func(obj) return value def requires_nltk_corpus( func: Callable[..., ReturnType], ) -> Callable[..., ReturnType]: """Wraps a function that requires an NLTK corpus. If the corpus isn't found, raise a :exc:`MissingCorpusError`. """ @wraps(func) def decorated(*args, **kwargs): try: return func(*args, **kwargs) except LookupError as error: raise MissingCorpusError() from error return decorated ================================================ FILE: src/textblob/download_corpora.py ================================================ #!/usr/bin/env python """Downloads the necessary NLTK corpora for TextBlob. Usage: :: $ python -m textblob.download_corpora If you only intend to use TextBlob's default models, you can use the "lite" option: :: $ python -m textblob.download_corpora lite """ import sys import nltk MIN_CORPORA = [ "brown", # Required for FastNPExtractor "punkt_tab", # Required for WordTokenizer "wordnet", # Required for lemmatization "averaged_perceptron_tagger_eng", # Required for NLTKTagger ] ADDITIONAL_CORPORA = [ "conll2000", # Required for ConllExtractor "movie_reviews", # Required for NaiveBayesAnalyzer ] ALL_CORPORA = MIN_CORPORA + ADDITIONAL_CORPORA def download_lite(): for each in MIN_CORPORA: nltk.download(each) def download_all(): for each in ALL_CORPORA: nltk.download(each) def main(): if "lite" in sys.argv: download_lite() else: download_all() print("Finished.") if __name__ == "__main__": main() ================================================ FILE: src/textblob/en/__init__.py ================================================ """This file is based on pattern.en. See the bundled NOTICE file for license information. """ import os from textblob._text import CHUNK, PENN, PNP, POS, UNIVERSAL, WORD, Lexicon, Spelling from textblob._text import Parser as _Parser from textblob._text import Sentiment as _Sentiment try: MODULE = os.path.dirname(os.path.abspath(__file__)) except: MODULE = "" spelling = Spelling(path=os.path.join(MODULE, "en-spelling.txt")) # --- ENGLISH PARSER -------------------------------------------------------------------------------- def find_lemmata(tokens): """Annotates the tokens with lemmata for plural nouns and conjugated verbs, where each token is a [word, part-of-speech] list. """ for token in tokens: word, pos, lemma = token[0], token[1], token[0] # cats => cat if pos == "NNS": lemma = singularize(word) # sat => sit if pos.startswith(("VB", "MD")): lemma = conjugate(word, INFINITIVE) or word token.append(lemma.lower()) return tokens class Parser(_Parser): def find_lemmata(self, tokens, **kwargs): return find_lemmata(tokens) def find_tags(self, tokens, **kwargs): if kwargs.get("tagset") in (PENN, None): kwargs.setdefault("map", lambda token, tag: (token, tag)) if kwargs.get("tagset") == UNIVERSAL: kwargs.setdefault( "map", lambda token, tag: penntreebank2universal(token, tag) ) return _Parser.find_tags(self, tokens, **kwargs) class Sentiment(_Sentiment): def load(self, path=None): _Sentiment.load(self, path) # Map "terrible" to adverb "terribly" (+1% accuracy) if not path: for w, pos in list(dict.items(self)): if "JJ" in pos: if w.endswith("y"): w = w[:-1] + "i" if w.endswith("le"): w = w[:-2] p, s, i = pos["JJ"] self.annotate(w + "ly", "RB", p, s, i) lexicon = Lexicon( path=os.path.join(MODULE, "en-lexicon.txt"), morphology=os.path.join(MODULE, "en-morphology.txt"), context=os.path.join(MODULE, "en-context.txt"), entities=os.path.join(MODULE, "en-entities.txt"), language="en", ) parser = Parser(lexicon=lexicon, default=("NN", "NNP", "CD"), language="en") sentiment = Sentiment( path=os.path.join(MODULE, "en-sentiment.xml"), synset="wordnet_id", negations=("no", "not", "n't", "never"), modifiers=("RB",), modifier=lambda w: w.endswith("ly"), tokenizer=parser.find_tokens, language="en", ) def tokenize(s, *args, **kwargs): """Returns a list of sentences, where punctuation marks have been split from words.""" return parser.find_tokens(str(s), *args, **kwargs) def parse(s, *args, **kwargs): """Returns a tagged str string.""" return parser.parse(str(s), *args, **kwargs) def parsetree(s, *args, **kwargs): """Returns a parsed Text from the given string.""" return Text(parse(str(s), *args, **kwargs)) def split(s, token=None): """Returns a parsed Text from the given parsed string.""" if token is None: token = [WORD, POS, CHUNK, PNP] return Text(str(s), token) def tag(s, tokenize=True, encoding="utf-8"): """Returns a list of (token, tag)-tuples from the given string.""" tags = [] for sentence in parse(s, tokenize, True, False, False, False, encoding).split(): for token in sentence: tags.append((token[0], token[1])) return tags def suggest(w): """Returns a list of (word, confidence)-tuples of spelling corrections.""" return spelling.suggest(w) def polarity(s, **kwargs): """Returns the sentence polarity (positive/negative) between -1.0 and 1.0.""" return sentiment(str(s), **kwargs)[0] def subjectivity(s, **kwargs): """Returns the sentence subjectivity (objective/subjective) between 0.0 and 1.0.""" return sentiment(str(s), **kwargs)[1] def positive(s, threshold=0.1, **kwargs): """Returns True if the given sentence has a positive sentiment (polarity >= threshold).""" return polarity(str(s), **kwargs) >= threshold ================================================ FILE: src/textblob/en/en-context.txt ================================================ ;;; ;;; The contextual rules are based on Brill's rule based tagger v1.14, ;;; trained on Brown corpus and Penn Treebank. ;;; IN VB PREVTAG PRP NN VB PREVTAG TO VBP VB PREV1OR2OR3TAG MD NN VB PREV1OR2TAG MD VB NN PREV1OR2TAG DT VBD VBN PREV1OR2OR3TAG VBZ VBN VBD PREVTAG PRP VBN VBD PREVTAG NNP VBD VBN PREVTAG VBD VBP VB PREVTAG TO POS VBZ PREVTAG PRP VB VBP PREVTAG NNS IN RB WDAND2AFT as as VBD VBN PREV1OR2WD have IN WDT NEXT1OR2TAG VB VB VBP PREVTAG PRP VBP VB PREV1OR2WD n't IN WDT NEXTTAG VBZ JJ NNP NEXTTAG NNP IN WDT NEXTTAG VBD JJ NN NEXTWD of VBD VBN PREV1OR2WD be JJR RBR NEXTTAG JJ IN WDT NEXTTAG VBP JJS RBS WDNEXTTAG most JJ VBN VBD SURROUNDTAG NN DT NNS VBZ PREVTAG PRP POS VBZ NEXT1OR2TAG DT NNP NN SURROUNDTAG STAART NNS VBD VBN NEXTWD by VB NN PREV1OR2TAG IN VB VBP PREVTAG WDT VBG NN PREVTAG JJ NNS VBZ NEXTTAG DT VBN VBD PREVTAG WP NN VBP PREVTAG NNS VB NN PREVTAG NN NN VB PREVWD n't NN VBG NEXTTAG DT RB JJ NEXTTAG NN NN VBP PREVTAG PRP VBN VBD SURROUNDTAG NNS DT VB NN PREV1OR2TAG POS JJ NN NEXTTAG VBD RB RP WDNEXTTAG up DT JJ VB PREVTAG TO VBN VBD SURROUNDTAG , DT VBN VBD PREVWD that VB VBP PREVBIGRAM NNS RB NNP JJ SURROUNDTAG STAART NN VB VBN PREVTAG VBZ NNP JJ WDNEXTTAG American NNS JJ RB NEXTTAG JJR NNS NN CURWD yen IN WDT NEXTTAG VBD DT IN WDAND2TAGAFT that NNS POS VBZ PREVWD that JJ VB PREVTAG MD VB NN PREVTAG JJ JJR RBR NEXTTAG RB VBD VBN PREV1OR2WD are NN JJ WDNEXTTAG executive NN NNP JJ WDNEXTTAG American NN VBN VBD PREVTAG WDT VBD VBN PREVBIGRAM VBD RB JJ NN SURROUNDTAG DT . NNP JJ NEXTWD German VBN VB PREVTAG TO VBN VBD PREVBIGRAM NNP RB RB IN RBIGRAM up to VB VBP PREVTAG WP JJ NN SURROUNDTAG DT IN IN DT NEXTWD 's VBD VBN WDNEXTTAG ended NNP VBD VBN SURROUNDTAG DT NN NNS NNP NEXTTAG NNP NN NNP NEXTTAG NNP VBG NN SURROUNDTAG DT IN NNP JJ SURROUNDTAG STAART NNS RB RP WDPREVTAG VB up VBN VBD PREVBIGRAM PRP RB JJ RB NEXTTAG VBN NN VBP PREVTAG RB NNS VBZ PREVTAG RB POS VBZ PREVTAG WP VB VBN PREVWD have NN PDT WDNEXTTAG half DT IN WDT NEXTTAG MD POS VBZ PREVTAG DT NN NNP CURWD Integrated POS '' NEXT1OR2TAG '' VBD VBN PREVTAG IN JJR RBR NEXT1OR2TAG VBN JJS RBS WDNEXTTAG most RB JJ NN SURROUNDTAG JJ IN VBZ NNS PREVTAG JJ NNS VBZ WDPREVTAG JJ is JJ NN NEXTTAG VBZ VBP NN PREVTAG DT JJ NN SURROUNDTAG JJ . NNPS NNP NEXTTAG NNP WDT DT PREVTAG CC RB IN WDNEXTTAG so PRP VBP NN PREVWD earnings NN VBG PREVWD is NNS VBZ PREV1OR2WD Mr. VBZ NNS PREVWD the RB RP WDPREVTAG VBN up NNPS NNS PREVTAG STAART VBN VBD SURROUNDTAG NN JJ VBP VB PREV2TAG VB RBR JJR NEXTTAG NNS JJ NN SURROUNDTAG DT , JJ NN SURROUNDTAG IN . NN VB PREVTAG TO VB NN PREVTAG VB NN VBP PREVWD who RB RP WDPREVTAG VBG up NN RB WDNEXTTAG right RB VBZ POS WDPREVTAG NNP 's JJ RP WDNEXTTAG up NN VBN VBD SURROUNDTAG NN NN VBN VBD SURROUNDTAG CC DT JJ NN NEXTBIGRAM MD VB JJ RB WDNEXTTAG early IN JJ VBN SURROUNDTAG STAART IN IN RB RBIGRAM though , VBD VBN PREV1OR2WD been DT PDT WDNEXTTAG all DT VBN VBD PREVBIGRAM NN RB NN VB PREVWD help VBP VB PREV1OR2WD not VBP NN PREVTAG JJ DT WDT PREVTAG NNS NN VBP PREVTAG WDT VB RB RBIGRAM close to NNS VBZ PREVBIGRAM , WDT IN RP WDNEXTTAG out DT DT RB NEXTWD longer IN JJ SURROUNDTAG DT NN DT WDT SURROUNDTAG NN VBZ IN VB NEXT2TAG VB IN NN PREVTAG DT VBN VBD SURROUNDTAG NNS NNS IN RB RBIGRAM about $ EX RB NEXT1OR2TAG IN NN VBG NEXTTAG PRP$ NN VBG CURWD living VBZ NNS PREVTAG PRP$ RBR JJR NEXTTAG NN RBR JJR CURWD higher VB VBP PREVBIGRAM PRP RB NN VB PREVTAG MD VB NN PREV1OR2TAG PRP$ RP IN PREV1OR2TAG , VB JJ PREVTAG DT DT IN PREVWD out POS VBZ PREVTAG EX JJ NN NEXTTAG POS NN JJ CURWD first VBD VBN PREVWD the NNS VBZ WDPREVTAG NNP plans NNP NNS SURROUNDTAG STAART IN RB JJ NEXTTAG NNS JJ RB CURWD just VBP NN PREVWD sales NNS NNPS PREVWD Orange VB VBN PREVTAG VBD WDT DT PREVTAG IN NN JJ WDNEXTTAG right NN NN VBG WDNEXTTAG operating IN JJ VBN CURWD insured JJ NNP LBIGRAM STAART U.S. IN DT NEXTTAG STAART POS '' PREV1OR2OR3TAG `` NN JJ WDNEXTTAG official NN NNP JJ CURWD Irish JJ RB NEXTTAG RBR VBG NN WDPREVTAG DT selling VBP VB PREV1OR2OR3TAG MD WDT IN NEXTTAG PRP EX RB NEXTTAG . VBN VBD SURROUNDTAG NNS PRP$ VBN VBD CURWD said JJ RB PREVTAG MD NN VBG NEXTBIGRAM JJ NNS JJ RB WDNEXTTAG late IN VBG NN PREVTAG PRP$ VBZ NNS NEXTTAG VBP NN NNP WDPREVTAG DT CD NN VBN PREVWD be JJS RBS NEXTTAG VBN VBN VBD SURROUNDTAG NN PRP$ VBN VBD SURROUNDTAG NNS JJ VBN VBD SURROUNDTAG NNS NN VBD VBN WDNEXTTAG increased NN VBZ NNS NEXTWD of IN RP WDAND2TAGAFT out NNS JJ NNP NEXTTAG POS RB RP WDNEXTTAG down DT CD NNS CURWD 1970s VBG NNP CURWD Working VBN VB PREVTAG MD JJ NN NEXTBIGRAM CC NN NN JJ SURROUNDTAG STAART NNS VBN VBD PREVBIGRAM , CC IN RB NEXTBIGRAM . STAART NN VBG PREVWD was NNP NNPS CURWD Cowboys VBZ NNS PREVWD phone NNP NNS SURROUNDTAG STAART VBP RBR JJR WDNEXTTAG lower JJ PRP$ PRP NEXTTAG IN VBD VB PREVTAG TO JJ NN WDPREVTAG NN chief JJ NN SURROUNDTAG JJ , NN JJ WDPREVTAG DT third VBN VBD SURROUNDTAG NNS NNP NNP NN SURROUNDTAG STAART NN NNP NN CURWD HDTV VBG NN SURROUNDTAG DT , VBG NN SURROUNDTAG DT . NNS VBZ PREVTAG WP NN VB SURROUNDTAG CC DT NNPS NNP WDAND2TAGBFR IN Securities RP IN PREVTAG NNS VBP NN LBIGRAM funds rate VBP NN WDPREVTAG NNS market DT RB RBIGRAM either . VBN NN SURROUNDTAG DT IN VBD VB PREV1OR2OR3TAG MD NN JJ NEXTWD oil VBN VBD SURROUNDTAG , $ VBD VBN PREVBIGRAM DT RB VBN JJ PREVWD by NNP JJ WDNEXTTAG American JJ NN VBG PREVTAG VBP JJ RB LBIGRAM very much NN VBG RBIGRAM operating officer RB IN RBIGRAM up for NNS VBZ NEXTBIGRAM JJ NNS NNS VBZ SURROUNDTAG , IN VB VBP PREVTAG NNPS IN RP WDAND2TAGAFT out IN NNPS NNP PREVBIGRAM CC NNP NN RB RBIGRAM close to RBR RB PREVWD no JJ VBD NEXTTAG DT RB NNP PREVTAG NNP MD NN PREVWD good JJ NN WDPREVTAG NN giant NN JJ WDNEXTTAG official NNS VBN VBD SURROUNDTAG , PRP$ VBN VBD SURROUNDTAG , RB VBN VBD SURROUNDTAG NN PRP NNP JJ WDNEXTTAG South JJ NN VBG PREVTAG RB NNS VBZ SURROUNDTAG , TO VBZ NNS SURROUNDTAG NN . NN VB NEXTTAG PRP$ VBP VB PREV1OR2WD do VB JJ NEXTWD countries IN WDT NEXTBIGRAM RB VBZ JJ VB NEXTTAG DT WDT DT NEXTBIGRAM VBZ , NNP RB RBIGRAM First , DT NNP WDNEXTTAG A VBZ JJ RBR RBIGRAM further , CD PRP WDNEXTTAG one MD POS '' PREV1OR2OR3TAG . PRP NN PREVTAG -LRB- VBN VBD SURROUNDTAG , PRP VBN VBD SURROUNDTAG NN NNS VBN VBD SURROUNDTAG NN RP NNP NN LBIGRAM STAART Business VBD VBN PREVTAG VBG IN RB RBIGRAM before , IN RB WDAND2AFT As as NNP JJ LBIGRAM New York-based NNP JJ CURWD Mexican NNP NNPS WDNEXTTAG Motors NNP NNP NNPS WDPREVTAG NNP Enterprises JJ RB WDNEXTTAG long IN VBG JJ SURROUNDTAG DT NN NN PRP PREVWD are mine * IN CURWD with * VB CURWD be * JJ RBIGRAM such as * IN LBIGRAM such as * IN CURWD from ================================================ FILE: src/textblob/en/en-entities.txt ================================================ 50 Cent PERS AIDS AK-47 AT&T ORG Abraham Lincoln PERS Acropolis LOC Adam Sandler PERS Adolf Hitler PERS Adriana Lima PERS Afghanistan LOC Africa LOC Al Capone PERS Al Pacino PERS Alaska LOC Albert Einstein PERS Albert Hofmann PERS Albert Schweitzer PERS Alexander the Great PERS Alfred Hitchcock PERS Alice Cooper PERS Alice in Wonderland Amazon.com ORG Amber Heard PERS Amelia Earhart PERS American Express American Idol Amsterdam LOC Amy Adams PERS Amy Winehouse PERS Ancient Egypt LOC Ancient Rome LOC Android Angelina Jolie PERS Angry Birds Anne Frank PERS Anne Hathaway PERS Antartica LOC Apple Inc. ORG Archimedes PERS Aretha Franklin PERS Argentina LOC Aristotle PERS Arnold Schwarzenegger PERS Audi ORG Audrey Hepburn PERS Aung San Suu Kyi PERS Australia LOC Austria LOC Avatar Avril Lavigne PERS Ayn Rand PERS Aztec BMW ORG Babe Ruth PERS Bacardi ORG Backstreet Boys Bangladesh LOC Barack Obama PERS Barbra Streisand PERS Barcelona LOC Batman PERS Beethoven PERS Belarus LOC Belgium LOC Ben Affleck PERS Ben Folds PERS Ben Stiller PERS Benazir Bhutto PERS Benjamin Franklin PERS Benjamin Millepied PERS Bernard Madoff PERS Beyoncé Knowles PERS Bill Clinton PERS Bill Gates PERS Billie Holiday PERS Billie Jean King PERS Bing Crosby PERS Black Sabbath Blake Edwards PERS Blake Lively PERS Bob Dylan PERS Bob Geldof PERS Bob Marley PERS Brad Pitt PERS Bradley Manning PERS Brazil LOC Brett Favre PERS Britney Spears PERS Bruce Lee PERS Bruce Willis PERS Bruno Mars PERS Buddhism Bulgaria LOC Burger King Burma LOC C.S. Lewis PERS Cadillac ORG California LOC Cameron Diaz PERS Cameron Newton PERS Canada LOC Captain Beefheart PERS Carl Lewis PERS Charles Darwin PERS Charles Dickens PERS Charles Kindbergh PERS Charles de Gaulle PERS Charlie Sheen PERS Che Guevara PERS Cheryl Cole PERS Chicago LOC China LOC Chopin PERS Chris Colfer PERS Christian Bale PERS Christiano Ronaldo PERS Christina Aguilera PERS Christmas Christopher Nolan PERS Chuck Norris PERS Clint Eastwood PERS Coca Cola ORG Coco Chanel ORG Coldplay Colombia LOC Conan PERS Cristiano Ronaldo PERS Crystal Harris PERS Cthulhu PERS Cuba LOC DNA Daft Punk Dalai Lama PERS Daniel Radcliffe PERS Darren Aronofsky PERS Darren Criss PERS Darth Vader PERS David Beckham PERS David Bowie PERS David Cook PERS Demi Lovato PERS Demi Moore PERS Denmark LOC Desmond Tutu PERS Dexter PERS Diana PERS Diego Maradona PERS Disney ORG Dmitry Medvedev PERS Doctor Who PERS Dr. Dre PERS Dr. Seuss PERS Dragon Ball Dubai LOC Dwayne Johnson PERS Earth LOC Ebenezer Scrooge PERS Eddie Murphy PERS Eduardo Saverin PERS Egypt LOC El Salvador LOC Elizabeth Edwards PERS Elizabeth Hurley PERS Ellen Page PERS Elton John PERS Elvis Presley PERS Emile Zatopek PERS Eminem PERS Emma Roberts PERS Emma Stone PERS Emma Watson PERS Emmeline Pankhurst PERS England LOC Enrique Iglesias PERS Ernest Hemingway PERS Ernest Hemingway PERS Europe LOC Eva Peron PERS Exxon Mobil PERS FC Barcelona ORG FIFA ORG Facebook ORG Fahrenheit Family Guy Faye Resnick PERS FedEx ORG Fidel Castro PERS Finland LOC Firefox ORG Florence Nightingale PERS Florida LOC Fort Wayne LOC France LOC Frank Sinatra PERS Franklin D. Roosevelt PERS Freddie Mercury PERS Frédéric Chopin PERS Futurama Garrett Hedlund PERS Gene Simmons PERS General Electric Genghis Khan PERS George Bush PERS George Clooney PERS George Harrison PERS George Orwell PERS George W. Bush PERS George Washington PERS Georges St-Pierre PERS Germany LOC Google ORG Google Chrome Gorillaz Grand Theft Auto Greece LOC Gucci ORG Gulf War Gulliver's Travels Guns N' Roses Gwyneth Paltrow PERS HIV HSBC Haile Selassie PERS Haiti LOC Halliburton ORG Halloween Hank Baskett PERS Hannah Montana PERS Hanukkah Harrison Ford PERS Harry Potter PERS Hawaii LOC He-Man PERS Heath Ledger PERS Helen Keller PERS Helena Bonham Carter PERS Henry Ford PERS Henry IV PERS Henry V PERS Henry VIII PERS Hilary Duff PERS Hillary Clinton PERS Honda ORG Hong Kong LOC Hotmail Hugh Hefner PERS Humphrey Bogart PERS Hungary LOC IBM ORG IKEA ORG Iceland LOC India LOC Indiana Jones PERS Indira Gandhi PERS Indonesia LOC Internet Explorer Iran LOC Ireland LOC Iron Man PERS Isaac Newton PERS Isabelle Caro PERS Islam Israel LOC Italy LOC Ivy League ORG J. Robert Oppenheimer PERS J.K. Rowling PERS J.R.R. Tolkien PERS JFK PERS Jack the Ripper PERS Jackie Chan PERS Jacqueline Kennedy Onassis PERS Jaden Smith PERS Jake Gyllenhaal PERS James Bond PERS James Franco PERS Jane Austen PERS Janet Jackson PERS Japan LOC Jared Leto PERS Jason Statham PERS Jawaharlal Nehru PERS Jay-Z PERS Jeff Bridges PERS Jeff Buckley PERS Jenna Jameson PERS Jennifer Aniston PERS Jesse Owens PERS Jessica Alba PERS Jesus PERS Jim Carrey PERS Jim Morrisson PERS Jimi Hendrix PERS Jimmy Wales PERS Joaquin Phoenix PERS John Cena PERS John Edwards PERS John F. Kennedy PERS John Lennon PERS John M. Keynes PERS John McCain PERS John Wayne PERS Johnnie Walker PERS Johnny Cash PERS Johnny Depp PERS Joseph Stalin PERS Judy Garland PERS Julia Roberts PERS Julian Assange PERS Julie Andrews PERS Julius Caesar PERS Justin Bieber PERS Justin Timberlake PERS KFC ORG KLM ORG Kama Sutra Kanye West PERS Kate Middleton PERS Katherine Hepburn PERS Katrina Kaif PERS Katy Perry PERS Keira Knightley PERS Ken Livingstone PERS Keri Hilson PERS Kesha PERS Kevin Bacon PERS Kid Cudi PERS Kim Kardashian PERS Kinect King Arthur PERS Kobe Bryant PERS Kosovo LOC Kristallnacht Kristen Stewart PERS Kurt Cobain PERS L'Oreal ORG L. Ron Hubbard PERS Lady Gaga PERS Lea Michele PERS Lebanon LOC Lech Walesa PERS Led Zeppelin Lego Lenin PERS Leo Tolstoy PERS Leon Trotsky PERS Leonardo DiCaprio PERS Leonardo da Vinci PERS Leslie Nielsen PERS Lexus ORG Liam Neeson PERS Lil Wayne PERS Lindsay Lohan PERS Linkin Park PERS Lionel Messi PERS Loch Ness LOC London LOC Lord Baden Powell PERS Los Angeles LOC Louis Pasteur PERS Louis Vuitton PERS Louvre LOC Ludwig van Beethoven PERS Lyndon Johnson PERS MDMA Mac OS X Macaulay Culkin PERS Madagascar LOC Madonna PERS Mahatma Gandhi PERS Malaysia LOC Malcolm X PERS Manchester LOC Manchester United ORG Margaret Thatcher PERS Mariah Carey PERS Marilyn Monroe PERS Mario Gómez PERS Mario Kart Mark David Chapman PERS Mark Wahlberg PERS Mark Zuckerberg PERS Martin Luther King PERS Massachussetts LOC Mata Hari PERS Matt Damon PERS Mattel ORG Maya Angelou PERS McDonald's ORG McGill University ORG Megan Fox PERS Mercedes-Benz ORG Merlin PERS Metallica Mexico LOC Miami LOC Miami Vice Michael C. Hall PERS Michael Jackson PERS Michael Jordan PERS Michael Vick PERS Michelin ORG Michigan LOC Micky Ward PERS Microsoft ORG Microsoft Windows Middle Ages Mike Tyson PERS Mila Kunis PERS Miley Cyrus PERS Minecraft Mohammed Ali PERS Mona Lisa PERS Montreal LOC Morocco LOC Mother Teresa PERS Mother's Day Mozart PERS Mozilla Firefox Muhammad PERS Muhammad Ali PERS Myanmar LOC Napoleon PERS Narnia LOC Natalie Portman PERS Nazi Germany Neil Armstrong PERS Neil Patrick Harris PERS Nelson Mandela PERS Nepal LOC Netherlands LOC New York LOC New York City LOC New Zealand LOC Nicki Minaj PERS Nicolas Cage PERS Nicole Scherzinger PERS Nigeria LOC Nike ORG Nivea ORG North America LOC North Korea LOC Norway LOC Olivia Wilde PERS Oprah Winfrey PERS Osama Bin Laden PERS Oscar Wilde PERS Owen Wilson PERS Ozzfest Pablo Picasso PERS Pakistan LOC Panasonic ORG Paris LOC Paul McCartney PERS Pele PERS Pepsi ORG Peter Sellers PERS Philadelphia LOC Philips ORG Phillipines LOC Pink Floyd PERS PlayStation 3 Pocahontas PERS Pokemon Pokémon Poland LOC Pope John Paul II PERS Premier League ORG Prince Charles PERS Priory of Sion LOC Procter & Gamble Puerto Rico LOC Qatar LOC Queen Elizabeth II PERS Queen Victoria PERS Rachmaninoff PERS Raiders of the Lost Ark Raisa Gorbachev PERS Real Madrid ORG Red Hot Chili Peppers PERS Reese Witherspoon PERS Resident Evil Richard PERS Richard Branson PERS Richard Dawkins PERS Richard Holbrooke PERS Richard Nixon PERS Rihanna PERS Ringo Starr PERS Robert De Niro PERS Robert Pattinson PERS Robin Hood PERS Roger Federer PERS Roman Empire ORG Romania LOC Rome LOC Romeo and Juliet Ronald Reagan PERS Ronnie O'Sullivan PERS Rosa Parks PERS Russell Brand PERS Russia LOC Ryan Reynolds PERS Saddam Hussein PERS Sahara LOC Saint Nicholas PERS Salman Khan PERS Samsung ORG Sandra Bullock PERS Santa Claus PERS Sarah Palin PERS Sasha Grey PERS Saudi Arabia LOC Scarlett Johansson PERS Scientology ORG Scotland LOC Sean Combs PERS Sean Parker PERS Selena Gomez PERS Serbia LOC Sergei Rachmaninoff PERS Shakira Shaquille O'Neal PERS Shaun Ryder PERS Sherlock Holmes PERS Shia LaBeouf PERS Shirley Temple PERS Siemens ORG Sigmund Freud PERS Silvio Berlusconi PERS Singapore LOC Skype Smirnoff ORG Snoop Dogg PERS Snow White PERS Socrates PERS Somalia LOC Sony ORG South Africa LOC South America LOC South Korea LOC South Park Soviet Union Spain LOC Spider-Man PERS Spiderman PERS Sri Lanka LOC Star Trek Star Wars Starbucks ORG Stephen Hawking PERS Stephen King PERS Steve Jobs PERS Steve Nash PERS Steven Spielberg PERS Sudan LOC Super Bowl Superman PERS Sweden LOC Switzerland LOC Sylvester Stallone PERS Taiwan LOC Taj Mahal LOC Take That Taylor Lautner PERS Taylor Momsem PERS Taylor Swift PERS Teena Marie PERS Tennessee LOC Texas LOC Thailand LOC The Beatles The Chronicles of Narnia The Godfather The Green Hornet The Lord of the Rings The Rolling Stones The Simpsons The Sims Theodore Roosevelt PERS Thomas Jefferson PERS Thor PERS Tiger Woods PERS Titanic Tom Brady PERS Tom Cruise PERS Tom Hanks PERS Toy Story Toyota ORG Transformers Tron Tupac Shakur PERS Twin Peaks Twitter UEFA Champions League Ubuntu Ukraine LOC United Kingdom LOC United Nations United States LOC Usain Bolt PERS Vanessa Hudgens PERS Venus LOC Vietnam LOC Vin Diesel PERS Virginia Woolf PERS Vladimir Putin PERS Vodafone ORG Volkswagen ORG Walmart ORG Walt Disney PERS Warren Buffet PERS Washington LOC Washington D.C. LOC Wesley Snipes PERS Wii WikiLeaks ORG Wikipedia ORG Will Ferrell PERS Will Smith PERS William Shakespeare PERS Willow Smith PERS Windows 7 Windows 95 Windows Vista Windows XP Winona Ryder PERS Winston Churchill PERS Wiz Khalifa PERS Wolfgang Amadeus Mozart PERS Woodrow Wilson PERS World War I World War II World of Warcraft Wright Brothers PERS X-Men Xbox 360 Yoko Onen PERS Yoko Ono PERS YouTube ORG amazon.com ORG eBay ORG iPad iPhone iPod iPod touch ================================================ FILE: src/textblob/en/en-lexicon.txt ================================================ ;;; ;;; The lexicon was taken from Brill's rule based tagger v1.14, ;;; trained on Brown corpus and Penn Treebank. ;;; ;;; Eric Brill (1992). A simple rule-based part of speech tagger. ;;; In Proceedings of the workshop on Speech and Natural Language (pp. 112-116). ;;; Association for Computational Linguistics. ;;; ;;; Copyright 1993 by the Massachusetts Institute of Technology and the ;;; University of Pennsylvania. All rights reserved. MIT license. ;;; ;;; Additional words were added from the Twitter Part-of-Speech Annotated Data, ;;; available under the Creative Commons Attribution 3.0 Unported license ("CC-BY"). ;;; Carnegie Mellon University. http://www.ark.cs.cmu.edu/TweetNLP ;;; ;;; Kevin Gimpel, Nathan Schneider, Brendan O'Connor, et al. (2011). ;;; Part-of-Speech Tagging for Twitter: Annotation, Features, and Experiments. ;;; In Proceedings of the Annual Meeting of the ACL, Portland, OR, June 2011. ;;; ! . !! . !!! . !!!! . !!!!! . !!!!!! . !!!!!!! . !!!!!!!! . !. . !? . " " # # #1 CD #2 CD #GLEE NNP #Glee NNP #celtics NNPS #fail NN #fb NNP #glee NNP #howcome VB #lakers NNPS #shoutout NN #teamceltics NNPS #teamlakers NNPS #win NN $ $ $200 CD $25 CD % NN %... : %CHG NN & CC &0C. NN ' POS '' '' ''$ $ ''. NN ', , '. . '/''... : '/POS... : '13 CD '20's CD '20s NNPS '25 CD '30s CD '31 CD '38 CD '40's CD '40s NNS '48 CD '49 CD '50 CD '50's CD '50s NNS '51 CD '52 CD '53 CD '54 CD '55 CD '58 CD '60 CD '60s NNS '61 CD '68 CD '70s NNS '71 CD '76 CD '78 CD '79 CD '80's CD '80s NNS '80s-style JJ '81 CD '82 CD '85 CD '86 CD '87 CD '89 CD '89s NNS '90s NNS '92 CD ': : 'A NN 'All DT 'Are VBP 'As RB 'BS NNP 'Big JJ 'Cause IN 'Channel NN 'Chief NNP 'Christian JJ 'Come VB 'D NNP 'Damn VB 'Dividend NN 'Do NNP 'Does VBZ 'Don't VB 'Em NNP 'Europeans NNPS 'Forget VB 'God NNP 'Goodison NNP 'Guesstimates NNS 'Hagura NNP 'Happy NNP 'Have VB 'He PRP 'Hear VB 'Here's NNS 'Hey UH 'Hot JJ 'How WRB 'I PRP 'I'd VB 'I'm VBP 'I've NN 'Il NNP 'Is VBP 'It's PRP 'Just RB 'K NNP 'Kick VB 'Lady NN 'Let's PRP 'Look VB 'MTV NNP 'Ma NNP 'My PRP 'N NNP 'Nightline NNP 'No UH 'OK UH 'Oh UH 'Okay UH 'Onward RB 'Ounce NNP 'P JJ 'People NNS 'Poltergeist NN 'Preventive JJ 'R NNP 'RED JJ 'Recovering VBG 'S VBZ 'Son NN 'Sorry JJ 'Struggling VBG 'Sweets NNP 'T- PRP 'Tahiti NNP 'That's VBZ 'The NNP 'This VBZ 'Three's NNP 'Tide NNP 'To NNP 'Today NNP 'Unsolved NNP 'Wadoo UH 'War NNP 'Watch VB 'We PRP 'We've PRP 'Well RB 'What WP 'Which NN 'Who NN 'Why WRB 'Will MD 'X NN 'Yeah UH 'Yes UH 'You NN 'Yuk UH '`` `` 'bout IN 'ceptin VBG 'd MD 'd. NN 'ello UH 'em PRP 'emselves PRP 'fess VB 'fore IN 'im PRP 'll MD 'low VB 'm VBP 'mon UH 'most IN 'n IN 'nother DT 'nough JJ 'nuff RB 'pache NN 're VBP 're... : 'round RB 's POS 's. POS 'scuse VB 'stead IN 't- PRP 'thirties NNS 'till IN 've VBP 'way RB 'we'd MD ( ( (!) SYM (3/26 1991) (9/9 1991) (: SYM (@ SYM ) ) ). SYM ): SYM * SYM + SYM , , ,'cept IN ,'t- PRP ,. SYM ,.. NN ,... : - : -$ $ -- : --$ $ --'cause JJ --271,124 CD --33 CD --4.8 CD --Boca NNP --Bordeaux NNP --China NNP --Dell NNP --Dorothy NNP --George NNP --Hitachi NNP --Mrs NNP --Of IN --Thailand NNP --Tokyo NNP --William NNP --a DT --about IN --agreed NN --all DT --and CC --are VBP --at IN --awarding VBG --changed VBD --combined VBN --complicated IN --consented VBD --considered VBN --despite IN --didn't VBD|RB --dividends NNS --especially RB --even JJ --fawning VBG --fell VBD --for IN --forcing JJ --grows VBZ --had VBD --has VBP --here RB --how WRB --if IN --in NN --including IN --it PRP --like IN --meal NN --mortgage-backed JJ --of IN --offer VBP --one CD --players NNS --plus RB --presumably RB --products NNS --since IN --some DT --subjects NNS --such JJ --teetering VBG --telegraph VBP --the JJ --they PRP --those DT --to IN --twice RB --unlike JJ --vs. IN --was VBD --were VBD --what WP --when WRB --which WDT --who WP --will MD --wines NN --with IN --would MD --you JJ -.10 CD -.5 CD -.50 CD -0.06 CD -1 CD -16-degrees CD|NNS -20-degrees CD|NNS -20-degrees-C CD|NN|NP -300 CD -5 CD -500 CD -57.6 CD -78-degrees CD|NN -LCB- ( -LRB- ( -RCB- ) -RRB- ) -Samuel NNP -Yr. NN -_- SYM -__- SYM -aminometha NN -axis NN -c NN -ing JJ -ism NN . . .'crack NN .. . ... : .... : ..... : ...... : ........ : .01 CD .02 CD .025 CD .027 CD .03 CD .05 CD .054 CD .07 CD .076 CD .09 CD .10-a-minute JJ .10.07 CD .105 CD .12 CD .125 CD .16 CD .23 CD .270 CD .292 CD .30 CD .337 CD .357 CD .375 CD .38 CD .4 CD .40 CD .45 CD .5 CD .50 CD .50-caliber JJ .500 CD .6 CD .65 CD .75 CD .8 CD .80 CD .86 CD .9.76 CD .9.82 CD .9.92 CD .90 CD .: : .Not RB .fundamentally RB .to TO .what WDT / CC 0 CD 0-1 CD 09 CD 1 CD 1,000 CD 1-0 CD 1/2 CD 10 CD 10.27 CD 106 CD 11 CD 12 CD 15 CD 17 CD 17th CD 1st JJ 2 IN 20 CD 2008 CD 2010 CD 2011 CD 21st JJ 26 CD 27 CD 27th CD 29 CD 2day NN 2nd CD 3 CD 30 CD 31 CD 4 IN 40 CD 48 CD 4th CD 5 CD 6 CD 7 CD 7:30 CD 8 CD 8:30 CD 9 CD : : :( SYM :) SYM :)) SYM :-P SYM :/ SYM :35.3 CD :: : :D SYM :P SYM ; : ;) SYM ;-) SYM < SYM <3 SYM <333 SYM = SYM =) SYM ======================================ll NN =D SYM =] SYM > SYM ? . ?! . ?!? . ?? . ??!! . ??? . ???? . @ IN @BarackObama NNP @DailySexTips NNP @NICKIMINAJ NNP @NickiMinaj NNP @justinbieber NNP @kylieminogue NNP @youtube NNP A DT A$ $ A&E NNP A&M NNP A&P NNP A&W NNP A*/NNP&S NN A,B,C,D NNP A-1 JJ A-1-plus JJ A-12 NNP A-2 NN A-26 CD A-300-600 NNP A-310-300 NN A-320 NN A-320-200 NN A-320s NNP A-321 NN A-330 NNP A-330s NNS A-340s NNS A-6 NN A-B NNP A-D NNP A-Team NNP A-Z NNP A-body JJ A-bombs NNS A-men NNS A-plus JJ A. NNP A.-controlled JJ A.A. NNP A.A.U. NNP A.B. NNP A.C. NNP A.D NN A.D. NNP A.D.L. NNP A.E. NNP A.F. NNP A.G. NNP A.H. NNP A.I.D. NN A.I.R. NNP A.J. NNP A.J.C. NNP A.K.C. NNP A.L. NNP A.L.A.M. NNP A.L/NNP.S/NNP.A.C. NNP A.M RB A.M. NNP A.M.A NNP A.M.A. NNP A.M.E. NNP A.N. NNP A.O. NNP A.P. NNP A.R. NNP A.R.A. NNP A.S. NNP A.T.B. NNP A.V. NNP A.W. NNP A12 NN A135 NN A3 CD A300-600R NNP A310-300s NNP A320 NN A321 CD A321s NNS A330 NN A330-300s NNS A340 NN A40-AjK NN A5 NN AA JJ AAA NNP AARP NNP AAb NNP AB NNP ABA NNP ABB NNP ABBIE NNP ABC NNP ABC-TV NNP ABCs NNS ABG-Semca NNP ABIOMED NNP ABM NN ABM. NNP ABO NNP ABORTION NN ABS NNP ABUSE NN AC&R NNP AC&R\/CCL NNP AC-130U NN ACCEPTANCES NNS ACCO NNP ACCOUNT NN ACCOUNTANTS NNS ACCOUNTING NN ACCOUNTS NNS ACLU NNP ACQUISITION NN ACQUISITIONS NNS ACRES NNP ACS NNP ACT NNP ACTH NNP ACTING JJ AD NN ADB NNP ADC NNP ADDED VBD ADIA NNP ADMAN NN ADMINISTRATION'S NN ADMITTED VBD ADN NNP ADOPTED VBD ADR NNP ADRs NNS ADS NNPS ADT NNP ADV NNP ADVANCED NNP ADVANCEMENT NNP ADVANCES NNS ADVERTISERS NNS ADVERTISING NNP AD\ NNP AEC NNP AEG NNP AEI NNP AEP NNP AES NNP AEW NNP AF NNP AFDC NNP AFFLUENT JJ AFL-CIO NNP AFP NNP AFRICA NNP AFRICA'S NNP AFRICAN-AMERICAN JJ AFTERMATH NNP AFTERSHOCKS NNS AG NNP AGA NNP AGAIN RB AGE NNP AGENCIES NNS AGENCY NNP AGF NNP AGI NNP AGIP NNP AGREED VBD AGREES VBZ AGS NNP AH-64 NN AH6 CD AHEAD RB AHHHHH UH AHSC NNP AIA NNP AIB NNP AIB.PR NNP AIChE NNP AID NNP AIDS NNP AIDS-drug JJ AIDS-infected JJ AIDS-inspired JJ AIDS-like JJ AIDS-prevention JJ AIDS-related JJ AIDS-research JJ AIDS-treatment NN AIEE NNP AIG NNP AIM NNP AIMO NNP AIR NNP AIR'S NNP AIRCOA NNP AIRLINES NNPS AIW NNP AK-47 NNP AL NNP ALAMCO NNP ALBERTA NNP ALCEE NNP ALCOHOL NNP ALERT NN ALII NNP ALL PDT ALLIANCE NNP ALLOWED VBD ALLWASTE NNP ALLY NN ALPA NNP ALQ-135 NN ALQ-178 NNP ALT NNP ALU NNP ALUMINUM NNP AM NNP AMA NNP AMBASSADOR NN AMC NNP AMCA NNP AMDAHL NNP AMERICA'S NNP AMERICAN NNP AMERICANS NNS AMES NNP AMEX NNP AMF NNP AMI NNP AMNESTY NN AMONG IN AMP NNP AMR NNP AMR-Delta NNP AMRO NNP AMT NNP AMUSEMENT JJ AMVISC NNP AMs NNS AN DT ANACOMP NNP ANB NNP ANC NNP ANCHORAGE NNP AND CC ANDERSEN NNP ANF NNP ANF-Industrie NNP ANGELES NNP ANIMAL-RIGHTS NNS ANN NNP ANNOUNCED VBD ANNUAL JJ ANNUITIES NNS ANNUITY NNP ANP NNP ANR NNP ANSA NNP ANTHEM NNP ANZ NNP AON NNP AP NNP AP-Dow NNP AP600 NN APARTHEID NNP API NNP APM NNP APMS NNP APPB NNP APPEARS VBZ APPELLATE NN APPLE NNP APPLIANCES NNPS APPLIED NNP APPROVED VBD APPROVES VBZ APS NNP APT NNP APV NNP ARA NNP ARAL-88 NNP ARBITRAGE NN ARCO NNP ARE VBP AREA NN ARF NNP ARISE VBP ARM NNP ARMs NNS ARNOLD NNP ARRESTED VBD ARRIVED VBD ARTICLE NN ARTY NNP ART\/artifact NN AS NNP ASA NNP ASARCO NNP ASC NNP ASCAP NNP ASDA NNP ASDIC NNP ASEA NNP ASEAN NNP ASHTON-TATE NNP ASK NNP ASKO NNP ASKS VBZ ASLACTON NNP ASME NNP ASP NNP ASPIS FW ASPR NNP ASSETS NNP ASSOCIATES NNP ASSOCIATION NNP ASSOCIATION-COLLEGE NNP AST NNP ASW NN AS\ NNP AT IN AT&T NNP AT&T-sponsored JJ AT* NNP AT*/NNP&T NN ATARI NNP ATHLONE NNP ATI NNP ATLANTIC NNP ATM NN ATMs NNS ATP NN ATS\ NNP ATTACK NN ATTORNEY NNP ATTRACTS VBZ AUDITS NNS AUS NNP AUSTIN NNP AUTO NNP AUTOMOBILES NNPS AVC NNP AVOIDED VBD AVON NNP AVX NNP AWA NNP AWAY RP AWE NNP AWOC NNP AYER NNP AZT NNP AZT-resistant JJ AZT-treated JJ AZTR NNP A[fj] SYM A\ JJ A\/S NNP Aaa JJ Aaa-ee UH Aaawww UH Aah UH Aalseth NNP Aaron NNP Aaronson NNP Aarvik NNP Ab1,040 NNP Ab4,500 CD Ab63711-r CD Ababa NNP Abalkin NNP Abandon VB Abandoning VBG Abatuno NNP Abba NNP Abbas NNP Abbe NNP Abbe-Direct NNP Abbe-Scotch NNP Abbenhaus NNP Abbett NNP Abbey NNP Abbie NNP Abbot NNP Abbott NNP Abboud NNP Abby NNP Abd-al-Aziz NNP Abdallah NNP Abderahmane NNP Abdul NNP Abdul-Raheem NNP Abdullah NNP Abe NNP Abel NNP Abell NNP Abello NNP Abelson NNP Abend NNP Aber FW Abercrombie NNP Aberdeen NNP Abernathy NNP Abernathys NNPS Abex NNP Abide NNP Abie NNP Abigail NNP Abilene NNP Abingdon NNP Abiomed NNP Abitibi-Price NNP Ablard NNP Able NNP Abner NNP Abney NNP Abnormal JJ Aboff NNP Abolition NNP Abolitionists NNS Aborted JJ Abortion NNP Abortion-rights NNS About IN Above IN Aboveground JJ Abra NNP Abraham NNP Abrahams NNP Abrahamson NNP Abramowitz NNP Abrams NNP Abramson NNP Abreaction NN Abreast NNP Abroad RB Abrupt JJ Abruptly RB Abscam-indicted JJ Absent VB Absent-minded JJ Absenteeism NN Absolute JJ Absolutely RB Absolution NN Absorbed VBN Absorbing VBG Abstract NNP Abstraction NNP Abstractionists NNS Abstractions NNS Abstracts NNP Abt NNP Abu NNP Abuse NNP Abyss NN Abyssinians NNPS Aca NNP Academic NNP Academically RB Academicianship NN Academics NNS Academy NNP Acadia NNP Acala NNP Acapulco NNP Acarbose NNP Accacia NNP Accademia NNP Accardo NNP Accelerated VBN Accept VB Acceptable JJ Acceptance NNP Accepted JJ Accepting VBG Access NN Accessories NNS Accident NNP Accidental JJ Acclaim NNP Accompanied VBN Accomplishing VBG Accomplishments NNS Accor NNP Accord NNP Accord-fighter JJ According VBG Accordingly RB Accords NNPS Account NNP Accountants NNPS Accountemps NNP Accounting NNP Accounting-profession NN Accounts NNS Accounts-a NNP Accrued VBN Accudyne NNP Accumaster NNP Accumulation NNP Accuracy NN Accurate JJ Accused NNP Accustomed JJ Accutane NNP Ace NNP Aces NNS Acey NNP Achaeans NNPS Achenbaum NNP Acheson NNP Achievement NNP Achieving VBG Achilles NNP Acid JJ Acid-washed JJ Ackerley NNP Ackerly NNP Ackerman NNP Ackermann NNP Acknowledges VBZ Ackroyd NNP Acme-Cleveland NNP Acorn NNP Acorns NNS Acourse NN Acoustic NNP Acoustical JJ Acquired VBN Acquirer NN Acquirers NNS Acquiring VBG Acquisition NNP Acquisitions NNS Acreage NN Acres NNP Acropolis NNP Across IN Acrylic NNP Act NNP Acting NNP Acting-President NNP Action NNP Actions NNS Active JJ Actively RB Activists NNS Activities NNP Activity NN Acton NNP Actor-Crooner NNP Actress NNP Acts NNPS Actual JJ Actually RB Acura NNP Acushnet NNP Acustar NNP Acuvue NNP Ad NN Ad-Unit NN Ada NNP Adagio NNP Adair NNP Adalbert NNP Adam NNP Adame NNP Adamec NNP Adamo NNP Adams NNP Adamski NNP Adamson NNP Adaptaplex NNP Adaptation NN Adaptations NNS Adaptec NNP Adapted VBN Adcock NNP Add VB Addabbo NNP Adde NNP Added VBD Addict NNP Addicted NNP Addicts NNS Adding VBG Addington NNP Addis NNP Addison NNP Addiss NNP Addition NN Additional JJ Additionally RB Additive NN Additives NNPS Address NNP Addressing VBG Adds VBZ Addwest NNP Ade NNP Adelaide NNP Adele NNP Adelia NNP Adella NNP Adelman NNP Adelos NNP Aden NNP Adenauer NNP Adens NNP Adequate JJ Aderholds NNPS Adherence NN Adi NNP Adia NNP Adios NNP Adios-Direct NNP Adios-On NNP Adios-Rena NNP Adios-Trustful NNP Adirondack NNP Adirondacks NNPS Adjoining VBG Adjournment NN Adjust VB Adjusted NNP Adjusters NNS Adjusting VBG Adjustment NNP Adlai NNP Adler NNP Adley NNP Adm. NNP Admarketing NNP Admassy NNP Administration NNP Administration-insured JJ Administrative NNP Administrator NNP Administrators NNPS Admirably RB Admiralty NN Admirers NNS Admission NN Admissions NNP Admistration NNP Admittedly RB Admitting VBG Adnan NNP Ado NNP Adobe NNP Adolescents NNS Adolf NNP Adolph NNP Adolphus NNP Adoniram NNP Adonis NNP Adopting VBG Adoption NN Adoptions NNS Adrar NNP Adrian NNP Adrianople NN Adriatic NNP Adrien NNP Adrienne NNP Ads NNS Adsi NNP Adult NN Adultery NNP Adults NNS Advance NNP Advanced NNP Advancement NNP Advancers NNS Advances NNS Advancing VBG Advani NNP Advantages NNS Advent NNP Adventists NNP Adventure NNP Adventurers NNS Adventures NNS Adverbial JJ Adverse JJ Advertiser NNP Advertisers NNS Advertising NNP Advertising\/San NNP Advest NNP Advice NNP Advil NNP Advise NNP Adviser NNP Advisers NNPS Advises VBZ Advisor NNP Advisors NNPS Advisory NNP Advocate NNP Advocates NNS Aegean NNP Aegis NNP Aegis-class JJ Aegon NNP Aeneid NNP Aer NNP Aeritalia NNP Aermacchi NNP Aero NNP Aero-Space NNP Aerobacter NN Aeroflot NNP Aerojet NNP Aeromexico NNP Aeronautical NNP Aeronauticas NNP Aeronautics NNP Aeroquip NNP Aerospace NNP Aerospace-Thomson NNP Aerospatiale NNP Aeschbacher NNP Aeschylus NNP Aetna NNP Af-fold JJ Af-inch JJ Af-stage JJ Af-values NNS Af. NNP Afanasyev NNP Afanasyeva NNP Affair NNP Affaire NNP Affaires NNP Affairs NNP Affect VB Affected VBN Affidavits NNS Affiliated NNP Affiliates NNP Affirmative JJ Affirmatively RB Affirmed NNP Affliction NNP Afford VB Affordable NNP Afghan JJ Afghan-Pakistan JJ Afghanistan NNP Afghanistan\/Southwest NNP Afghans NNPS Afield NNP Afif NNP Aflatoxin NN Afnasjev NNP Afraid JJ Afranio NNP Africa NNP Africaine NNP African JJ African-Americans NNPS African-controlled JJ African-safari JJ Africanist NNP Africans NNPS Afrika NNP Afrikaaner NNP Afrikaner JJ Afrikanerdom NNP Afrikaners NNPS Afrique NNP Afro-Asian NNP Afro-Cuban JJ After IN After-the-fact JJ Aftereffects NNS Afternoon UH Aftershocks NNS Afterward RB Afterwards RB AgResource NNP Aga NNP Again RB Against IN Agamemnon NNP Aganbegyan NNP Agatha NNP Age NNP Agee NNP Agence NNP Agencies NNS Agency NNP Agenda NNP Agent NNP Agents NNS Ageny NNP Ages NNPS Agfa NNP Aggie NNP Aggies NNP Aggregate JJ Aggressive NNP Aggressively RB Aggrieved JJ Aghanistan NNP Aghazadeh NNP Agile FW Agin NNP Aging NNP Agins NNP Agip NNP Agitato NNP Agius NNP Agnelli NNP Agnelli-related JJ Agnellis NNPS Agnes NNP Agnese NNP Agnew NNP Agnos NNP Ago RB Agoeng NNP Agoglia NNP Agonale NNP Agone NNP Agoura NNP Agouron NNP Agree VBP Agreeable NNP Agreed VBD Agreement NNP Agreements NNS Agrees VBZ Agri NNP Agricola NNP Agricole NNP Agricoles NNP Agricultural NNP Agriculture NNP Agriculture-ministry NN Agrippa NNP Agro NNP Agrobacterium NN Agua NNP Aguais NNP Aguiar NNP Aguilar NNP Aguirre NNP Aguirre-Sacasa NNP Agura NNP Ah UH Ah-ah UH Ahah UH Ahead RB Ahern NNP Ahh UH Ahlerich NNP Ahm PRP Ahmad NNP Ahmanson NNP Ahmet NNP Ahmiri NNP Aho NNP Ahold NNP Ahoy NNP Ahrens NNP Ahsan NNP Ai VBP Ai- NNP Aichi NNP Aid NNP Aida NNP Aidan NNP Aide NNP Aided VBN Aiden NNP Aides NNS Aiding NNP Aids NNS Aikawa NNP Aiken NNP Aikin NNP Aikman NNP Ailes NNP Ailey NNP Ailing VBG Aim VB Aimed VBN Aims VBZ Ainsley NNP Ainslie NNP Ainsworth NNP Ainu NNP Ainus NNPS Air NNP Air-drifts CD Air-freight NN Air-raid JJ Air-to-ground JJ Air-traffic NN AirCal NNP AirMalta NNP AirTran NNP Airborne NNP Airbus NNP Aircoa NNP Aircraft NNP Airedale NNP Airedales NNPS Aires NNP Airfone NNP Airfones NNS Airgas NNP Airless JJ Airlie NNP Airline NNP Airlines NNPS Airmail NN Airman NNP Airpark NNP Airplanes NNS Airport NNP Airports NNP Airways NNPS Airy JJ Ait-Laoussine NNP Aitken NNP Aiwa NNP Aj. NNP AjA NNP AjB NNP Ajax NNP Ajinomoto NNP Ajit NNP Akademie NNP Ake NNP Akerfeldt NNP Akers NNP Akerson NNP Akin NNP Akio NNP Akita NNP Akiva NNP Akron NNP Akros NNP Aktiebolaget NNP Aktiengesellschaft NNP Akzo NNP Al NNP Al-Chalabi NNP Al-Faqih NNP Al-Rowas NNP Al-Sabah NNP Al-Seyassah NNP Ala NNP Ala. NNP Alabama NNP Alabama-Coushatta JJ Alabamans NNS Alabamas NNPS Alabamian NN Alacrity NNP Aladdin NNP Alagoas NNP Alai NNP Alain NNP Alakshak NNP Alameda NNP Alamein NNP Alamito NNP Alamo NNP Alamogordo NNP Alamos NNP Alan NNP Alaouite JJ Alar NN Alar-style JJ Alarcon NNP Alarm NNP Alarmed JJ Alas UH Alasdair NNP Alaska NNP Alaska-based JJ Alaskan JJ Alastair NNP Alastor NNP Alba NNP Albacore NNP Albanese NNP Albania NNP Albanian NNP Albanians NNPS Albany NNP Alberding NNP Alberg NNP Albers NNP Albert NNP Alberta NNP Albertine NNP Alberto NNP Albertson NNP Albertville NNP Albion NNP Albrecht NNP Albright NNP Albrights NNPS Album NN Albuquerque NNP Alcan NNP Alcarria NNP Alcatel NNP Alcatraz NNP Alcee NNP Alceste NNP Alcibiades NNP Alcinous JJ Alco NNP Alcoa NNP Alcohol NN Alcoholic NNP Alcoholics NNPS Alcorn NNP Alcott NNP Alda NNP Alden NNP Aldermen NNS Alderson NNP Aldo NNP Aldomet NNP Aldrich NNP Aldridge NNP Aldrin NNP Aldus NNP Alec NNP Alejandro NNP Aleksei NNP Alemagna NNP Alert NNP Alesio NNP Alessio NNP Alex NNP Alexander NNP Alexandra NNP Alexandre NNP Alexandria NNP Alexandrine JJ Alexei NNP Alexeyeva NNP Alexia NNP Alexis NNP Alf NNP Alfa NNP Alferon NNP Alfieri NNP Alfons NNP Alfonse NNP Alfonso NNP Alfred NNP Alfredo NNP Algemene NNP Alger NNP Algeria NNP Algerian JJ Algiers NNP Algol NNP Algom NNP Algonquin NNP Ali NNP Aliah NNP Aliber NNP Alice NNP Alicia NNP Alida NNP Alien NNP Alienated NNP Alienus NNP Aligning VBG Aliksanian NNP Alisarda NNP Alisky NNP Alison NN Alistair NNP Alito NNP Alix NNP Aljian NNP Alkylate NNP All DT All-American NNP All-Star NNP All-Union NNP All-You-Can-Eat NNP All-weather JJ Alla NNP Allah NNP Allan NNP Allay NN Allday NNP Allegany NNP Alleged JJ Alleghany NNP Alleghenies NNPS Allegheny NNP Allegiance NNP Allegra NNP Allegretti NNP Allegro NNP Allemands NNP Allen NNP Allen-film NN Allendale NNP Allende NNP Allenport NNP Allentown NNP Allergan NNP Alley NNP Allgemeine NNP Alliance NNP Alliant NNP Allianz NNP Allie NNP Allied NNP Allied-Lyons NNP Allied-Signal NNP Allies NNPS Alligood NNP Allingham NNP Allis-Chalmers NNP Allison NNP Allocation NN Allons FW Allotments NNS Allou NNP Allow VB Allowed VBN Allowing VBG Alloy NN Allso RB Allstate NNP Allstates NNP Allstates-Zenith NNP Alltel NNP Allumettes NNP Allure NN Allwaste NNP Ally VBP Alma NNP Almaden NNP Almagest NNP Almanac NNP Almighty NNP Almond NN Almonds NNS Almost RB Aloe NNP Aloft JJ Aloha NNP Alois NNP Alokut NNP Alone RB Along IN Alongside IN Alonso NNP Alors FW Aloud RB Aloys NNP Alper NNP Alpers NNP Alperstein NNP Alpert NNP Alperts NNS Alpha NNP Alphametrics NNP Alpharetta NNP Alphonse NNP Alphonsus NNP Alpine NNP Alpo NNP Alps NNP Alquist NNP Already RB Alsagoray NNP Alsatian NNP Alsatians NNPS Alsing NNP Also RB Also... : Alson NNP Alsop NNP Alsthom NNP Alstyne NNP Alt NNP Alta NNP Altair NNP Altairians NNPS Altama NNP Altar NNP Altenburg NNP Alter VB Alterman NNP Alternate JJ Alternately RB Alternating VBG Alternative JJ Alternative-operator NN Alternatively RB Alternatives NNP Althaus NNP Althea NNP Although IN Altimari NNP Altman NNP Alto NNP Altogether RB Alton NNP Altos NNP Altron NNP Alumina NNP Aluminium NNP Aluminum NNP Aluminum-Bat NN Aluminum-ingot NN Alumni NNPS Alun-Jones NNP AlunJones NNP Alurralde NNP Alusik NNP Alusuisse NNP Alva NNP Alvan NNP Alvarez NNP Alvear NNP Alvero-Cruz NNP Alvin NNP Alvise NNP Always RB Alwin NNP Alyce NNP Alysia NNP Alzheimer NNP Am NNP AmBase NNP AmBrit NNP Amabile NNP Amada NNP Amadee NNP Amadeus NN Amado NNP Amador NNP Amadou-Mahtar NNP Amalgamated NNP Amana NNP Amando NNP Amaral NNP Amarillo NNP Amatayakul NNP Amateur NNP Amaury NNP Amax NNP Amazing JJ Amazon NNP Amazonia NNP Amazonian JJ Ambassador NNP Ambassador-at-Large NNP Ambassador-designate NNP Amber NNP Ambigua NNP Ambiguan JJ Ambiguity NN Ambler NNP Amboy NNP Ambridge NNP Ambroise NNP Ambrose NNP Ambrosiano NNP Ambulances NNS Ambushes NNS Amca NNP Amcap NNP Amcast NNP Amclyde NNP Amcor NNP Amcore NNP Amdahl NNP Amdec NNP Amdura NNP Ameaux NNP Amee NNP Amelia NNP Amen UH Amending VBG Amendment NNP Amendments NNPS Amenities NNS Amenitskii NNP Amer NNP Amerace NNP Amerada NNP Ameri-Cable NNP AmeriGas NNP AmeriTrust NNP America NNP America. NNP America\/International NNP American NNP American-China NNP American-Jewish JJ American-Negro NNP American-built JJ American-developed JJ American-made JJ American-style JJ American-trained JJ Americana NNS Americanized VBD Americano NNP Americans NNPS Americas NNP Ameritas NNP Ameritech NNP Amerman NNP Ameron NNP Amerongen NNP Ames NNP Ametek NNP Amex NNP Amfac NNP Amfesco NNP Amgen NNP Amharas NNPS Amherst NNP Amhowitz NNP Amicable NNP Amicam NNP Amici FW Amid IN Amidst IN Amiel NNP Amiga NNP Amin NNP Amira NNP Amis NNP Amish NNP Amitai NNP Amityville NNP Amityvilles NNPS Amman NNP Ammann NNP Ammonium NN Ammunition NNP Amneris NNP Amoco NNP Amoco-led JJ Amomng JJ Amon NNP Amonasro NNP Among IN Amor FW Amorim NNP Amory NNP Amos NNP Amoskeag NNP Amounts NNS Amp NNP Amparano NNP Amperex NNP Amra NN Amram NNP Amro NNP Amschel NNP Amstel NNP Amsterdam NNP Amsterdam-Rotterdam NNP Amstrad NNP Amt FW Amtech NNP Amtrak NNP Amtran NNP Amudarya NNP Amundsen NNP Amusement NN Amusements NNPS Amusing JJ Amvest NNP Amway NNP Amy NNP Amylin NNP An DT An-12 NN Ana NNP AnaMor NNP Anabaptist NN Anabaptists NNPS Anabel NNP Anac NNP Anacomp NNP Anaconda NN Anadarko NNP Anaheim NNP Anaheim-Santa NNP Analog NNP Analogously RB Analyses NNS Analysis NNP Analyst NN Analysts NNS Analytic NNP Analytical NNP Analytrol NNP Analyzer NNP Anand NNP Anania NNP Anarcho-Syndicalists NNPS Anastasio NNP Anat NNP Anatol NNP Anatole NNP Anatoly NNP Anatomically RB Ancel NNP Anchisi NNP Anchor NNP Anchorage NNP Anchorite NN Ancient NNP Ancinec NNP Ancistrodon NNP Anctil NNP And CC Andalusians NNPS Andean JJ Andee NNP Andel NNP Anderlini NNP Anders NNP Andersen NNP Andersen-Price NNP Anderson NNP Andersson NNP Andes NNPS Andi NNP Andover NNP Andras NNP Andre NNP Andrea NNP Andreas NNP Andreassen NNP Andree NNP Andrei NNP Andrena NNP Andreotti NNP Andres NNP Andress NNP Andrew NNP Andrews NNP Andriessen NNP Andris NNP Androfski NNP Androgyny NN Andromache NNP Andrus NNP Andruses NNPS Andrzej NNP Andy NNP Anfia NNP Angel NNP Angel\ NNP Angela NNP Angelenos NNP Angeles NNP Angeles-Pasadena NNP Angeles-area JJ Angeles-based JJ Angelica NNP Angelico NNP Angelina NNP Angell NNP Angellism NNP Angelo NNP Angels NNPS Angenics NNP Anger VBP Angers NNP Angevine NNP Angie NNP Angier NNP Angkor NNP Angleterre FW Anglia NNP Anglian JJ Anglican NNP Anglicanism NN Anglicans NNS Anglo NNP Anglo-American NNP Anglo-Americans NNPS Anglo-Argentine NNP Anglo-Dutch JJ Anglo-French JJ Anglo-Irish JJ Anglo-Jewish JJ Anglo-North JJ Anglo-Protestant JJ Anglo-Saxon NNP Anglo-Saxons NNS Anglo\ JJ Anglo\/Dutch NNP Anglophilia NNP Anglophobia NN Angola NNP Angolan JJ Angotti NNP Angrily RB Angrist NNP Angry JJ Angst NN Angus NNP Anhalt-Bernburg NNP Anheuser NNP Anheuser-Busch NNP Anhwei NNP Animal NN Animals NNS Animated JJ Aniseikonic JJ Aniskovich NNP Anita NNP Anjelica NNP Ankara NNP Ankeny NNP Anker NNP Anku NNP Anlage NNP Ann NNP Anna NNP Annalee NNP Annamorena NNP Annandale NNP Annapolis NNP Annaud NNP Anne NNP Anne-Marie NNP Annenberg NNP Annex NNP Annicchino NNP Annie NNP Annihilate VB Annisberg NNP Anniston NNP Anniversary NNP Announced JJ Announcement NN Announces VBZ Annual JJ Annualized VBN Annuities NNS Annuity NNP Anointing VBG Anonymous NNP Another DT Anouilh NNP Anschluss FW Ansco NNP Ansel NNP Anselm NNP Anselmo NNP Ansley NNP Anson NN Anspach NNP Answer NN Answers VBZ Ant NN Anta NNP Antar NNP Antarctic NNP Antarctica NNP Antares NNP Ante NN Antenne NNP Anterior NNP Anthea NNP Anthem NNP Anthology NNP Anthong NNP Anthony NNP Anthropic NNP Anthropologists NNS Anthropology NNP Anti NNP Anti-A NNP Anti-American JJ Anti-Americanism NNP Anti-Ballistic NNP Anti-Ballistic-Missile JJ Anti-Christ NNP Anti-Communist JJ Anti-Deficiency NNP Anti-Jones JJ Anti-Semite NN Anti-Semitic JJ Anti-Swapo JJ Anti-Wrinkle NNP Anti-abortion JJ Anti-apartheid JJ Anti-dumping JJ Anti-nuclear JJ Anti-recession NN Anti-union JJ Antibody NN Anticipated VBN Anticipating VBG Anticipation NN Antietam NNP Antigone NNP Antigua NNP Antilles NNPS Antinomians NNS Antinori NNP Antioquia NNP Antique NNP Antiques NNPS Antiquity NN Antisubmarine JJ Antithyroid JJ Antitrust NNP Antler NNP Antoine NNP Antoinette NNP Antolini NNP Anton NNP Antone NNP Antoni NNP Antonia NNP Antonin NNP Antonini NNP Antonio NNP Antonio-based JJ Antonovich NNP Antony NNP Antori NNP Ants NNS Antwerp NNP Antwerp-based JJ Antwerpsche NNP Anwar NN Anxiety NNP Anxious JJ Any DT Anybody NN Anyhow RB Anyone NN Anything NN Anytime RB Anyway RB Anywhere RB Anzilotti NNP Aoki NNP Aon NNP Aouelloul NNP Aoun NNP Aoyama NNP Apache NNP Apaches NNPS Apalachicola NNP Apar NNP Aparicio NNP Apart RB Apartheid NNP Apartment NN Apartments NNP Ape NNP Apergillus NN Apex NNP Aphrodite NNP Apicella NNP Apocalypse NNP Apocalyptic NNP Apocrypha NNPS Apogee NNP Apollinaire NNP Apollo NNP Apollonian JJ Apolo NNP Apologia NN Apologie NNP Apologies NNS Apology NNP Apostles NNPS Apostolakis NNP App NNP App. NNP Appalachia NNP Appalachian NNP Appalachians NNPS Appalled JJ Appaloosas NNPS Apparatus NN Apparel NN Apparently RB Appeal NNP Appealing VBG Appeals NNPS Appear VBP Appearance NN Appel NNP Appelbaum NNP Appell NNP Appellate NNP Appendix NN Appendixes NNS Appert NNP Appian NNP Appignanesi NNP Applause NN Apple NNP Apple-Microsoft NNP Applebaum NNP Applebee NNP Appleby NNP Apples NNS Appleseed NNP Appleseeds NNPS Appleton NNP Appleyard NNP Appliances NNPS Application NNP Applications NNS Applied NNP Applying VBG Appointed VBN Appointment NN Appraisers NNPS Appreciation NNP Apprehensively RB Apprentice NNP Approach NNP Approached VBN Approaches NNS Approaching VBG Appropriate JJ Appropriately RB Appropriation NNP Appropriations NNP Approval NN Approvals NNS Approved VBN Approximately RB April NNP April-June NNP Aprile NNP Apropos RB Aprotinine NNP Apt JJ Aptitude NNP Aqazadeh NNP Aqua NNP Aqua-Ban NNP Aquacutie NNP Aqualon NNP Aquidneck NNP Aquifers NNS Aquinas NNP Aquino NNP Aquitaine NNP Ara NNP Arab NNP Arab-Israeli JJ Arab-sponsored JJ Arabia NNP Arabian NNP Arabian-American NNP Arabians NNPS Arabic NNP Arabist JJ Arabs NNPS Araby NNP Arafat NNP Aragon NNP Arai NNP Arakawa NNP Aral NNP Aral'sk NNP Aramis NNP Aran NNP Aransas NNP Arapacis NNP Araskog NNP Arata NNP Arau NNP Arbeitskommando NNP Arbel NNP Arbitrage NN Arbitrage-related JJ Arbitragers NNS Arbitraging VBG Arbitrary NNP Arbitration NN Arbogast NNP Arbor NNP Arboretum NNP Arbs NNS Arbuckle NNP Arby NNP Arc NNP Arcadian NNP Arcadipane NNP Arcata NNP Arch NNP Archaeology NNP Archangel NNP Archbishop NNP Archbishops NNS Archer NNP Archer-Daniels-Midland NNP Archey NNP Archibald NNP Archie NNP Archimedes NNP Archipelago NNP Architect NNP Architects NNS Architecture NNP Archive NNP Archives NNPS Archuleta NNP Arcilla NNP Arco NNP Arctic NNP Arden NNP Ardent NNP Ardito NNP Ardito-Barletta NNP Ardmore NNP Are VBP Area NNP Areas NNS Arena NNP Arenberg NNP Arens NNP Arenula NNP Arequipa NNP Ares NNP Arfeen NNP Argabright NNP Argas NNP Argent NNP Argentina NNP Argentine JJ Argentines NNPS Argentinian JJ Arger NNP Argiento NNP Argive NNP ArgoSystems NNPS Argon NN Argonauts NNPS Argonne NNP Argos NNP Arguably RB Arguing VBG Arguments NNS Argumenty NNP Argus NNP Argyll NNP Argyros NNP Arhat NNP Arhats NNPS Ariadne NNP Ariail NNP Ariane NNP Arianespace NNP Arianism NNP Arianist NNP Arianists NNS Arias NNP Aricaras NNPS Ariel NNP Arigato FW Arighi NNP Aril NNP Arimathea NNP Aristech NNP Aristide NNP Aristotelean-Thomistic JJ Aristotelian JJ Aristotle NNP Arithmetic NNP Ariz NNP Ariz. NNP Ariz.-based JJ Arizona NNP Arizona-related JJ Ark NNP Ark. NNP Ark.-based JJ Arkabutla NNP Arkansas NNP Arkansas-based JJ Arkhangelsk NNP Arkhipov NNP Arkla NNP Arkoma NNP Arland NNP Arlauskas NNP Arleigh NNP Arlen NNP Arlene NNP Arles NN Arlin NNP Arlington NNP Arlt NNP Arm NN Armada NNP Armageddon NN Armand NNP Armani NNP Armas NNP Armbro NNP Armco NNP Armed NNP Armen NNP Armenia NNP Armenian JJ Armenians NNPS Armentieres NNP Armide NN Armies NNP Armin NNP Armisteads NNPS Armistice NNP Armitage NNP Armond NNP Armonk NNP Armor NNP Armored NNP Armory NNP Armour NNP Arms NNP Armstrong NNP Armuelles NNP Army NNP Arnault NNP Arne NNP Arnell NNP Arnell\/Bickford NNP Arney NNP Arnhem NNP Arnold NNP Arnold-Foster NNP Arnolphe NNP Arnott NNP Aro NNP Aromatiques NNP Aronson NNP Aroostook NNP Aros NNP Around IN Aroused VBN Arp NNP Arpanet NNP Arpege NNP Arpino NNP Arps NNP Arrack NN Arragon NNP Arraignment NN Arraignments NNS Arrange VB Arrangement NNP Arrangements NNS Arranging VBG Arrayed VBN Arrest NN Arrested VBN Arrington NNP Arriving VBG Arrow NNP Arrowhead NNP Arroyo NNP Arseneault NNP Arsenio NNP Arseny NNP Arshinkoff NNP Art NNP Arte NNP Artemis NNP Artemisia NNP Arterial JJ Arteries NN Artesia NNP Artfully RB Arthritis NNP Arthur NNP Arthurian JJ Article NN Articles NNPS Artie NNP Artificer NN Artificial JJ Artillery NN Artisans NNS Artist NNP Artistes NNP Artistic JJ Artists NNPS Artkino NNP Artois NNP Artra NNP Arts NNP Artur NNP Arturo NNP Artzt NNP Aruba NNP Arundel NNP Arvey NNP Arvin NNP Arvind NNP Arx NNP As IN Asada NNP Asahi NNP Asahipen NNP Asarco NNP Asbestos NNP Asbury NNP Ascent NNP Asch NNP Aschenbach NNP Ascii NNP Asea NNP Asean JJ Asensio NNP Ash NNP Ash-Can NNP Ashamed JJ Ashcroft NNP Ashenberg NNP Asher NNP Asher\/Gould NNP Asheville NNP Ashikaga NNP Ashington-Pickett NNP Ashkhabad NNP Ashland NNP Ashley NNP Ashman NNP Ashmolean NNP Ashok NNP Ashtabula NN Ashton NNP Ashton-Tate NNP Ashurst NNP Ashwood NNP Asia NNP Asia-Pacific NNP Asia\ JJ Asia\/Pacific JJ Asian JJ Asian-American JJ Asian-Americans NNPS Asian-owned JJ Asians NNPS Asiatic JJ Aside RB Asides NNP Asil NNP Asilomar NNP Asilone NNP Asimov NNP Ask VB Aska NNP Asked VBN Askin NNP Askington NNP Asks VBZ Aslacton NNP Aslanian NNP Asleep RB Asman NNP Asmara NNP Aspe NNP Aspects NNPS Aspen NNP Aspencade NNP Aspencades NNPS Aspenstrom NNP Aspercreme NNP Aspilia NN Aspin NNP Aspirin NNP Asquith NNP Asra NNP Ass'n NNP Ass'ns NNP Assab NNP Assad NNP Assam NNP Assassination NNP Assemble VB Assemblies NNP Assembly NNP Assemblyman NNP Assemblywoman NNP Asser NNP Asserts VBZ Asses NNS Assess VB Assessment NNP Assessors NNS Asset NNP Asset-Backed JJ Asset-backed JJ Asset-management JJ Assets NNS Assicurazioni NNP Assign VB Assignation NN Assimilation NNP Assiniboia NNP Assiniboine NNP Assist NNP Assistance NNP Assistant NNP Assisting VBG Assn NNP Assn. NNP Associate NNP Associated NNP Associates NNPS Association NNP Association-College NNP Associations NNP Assonance NN Assume VB Assuming VBG Assumption NN Assurance NNP Assurances NNP Assuredly RB Assyrian NNP Assyriology NN Asta NNP Astaires NNPS Astarte NNP Astec NNP Asteria NNP Asteroidal JJ Asti NNP Astin NNP Aston NNP Astonishingly RB Astor NNP Astoria NNP Astra NNP Astrid NNP Astrodome NNP Astronaut NN Astronauts NNS Astronomy NN Astrophysicist NN Astros NNPS Astwood NNP Aswara NNP Asylum NNP At IN Atala NNP Atalanta\/Sosnoff NNP Atari NNP Atchinson NNP Atco NNP Ate VBD Ateliers NNP Aterman NNP Ath. NNP Athabascan NNP Athalie NNP Athanassiades NNP Athearn NNP Atheist NNP Athena NNP Athenaeum NNP Athenian JJ Athenians NNPS Athens NNP Atherton NNP Athlete NNP Athletic NNP Athletics NNP Athlone NNP Atkins NNP Atkinson NNP Atkisson NNP Atkissons NNPS Atlanta NNP Atlanta-Chicago NNP Atlanta-based JJ Atlantans NNPS Atlantes NN Atlantic NNP Atlantica NNP Atlantis NNP Atlas NNP Atlas-Centaur NNP Atlee NNP Atmospheric NNP Atomic NNP Atomics\/Combustion NNP Atone VB Atonement NN Atonio NNP Atop IN Atorino NNP Atra NNP Atreus NNP Atrium NNP Atsushi NNP Atta NN Attack NNP Attacks VBZ Attakapas NNP Attali NNP Attanasio NNP Attempts NNS Attendance NN Attendants NNPS Attending VBG Attention NN Attermann NNP Attic NNP Attica NNP Attila NNP Attilio NNP Attitude NN Attitudes NNS Attlee NNP Attopeu NNP Attorney NNP Attorneys NNS Attorneys-at-Large NNP Attracted VBN Attraction NNP Attractions NNPS Attribute NNP Attributes NNS Attridge NNP Attrition NN Attu NNP Attwood NNP Atty. NNP Atwell NNP Atwells NNP Atwood NNP Atzez NNP Au FW AuCoin NNP Auberge NNP Aubr. NNP Aubrey NNP Auburn NN Auckland NNP Auction NN Auctions NNS Audi NNP Audience NN Audio NNP Audiovisual NNP Audit NNP Auditorium NNP Auditors NNS Audits NNPS Audrey NNP Audubon NNP Auerbach NNP Auf NNP Aug. NNP Auger NNP August NNP Augusta NNP Augustan NNP Augustin NNP Augustine NNP Augustines NNPS Augusto NNP Augustus NNP Aul NNP Aulnay NNP Aung NNP Aunt NNP Auntie NNP Aunts NNS Aureliano NNP Aurelius NNP Aureomycin NN Aurora NNP Auschwitz NNP Aussedat NNP Austin NNP Austins NNPS Australasian JJ Australia NNP Australia-based JJ Australia-wide JJ Australian JJ Australian-American JJ Australian-Chinese JJ Australian-based JJ Australians NNS Australites NNS Austria NNP Austrian JJ Austrian-Argentine JJ Austro-Hungarian JJ Authenticated VBN Authentication NNP Author NNP Authorities NNS Authority NNP Authority-Garden NNP Authors NNS Auto NN Auto-Europe NNP Auto-parts JJ AutoPacific NNP AutoWorld NNP Autobiographies NNS Autobiography NNP Autocamiones NNP Autocoder NN Autocollimator NN Autocracies NNPS Autodesk NNP Autolatina NNP Automated NNP Automatic NNP Automatically RB Automation NNP Automax NNP Automobile NNP Automobiles NNS Automobili NNP Automotive NNP Autorapido NNP Autos NNS Autosuggestibility NN Autozam NNP Autry NNP Autumnal JJ Auvil NNP Auxiliaries NNPS Auxiliary NNP Av NNP Av. NNP Ava NNP Available JJ Avalon NNP Avant-garde NN Avantor NNP Avco NNP Avdel NNP Ave NNP Ave. NNP Avedisian NNP Avelar NNP Avena NNP Aventine NNP Aventino NNP Avenue NNP Avenues NNP Averae NNP Average NNP Averages NNP Averell NNP Avery NNP Avi NNP Aviacion NNP Avianca NNP Aviation NNP Aviazione NNP Aviion NNP Avions NNP Avis NNP Aviv NNP Aviva NNP Avmark NNP Avner NNP Avnet NNP Avocado NNP Avocados NNS Avoid VB Avoidance NNP Avoiding VBG Avoids VBZ Avon NNP Avondale NNP Avowed JJ Avrett NNP Aw UH Awad NNP Awake NNP Awakening NNP Award NNP Awarding VBG Awards NNP Aware JJ Awareness NN Away RB Awe NN Awesome JJ Awkwardly RB Awww UH Ax NNP Axa NNP Axa-Midi NNP Axe NNP Axel NNP Axelrod NNP Axioms NNS Axis NNP Axxess NNP Ayala NNP Ayatollah NNP Aycock NNP Aye-yah-ah-ah UH Ayer NNP Ayers NNP Aylesbury NNP Ayob NNP Ayres NNP Aysshom NNP Ayub NNP Azabu NNP Azalea NNP Azara NNP Azcuenaga NNP Azem NNP Azerbaijan NNP Azerbaijani NNP Azioni NNP Aziz NNP Aziza NNP Azlant NNP Azoff NNP Aztar NNP Aztec JJ Azucena NNP Azusa NNP B NNP B&B NNP B&H NNP B&W NNP B'Gosh NNP B'dikkat NNP B'dikkat's NNS B'nai NNP B'rith NNP B-1 NNP B-1B NNP B-1s NNPS B-2 NNP B-2s NNPS B-3 JJ B-4 NNP B-47 NN B-52 NNP B-52H NN B-52s CD B-58 NN B-70 NNP B-As IN B-I-G NNP B-cell NN B-cells NNS B-flat NN B-movie NN B-scale NN B. NNP B.A. NNP B.A.T NNP B.A.T... : B.B. NNP B.B.C. NNP B.C NN B.C. NN B.C.-based JJ B.D. NNP B.F. NNP B.G. NNP B.J. NNP B.M. NNP B.S. NNP B.U. NNP B.V NNP B.V. NNP B.t.u. NN B2 NN B70 NN BA NNP BACK RB BACKED VBD BAHAMIAN JJ BAII NNP BAKER NNP BAKKER NNP BALANCES NNS BALKS VBZ BALLOT NN BALLOTS NNS BALLY'S NNP BAM NNP BANCORP NNP BANCORPORATION NNP BANK NNP BANKAMERICA NNP BANKERS NNS BANKS NNS BARKER NNP BAROMETER NN BART NNP BASF NNP BATTLE NN BATTLED VBD BAY NNP BAe NNP BBB NNP BBC NNP BBDO NNP BBN NNP BCA NNP BCD NNP BCE NNP BCED NNP BCI NNP BCS NNP BDDP NNP BDO NNP BE VB BE&K NNP BEA NNP BEAM NNP BEARS NNP BEAT NN BEAVER NNP BECHTEL NNP BECOME VB BEEN VBN BEER NN BEGAN VBD BEI NNP BEING VBG BELEAGUERED JJ BELL NNP BENEFITS NNS BENTSEN NNP BERNARD NNP BEST JJS BET NNP BEVERLY NNP BEWARE VB BG NNP BGS NNP BHP NNP BIA-COR NNP BICC NNP BID NNP BIG NNP BIGGER JJR BILL NN BILLS NNS BILZERIAN'S NNP BIO-RAD NNP BIOTECHNOLOGY NN BIP NNP BIRDS NNS BITCH NN BK NNP BL NNP BLACK JJ BLAME VB BLAST NN BLIP NNP BLOCK NNP BLOCKBUSTER NNP BLOEDEL NNP BLOOD NN BLOW NNP BLS NNP BLUE JJ BLUES NNPS BMA NNP BMC NNP BMEWS NNP BMI NNP BMIRs NNPS BMP NN BMP-1 NN BMT NNP BMW NNP BMWs NNS BNL NNP BNP NNP BOARD NNP BOARD'S NNP BOAST VB BOC NNP BOD NN BOD1,000 NN BOEING NNP BOGGS NNP BOJ NNP BOND NN BONDS NNS BONO FW BONUSES NNS BOOSTS NNS BORLAND NNP BOSSES NNP BOSTON NNP BOTH DT BOTTLED VBN BOZELL NNP BP NNP BPB NNP BPC NNP BPCA NNP BPD NNP BRACED NNP BRADSTREET NNP BRAINTRUSTERS NNS BRAMALEA NNP BRANDS NNPS BRANIFF'S NNP BREADBOX NN BREAKERS NNP BREWERS NNS BREWS VBZ BRIDGEPORT NNP BRIEFS NNS BRING VB BRISTOL-MYERS NNP BRITANNICA NNP BRITISH JJ BRK NNP BRNF NNP BROAD NNP BROADCASTING NNP BROKERAGE NN BROWN-FORMAN NNP BRUT NNP BS NNP BSB NNP BSN NNP BSPP NNP BT NNP BTL NNP BTR NNP BTU NNP BUELL NNP BUFFALO NNP BUILDING NNP BULL NNP BUNDY'S NNP BURBANK NNP BURNHAM NNP BUSH NNP BUSINESS NN BUSINESSLAND NNP BUSY JJ BUT CC BUY-OUT NN BUYERS NNS BUYING NN BV NNP BVI NNP BVI-based JJ BVIslander NN BVIslanders NNS BW NNP B\/C NN B\/T NNP Ba-1 JJ Ba-2 JJ Ba-3 JJ Ba2 JJ Ba3 JJ Baa-1 JJ Baa-2 JJ Baa-3 JJ Baa1 JJ Baa2 JJ Baa3 JJ Baar NNP Babatunde NNP Babbitt NNP Babble NN Babcock NNP Babe NNP Babel NNP Babelists NNS Babies NNS Babin NNP Babin-Festival NNP Babson NNP Baby NNP Baby-dear NNP Babylon NNP Babylonian JJ Babylonians NNPS Bacardi NNP Bacarella NNP Baccarat NNP Bacchus NNP Bach NNP Bacharach NNP Bache NNP Bachelor NNP Baches NNPS Bachlund NNP Bachman NNP Bachmann NNP Bachtold NNP Bacillus NN Back RB Back-of-the-envelope JJ Back-to-back JJ Backbends NNS Backe NNP Backed VBN Backer NNP Backers NNS Background NN Backhaus NNP Backing VBG Backlog NN Backs VBZ Backseat NN Backstage RB Backstairs NNS Backstitch VB Backstitching VBG Backup JJ Backward NNP Backyard NN Bacon NNP Bacteria NNS Bacterial JJ Bad JJ Badder NNP Baden-Baden NNP Baden-Wuerttemberg NNP Baden-Wuerttemburg NNP Bader NNP Badges NNS Badin NNP Badlands NNS Badly RB Badrawi NNP Badura-Skoda-Vienna NNP Baer NNP Baeyens NNP Baeyenses NNP Baffin NNP Bafflers NNPS Bag NN Bagatelles NNPS Bagcraft NNP Baggage NN Bagging VBG Bagh NNP Baghdad NNP Bagley NNP Bagneaux NNP Bagnoli NNP Bags NNS Bah UH Bahamas NNPS Bahamian JJ Bahar NNP Bahcall NNP Bahi NNP Bahia NNP Bahr NNP Bahrain NNP Bahre NNP Bahrenburg NNP Baiba NNP Bailard NNP Baileefe NNP Bailey NNP Bailiffs NNS Bailit NNP Bailkin NNP Bailly NNP Bailout NNP Baily NNP Baim NNP Bain NNP Bainbridge NNP Baines NNP Baird NNP Bairnco NNP Bait NNP Baja NNP Bajakian NNP Bake NNP Bake-Off NNP Bake-off NNP Baker NNP Baker-Shevardnadze NNP Bakeries NNP Bakersfield NNP Bakery NNP Bakes NNP Bakhtiari NNP Baking NNP Bakker NNP Bakkers NNPS Baku NNP Bal NNP Bala NNP Balafrej NNP Balag NNP Balaguer NNP Balance NNP Balanced VBN Balances NNP Balanchine NNP Balcerowicz NNP Balch NNP Balcolm NNP Balcor NNP Bald NNP Baldness NN Baldor NNP Baldrige NNP Baldry NNP Baldwin NNP Baldy NNP Balenciaga NNP Bales NNP Balfour NNP Bali NNP Baliles NNP Balinese NNP Balkan NNP Balkanize VB Balkanized JJ Balkanizing VBG Balkans NNPS Balking VBG Ball NNP Ballad NNP Balladur NNP Ballantine NNP Ballantine\/Del NNP Ballard NNP Ballenger NNP Ballestre NNP Ballet NNP Ballets NNP Balletto NNP Ballhaus NNP Ballinger NNP Ballistic NNP Ballon NNP Balloon NNP Ballooning NN Ballot NN Ballou NNP Ballroom NNP Ballwin NNP Bally NNP Balmain NNP Balmer NNP Balmy JJ Balogh NNP Balsbaugh NNP Baltasar NNP Baltensweiler NNP Baltic JJ Baltimore NNP Baltimore-Washington NNP Baltimore-based JJ Baltimorean NNP Balts NNPS Baluchis NNPS Baly NNP Balzac NNP Bam UH Bamberger NNP Bambi NNP Bambi-syndronists NNS Bamboo JJ Bamford NNP Bamsi NNP BanPonce NNP Banana NNP Bananas NNS Banawan NNP Banawans NNPS Banbury NNP Banc NNP BancNewEngland NNP BancOklahoma NNP Banca NNP Bancaire NNP Bancario NNP Banco NNP Bancorp NNP Bancorp. NNP Bancroft NNP Bancshares NNPS Band NNP Band-Aid NNP Banda NNP Bandaging NNP Bandar NNP Bandini NNP Bandish NNP Bandit NN Bandler NNP Bandon NNP Bandow NNP Bandstand NN Bane NNP Banerian NNP Banfield NNP Bang NNP Bang-Jensen NNP Bangalore NNP Bangemann NNP Bangkok NNP Bangkok-Rangoon NNP Bangkok-based JJ Bangladesh NNP Bangles NNPS Bangs NNP Bani NNP Banjo NNP Bank NNP Bank-America NNP Bank-Texas NNP BankAmerica NNP BankTexas NNP BankWatch NNP Bank\/IMF NNP Bank\/Tidewater NNP Bankcard NNP Banker NNP Bankers NNPS Bankhaus NNP Bankhead NNP Banking NNP Bankler NNP Banknote NNP Bankrolled VBN Bankruptcy NNP Bankruptcy-court NN Bankrupty NNP Banks NNP Bankshares NNPS Bankverein NNP Banner NNP Banners NNS Banning VBG Bannister NNP Banoun NNP Banque NNP Banquet NNP Bans NNP Banstar NNP Bantam NNP Bante NNP Bantu NNP Bantus NNPS Banvel NNP Banxquote NNP Bapepam NNP Bapilly NNP Baptist NNP Baptiste NNP Baptists NNS Bar NNP Bar-H NNP Bar-Shavit NNP Barabba NNP Barabolak NNP Baraclough NNP Barakat NNP Baranovichi NNP Barasch NNP Barataria NNP Barba NNP Barbados NNP Barbakow NNP Barbanell NNP Barbara NNP Barbaresco NNP Barbarians NNP Barbariccia NNP Barbary JJ Barbaud NNP Barbecued JJ Barbee NNP Barber NNP Barber-Greene NNP Barbera NNP Barberini NNP Barberis NNP Barberton NNP Barbie NNP Barbier-Mueller NNP Barbour NNP Barbra NNP Barbudos NNPS Barcalounger NNP Barcelona NNP Barcelona-based JJ Barclay NNP Barclays NNP Barco NNP Barcus NNP Bard NNP Bard\/EMS NNP Bardagy NNP Bardall NNP Bardell NNP Bare JJ Bare-Faced NNP Barell NNP Barely RB Barend NNP Barenholtz NNP Barfield NNP Bargain NN Bargain-hunters NNS Bargain-hunting NN Barge NNP Bargen NNP Bargerter NNP Barges NNS Bari NNP Barilla NNP Baring NNP Baringer NNP Barings NNPS Baris NNP Barker NNP Barkin NNP Barkley NNP Barksdale NNP Barletta NNP Barlow NNP Barmore NNP Barn NNP Barnaba NNP Barnabas NNP Barnard NNP Barnes NNP Barnet NNP Barnett NNP Barnevik NNP Barney NNP Barneys NNP Barnhardt NNP Barnhill NNP Barnicle NNP Barnum NNP Barnumville NNP Barokocy NNP Baron NNP Baroque JJ Barr NNP Barrah NNP Barre NNP Barre-Montpelier NNP Barred VBN Barreiro NNP Barrel NN Barren NNP Barret NNP Barrett NNP Barrette JJ Barrick NNP Barrie NNP Barrier NNP Barriers NNS Barring VBG Barrington NNP Barrio NNP Barrios NNP Barris NNP Barrister NNP Barristers NNS Barron NNP Barrow NNP Barry NNP Barrymores NNPS Bars NNP Barsacs NNPS Barshop NNP Barsky NNP Barstow NNP Barsuki NNP Bart NNP Barter NN Barth NNP Bartha NNP Bartholf NNP Bartholow NNP Bartleby NNP Bartlesville NNP Bartlett NNP Bartok NNP Bartol NNP Bartoli NNP Barton NNP Bartville NNP Baruch NNP Baruschke NNP Bas NNP Bascom NNP Base NNP Baseball NN Based VBN Basel NNP Basel-based JJ Baseman NN Basement NN Basf NNP Basham NNP Bashaw NNP Bashers NNP Bashing VBG Bashir NNP Basho NNP Basic NNP Basically RB Basics NNP Basie NNP Basil NNP Basile NNP Basin NNP Basing VBG Basinger NNP Basir NNP Baskerville NNP Basket NNP Basketball NNP Baskets NNS Baskin NNP Baskin-Robbins NNP Basking NNP Basler NNP Baslot NNP Basques NNPS Basra NNP Bass NNP Basse NNP Basses NNPS Bassi NNP Bassis NNPS Basso NNP Bast NNP Bastards NNS Bastianini NNP Bastin NNP Basu NNP Bataan NNP Batallion NNP Batallion-2000 NNP Batangas NNP Batavia NNP Batch NN Batchelder NNP Batchelor NNP Bateman NNP Bates NNP Bath NNP Bathar-on-Walli NNP Bather NN Bathing NN Baths NNPS Bathurst NNP Bathyran NNP Bathyrans NNPS Batibot NNP Batista NNP Batman NNP Baton NNP Battalion NNP Battalion-2000 NN Battat NNP Battelle NNP Batten NNP Battenkill NNP Battered VBN Battery NNP Batterymarch NNP Battista NNP Battle NNP Battle-tested JJ Baubles NNPS Baucus NNP Baudelaire NNP Bauer NNP Bauer-Ecsy NNP Bauernfeind NNP Bauhaus NNP Baulieu NNP Baullari NNP Baum NNP Bauman NNP Baumgarten NNP Bausch NNP Bauser NNP Bavaria NNP Bavarian JJ Bawer NNP Baxley NNP Baxter NNP Bay NNP Bay-area JJ Bay-front JJ Bayaderka NNP Bayanihan NNP Bayer NNP Bayerische NNP Bayezit NNP Baykal NNP Baylor NNP Bayne NNP Bayonne NNP Bayou NNP Bayreuth NNP Bays NNP Baytos NNP Baz NNP Bazaar NNP Bazy-Sire NNP Be VB Bea NNP Beach NNP Beachfront NNP Beacon NNP Bead NN Beadle NNP Beadles NNP Beadleston NNP Beads NNPS Beady JJ Beahrs NNP Beairsto NNP Beal NNP Beale NNP Beall NNP Beallsville NNP Beam NNP Beaman NNP Beame NNP Beaming VBG Bean NNP Beantown NNP Bear NNP Beard NNP Bearden NNP Beardens NNPS Beardslee NNP Beardsley NNP Beare NNP Bearer NN Bearings NNP Bearishness NN Bearman NNP Bears NNPS Bears-Cleveland NNP Beast NNP Beat NNP Beaten VBN Beatie NNP Beatitudes NNPS Beatlemania NN Beatles NNPS Beatrice NNP Beatty NNP Beau NNP Beaubien NNP Beauchamps NNPS Beauclerk NNP Beaufort NNP Beaujolais NNP Beaulieu NNP Beaumont NNP Beauregard NNP Beautiful JJ Beauty NNP Beaux NNP Beaux-Arts NNP Beaver NNP Beaverton NNP Beazer NNP Bebe NNP Bebear NNP Bebey NNP Bebop NNP Becalmed VBN Became VBD Because IN Becca NNP Beccaria NNP Bechhofer NNP Becht NNP Bechtel NNP Beck NNP Becker NNP Becket NNP Beckett NNP Beckman NNP Beckstrom NNP Beckwith NNP Beckworth NNP Become VB Becoming VBG Becton NNP Bed NN Bedbugs NNS Beddall NNP Bede NNP Bedfellows NNS Bedford NNP Bedford-Stuyvesant... : Bedminster NNP Bedouins NNS Bedridden JJ Bedtime NN Bee NNP Bee-Hunter NNP Beebe NNP Beebes NNPS Beech NNP Beech-Nut NNP BeechNut NNP Beecham NNP Beecher NNP Beechnut NNP Beef NN Beefeater NNP Beefing VBG Beefsteak NNP Been VBN Beep NNP Beer NN Beermann NNP Beers NNP Beesemyers NNP Beet NNP Beethoven NNP Before IN Begbick NNP Begelman NNP Beggiato NNP Begging VBG Beghin NNP Beghin-Say NNP Begin VB Beginners NNS Beginning VBG Begins VBZ Begley NNP Behague NNP Behan NNP Behavior NN Behaviour NN Beheading VBG Behind IN Behind-the-scenes JJ Behold VB Behrendt NNP Behrens NNP Behringwerke NNP Beiderbecke NNP Beige NNP Beigel NNP Beijing NNP Being VBG Beira NNP Beirut NNP Beirut-on-Hudson NNP Beise NNP Beismortier NNP Beit NNP Bekaa NNP Bekkai NNP Bel NNP Bel-Air NNP Bela NNP Belafonte NNP Belanger NNP Belasco NNP Belated JJ Belatedly RB Belding NNP Belfast NNP Belge NNP Belgian JJ Belgians NNPS Belgique NNP Belgium NNP Belgrade NNP Belief NN Belier NNP Believe VB Believing VBG Belin NNP Belinda NNP Belisle NNP Belk NNP Belknap NNP Bell NNP BellSouth NNP BellSouth-LIN NNP BellSouth\ JJ Bella NNP Bellamy NNP Bellarosa NNP Bellas NNP Bellcore NNP Belle NNP Belletch NNP Belleville NNP Bellevue NNP Belli NNP Bellinger NNP Bellingham NNP Bellini NNP Bellman NNP Bello NNP Bellomo-McGee NNP Bellow NNP Bellows NNP Bells NNPS Bellwood NNP Belmont NNP Belmonts NNPS Belo NNP Belo-Universal NNP Belorussian NNP Beloved NNP Below IN Belshazzar NNP Belt NNP Belth NNP Belton NNP Beltway NNP Beltway-itis NN Belvedere NNP Belvidere NNP Belvieu NNP Belway NNP Belz NNP Belzberg NNP Belzbergs NNPS Belzec NNP Beman NNP Ben NNP Ben-Gurion NNP Ben-hadad NNP Benackova NNP Benanav NNP Benazir NNP Bench NNP Benched NNP Benchley NNP Benchmark JJ Bend NNP Benda NNP Bendectin NNP Bendix\/King NNP Bendjedid NNP Beneath IN Benedek NNP Benedetti NNP Benedetto NNP Benedick NNP Benedictine JJ Benediction NNP Benefactor NNP Beneficial NNP Beneficiaries NNS Beneficiary NN Benefit NNP Benefits NNS Benelli NNP Benelux NNP Benes NNP Benesi NNP Benet NNP Benets NNPS Benetton NNP Beng NNP Bengal NNP Bengali JJ Bengalis NNPS Bengals NNPS Bengals-Browns JJ Bengt NNP Benham NNP Benigno NNP Benin NNP Benington NNP Benita NNP Benito NNP Benj NNP Benjamin NNP Bennett NNP Bennett-Bloom NNP Bennigsen-Foerder NNP Benninger NNP Bennington NNP Bennis NNP Benno NNP Benny NNP Benoit NNP Bens NNP Benson NNP Bensonhurst NNP Bensten NNP Bent NNP Bent-Arm NNP Bentham NNP Bentley NNP Bentleys NNPS Benton NNP Bentsen NNP Benz NNP Benzedrine NNP Benzell NNP Benzes NNP Benzinger NNP Beowulf NNP Berard NNP Berardi NNP Berber JJ Berbera NNP Berche NNP Berea NNP Berean NNP Beregevoy NNP Beregovoy NNP Berens NNP Beresford NNP Berets NNPS Beretta NNP Berettas NNS Bereuter NNP Berg NNP Bergamaschi NNP Bergelt NNP Bergen NNP Berger NNP Bergman NNP Bergsma NNP Bergson NNP Bergsten NNP Bering NNP Beringer NNP Berkeley NNP Berkely NNP Berkley NNP Berkman NNP Berko NNP Berkowitz NNP Berks NNP Berkshire NNP Berkshires NNP Berlack NNP Berland NNP Berlaymont NNP Berle NNP Berlin NNP Berlin-West NNP Berliner NNP Berliners NNP Berlioz NNP Berlitz NNP Berlusconi NNP Berman NNP Bermuda NNP Bermuda-based JJ Bermuda-registered JJ Bermudez NNP Bern NNP Bernadine NNP Bernard NNP Bernardin NNP Bernardine NNP Bernardo NNP Berndt NNP Berne NNP Berner NNP Bernet NNP Bernhard NNP Bernhardt NNP Bernie NNP Berniece NNP Bernini NNP Bernoulli NNP Bernstein NNP Bernstein-Macaulay NNP Bernz-O-Matic NN Berol NNP Beronio NNP Berra NNP Berrellez NNP Berri NNP Berridge NNP Berrigan NNP Berry NNP Bershad NNP Berson NNP Bert NNP Berte NNP Bertelsmann NNP Berteros NNPS Berth NNP Bertha NNP Berthelier NNP Berthold NNP Bertie NNP Bertin NNP Berto NNP Bertoia NNP Bertoli NNP Bertolotti NNP Bertolt NNP Berton NNP Bertorelli NNP Bertram NNP Bertrand NNP Bertussi NNP Beryl NNP Beseler NNP Beset VBN Besher NNP Beside IN Besides IN Bess NNP Bessarabia NNP Bessemer NNP Besset NNP Bessie NNP Bessie\/Harper NNP Best JJS Bester NNP Bestimmung FW Bet NNP Beta NNP BetaWest NNP Betancourt NNP Beth NNP BethForge NNP Bethea NNP Bethel NNP Bethesda NNP Bethle NN Bethlehem NNP Betrayed NNP Bets NNS Betsey NNP Betsy NNP Bette NNP Bettencourt NNP Better NNP Better-educated JJ Betting NNP Bettner NNP Betts NNP Betty NNP Between IN Beulah NNP Beutel NNP Bevel VB Beverage NNP Beverages NNP Beverly NNP Bevmark NNP Bevo NNP Bew NNP Beware VB Bewitched NNP Bewkes NNP Bexar NNP Bey NNP Beyeler NNP Beyer NNP Beyond IN Bfree NNP Bhabani NNP Bhagat NNP Bharat NNP Bharati NNP Bhd. NNP Bhirud NNP Bhojani NNP Bhutan NNP Bhutto NNP Biafra NNP Biaggi NNP Biagi NNP Bialystok NNP Bianchi NNP Bianco NNP Bias NNP Bib NNP Bibb NNP Bible NNP Bible-emancipated JJ Bible-loving JJ Bibles NNPS Biblical JJ Biblically RB Bibliography NN Bic NNP Bick NNP Bickel NNP Bickford NNP Bickwit NNP Bicycle NNP Bicycling NNP Bicyclists NNPS Bid NNP Bidard NNP Bidding NN Biddle NNP Biden NNP Bidermann NNP Bids NNS Bieber NNP Biederman NNP Biedermann NNP Biedermeier FW Biehl NNP Bielas NNP Bien NNP Bienville NNP Bierbower NNP Bierce NNP Bietnar NNP Bifutek-san FW Big NNP Big-bucks JJ Bigelow NNP Bigfoot NNP Bigg NNP Bigger JJR Biggest JJS Biggio NNP Biggs NNP Bigness NN BiiN NNP Bike NNP Bikers NNS Biking NNP Bikini NNP Bila NNP Bilanz NNP Bilbao NNP Bilbrey NNP Bill NNP Billard NNP Billboard NNP Billboarding NNP Billed VBN Billerica NNP Billheimer NNP Billiards NNP Billie NNP Billiken NNP Billikens NNP Billing NN Billings NNS Billion CD Billionaire NN Billions NNS Billmeyer NNP Billock NNP Bills NNS Billy NNP Bilzerian NNP Bimini NNP Binary JJ Bince NNP Bindal NNP Binder NNP Bing NNP Bingaman NNP Binghamton NNP Bingles NNS Bingley NNP Bini NNP Binn NNP Binning NNP Binomial NN Biny NNP Bio-Dynamic NNP Bio-Products NNP Bio-Response NNP Bio-Technology NNP Bio-Trends NNP BioScience NNP BioSciences NNP BioVentures NNP Bioanalytical NNP Biochemical NNP Biochemistry NNP Biodegradable JJ Bioengineers NNS Biofeedback NNP Biogen NNP Biographical NNP Bioline NNP Biological JJ Biologicals NNP Biologico NNP Biologics NNP Biologique NNP Biology NNP Biomedicals NNP Biomet NNP Biondi NNP Biondi-Santi NNP Biopharm NNP Biopure NNP Biosciences NNP Biosite NNP Biosource NNP Biosystems NNP Biotech NNP Biotechnical NNP Biotechnology NNP Biovest NNP Bipartisan JJ Birch NNP Bird NNP Birdie NNP Birdpark NNP Birds NNP Birdwhistell NNP Birdwood NNP Birenbaum NNP Birgfeld NNP Birgit NNP Birgitta NNP Birinyi NNP Birk NNP Birkel NNP Birkelund NNP Birkhead NNP Birmingham NNP Birnbaum NNP Birney NNP Birns NNP Birr NNP Birtcher NNP Birth NNP Birthday NN Births NNS Bis NNP Biscayne NNP Bischofberger NNP Biscuit NNP Biscuits NNP Bish NNP Bishop NNP Bishops NNP Bishopsgate NNP Bishun NNP Bisi NNP Bisiewicz NNP Bismarck NNP Bismarckian JJ Bismark NNP Bisque NN Bissell NNP Bissett NNP Bisson NNP Bit NN Bits NNS Bittania NNP Bitten VBN Bitter JJ Bitterness NN Bitting NNP Bittker NNP Bix NNP Bixby NNP BizMart NNP Bizarre JJ Bizerte NNP Bizet NNP Bjerre NNP Blaber NNP Black NNP Black-and-white JJ Blackberry NNP Blackboard NNP Blackburn NNP Blackfeet NNPS Blackfriar NNP Blackhawk NNP Blackjack NNP Blackman NNP Blackmer NNP Blackmun NNP Blackpool NNP Blacks NNS Blackstock NNP Blackstone NNP Blackwell NNP Blackwells NNPS Blackwill NNP Blade NNP Blaggs NNP Blaikie NNP Blain NNP Blaine NNP Blair NNP Blaise NNP Blake NNP Blakes NNS Blakey NNP Blame VB Blamed VBN Blaming VBG Blampied NNP Blanc NNP Blanchard NNP Blanche NNP Blanched VBN Blanco NNP Blancs NNP Bland JJ Blandings NNPS Blandon NNP Blank NNP Blankenship NNP Blanton NNP Blasi NNP Blasingame NNP Blasphemers NNS Blasphemous JJ Blass NNP Blast NNP Blasts NNS Blatz NNP Blauberman NNP Blaustein NNP Blaydon NNP Blazer NNP Bldg NNP Bldg. NNP Bleach NN Bleacher NN Bleaching VBG Bleak NNP Blechman NNP Bleckley NNP Bleckner NNP Bledsoe NNP Bleeker NNP Bleier NNP Blend VB Blendax NNP Blenheim NNP Bless NNP Blessed NNP Blessings NNS Bleus NNP Blevins NNPS Blier NNP Blimp NNP Blind JJ Blinder NNP Blish NNP Blistered VBN Blitz NNP Bloc NNP Bloch NNP Block NNP Blockade NN Blockbuster NNP Blocked VBN Blodgett NNP Bloedel NNP Bloeser NNP Blohm NNP Blois NNP Blomdahl NNP Blomfield NNP Blondes NNP Blood NNP Bloody NNP Bloom NNP Bloomberg NNP Bloomfield NNP Bloomingdale NNP Bloomingdales NNP Bloomington NNP Bloopers NNS Blossom NNP Blot NNP Blount NNP Blowers NNS Blowing NN Blue NNP Blue-chip JJ Blue-chips NNS Bluebird NNP Bluebonnet NNP Bluefield NNP Blueger NNP Blueprints VBZ Blues NNPS Bluff NNP Blum NNP Blumberg NNP Blume NNP Blumenfeld NNP Blumenkrantz NNP Blumenthal NNP Blumstein NNP Blunt NNP Bluntly RB Blush NNP Bluthenzweig NNP Blvd NNP Blvd. NNP Blyth NNP Blythe NNP Bo NNP Boa NN Boadicea NNP Boake NNP Boal NNP Board NNP Board-listed JJ Board-traded JJ Boardman NNP Boardrooms NNS Boards NNPS Boardwalk NNP Boarts NNP Boase NNP Boasts VBZ Boat NNP Boatel NN Boating NNP Boatmen NNPS Boats NNS Boatyards NNS Boaz NNP Bob NNP Bobar NNP Bobbie NNP Bobbsey NNP Bobby NNP Bobettes NNS Bobo NNP Boca NNP Bocas NNP Boccone NNP Bochniarz NNP Bock NNP Bockius NNP Bockris NNP Boddington NNP Bode NNP Bodenheim NNP Bodenseewerk NNP Bodhisattva NNP Bodily NNP Bodin NNP Bodleian NNP Bodmer NNP Bodner NNP Body NNP Body-building JJ Boehlert NNP Boehm NNP Boehmer NNP Boehringer NNP Boehringer-Ingleheim NNP Boeing NNP Boeings NNPS Boeotian NNP Boersen-Zeitung NNP Boesel NNP Boesky NNP Boesky-greed-is-good JJ Boeskys NNP Boettcher NNP Bofors NNP Boga NNP Bogacheva NNP Bogart NNP Bogartian JJ Bogdan NNP Bogdanor NNP Boggs NNP Bogle NNP Bognato NNP Bogner NNP Bogota NNP Bohane NNP Bohart NNP Boheme NNP Bohemia NNP Bohemian NNP Bohemians NNPS Bohlen NNP Bohmerwald FW Bohn NNP Bohrer NNP Boies NNP Boil VB Boils NNS Boily NNP Bois NNP Boisbriant NNP Boise NNP Boise-Cascade NNP Boismassif NNP Boissoneault NNP Boisvert NNP Bokat NNP Boksen NNP Bol NNP Boland NNP Bolanos NNP Bolar NNP Bold NNP Bolduc NNP Bolet NNP Boley NNP Bolger NNP Boliden NNP Bolinas NNP Bolinder NNP Bolingbroke NNP Boliou NNP Bolivar NNP Bolivia NNP Bolivian JJ Bolker NNP Boll NNP Bolling NNP Bollinger NNP Bologna NNP Bolotin NNP Bolovens NNP Bolsa NNP Bolsheviks NNPS Bolshevism NNP Bolshevistic JJ Bolshoi NNP Bolstered VBN Bolstering VBG Bolton NNP Boltz NNP Boltzmann NNP Bomb VB Bombardier NNP Bombay NNP Bombeck NNP Bombers NNS Bombieri NNP Bombus NNP Bon NNP Bonaccolta NNP Bonacquist NNP Bonanno NNP Bonanza NNP Bonaparte NNP Bonasorte NNP Bonaventure NNP Bonavia NNP Bond NNP Bondholder NN Bondholders NNS Bondi NNP Bonds NNS Bonds-b NNP Bonecrusher NNP Boneh NNP Bonenfant NNP Bones NNS Bonett NNP Bonfiglio NNP Bonfire NN Bong UH Bongo NNP Bonham NNP Bonhoeffer NNP Bonhoffer NNP Boni NNP Boniface NNP Bonilla NNP Bonita NNP Bonito NNP Bonjour FW Bonn NNP Bonn-sponsored NNP Bonne NNP Bonnell NNP Bonner NNP Bonnet NNP Bonneville NNP Bonnie NNP Bonnier NNP Bonnierforetagen NNP Bonniers NNP Bonnor NNP Bonomo NNP Bonso NNP Bontempo NNP Bonus NNP Bonuses NNS Bonwit NNP Booby JJ Boogaard NNP Boogie NNP Book NNP Book-of-the-Month NNP Booker NNP Bookies NNS Bookin NNP Bookings NNS Bookman NNP Books NNS Bookshop NNP Bookwalter NNP Boole NNP Boom NNP Boom-city NNP Booming JJ Boon NNP Boon-Sanwa NNP Boondael NNP Boone NNP Boonton NNP Boorse NNP Boorstyn NNP Boost VB Boot NNP Booth NNP Boothby NNP Booths NNS Bootle NNP Boots NNP Booty NN Booz NNP Booz-Allen NNP Borak NNP Borax NNP Bordeau NNP Bordeaux NNP Bordel NNP Borden NNP Bordens NNPS Border NNP Bordetella NN Bordner NNP Bore VB Boredom NN Boren NNP Borg-Warner NNP Borge NNP Borges NNP Borgeson NNP Borghese NNP Borglum NNP Borie NNP Boris NNP Borja NNP Bork NNP Borland NNP Born VBN Born-again JJ Borneo NNP Borner NNP Bornholm NNP Boron NNP Borough NNP Borrioboola-Gha NNP Borromini NNP Borrowed VBN Borrower NN Borrowers NNS Borrowing VBG Borscht NNP Bortel NNP Borten NNP Bosak NNP Bosch NNP Bosco NNP Boseki NNP Bosh NNP Bosis NNP Bosket NNP Boskin NNP Boslego NNP Bosler NNP Bosley NNP Bosphorus NNP Bosque NNP Boss NNP Bosses NNS Bostian NNP Bostic NNP Bostik NNP Bostitch NNP Boston NNP Boston-area JJ Boston-based JJ Bostonian NNP Bostonians NNPS Boswell NNP Bosworth NNP Both DT Botswana NNP Bottega NNP Bottineau NNP Bottlers NNP Bottling NNP Bottom NNP Bottoms NNS Bottorff NNP Botts NNP Botulinal JJ Bouchard NNP Boucher NNP Boucherie NNP Boucheron NNP Boudreau NNP Bougainville NNP Bougie NNP Bouillaire NNP Boulder NNP Boulet NNP Boulevard NNP Boulez NNP Boulle NNP Boulroud NNP Boun NNP Bouncing NNP Boundary NN Bouquet NNP Bourassa NNP Bourbon NNP Bourbons NNPS Bourcier NNP Bourgeois NNP Bourguiba NNP Bourke NNP Bourke-White NNP Bourn NNP Boursault NNP Bourse NNP Bourses NNP Boursin NNP Boutflower NNP Bouton NNP Boutwell NNP Bouvardier NNP Bouvier NNP Bouwer NNP Bouygues NNP Bovard NNP Bovenzi NNP Boveri NNP Bovin NNP Bovine NNP Bow NNP Bowan NNP Bowater NNP Bowden NNP Bowder NNP Bowdoin NNP Bowen NNP Bowenized VBN Bowers NNP Bowery NNP Bowes NNP Bowie NNP Bowing VBG Bowker NNP Bowl NNP Bowlers NNPS Bowles NNP Bowling NNP Bowls NNP Bowman NNP Bowne NNP Bowser NNP Bowsher NNP Box NNP Boxell NNP Boxer NNP Boxes NNP Boxford NNP Boxing NN Boxwood NNP Boxy JJ Boy NN Boy-Lady NNP Boy-Marquita NNP Boy/NNP... : Boyce NNP Boyd NNP Boyde NNP Boyden NNP Boyeki NNP Boyer NNP Boykins NNP Boylan NNP Boylston NNP Boym NNP Boys NNPS Bozell NNP Bozeman NNP Bozic NNP Bozicevich NNP Braathens NNP Brace NNP Brachfeld NNP Bracken NNP Bracknell NNP Brad NNP Bradbury NNP Braddock NNP Braddock-against-the-Indians NNP Braden NNP Bradford NNP Bradford-White NNP Bradlee NNP Bradley NNP Bradsby NNP Bradsher NNP Bradstreet NNP Brady NNP Brady-type JJ Brae NNP Braeuer NNP Bragg NNP Braggadocio NNP Brahm NNP Brahmaputra NNP Brahmin NNP Brahms NNP Brahmsian JJ Braidwood NNP Braille NNP Brailsford NNP Brain NN Brainard NNP Brainards NNPS Brains NNS Braintree NNP Braitman NNP Brake NNP Brakes NNS Braking NNP Brakke NN Bramah NNP Bramalea NNP Bramante NNP Brambles NNP Bramwell NNP Bran NNP Branagan NNP Branca NNP Brancato NNP Branch NNP Branchburg NNP Branches NNS Branching NNP Branchville NNP Brand NN Brand-Name NN Brande NNP Brandeis NNP Brandel NNP Brandenburg NNP Brandes NNP Brandhorst NNP Brando NNP Brandon NNP Brands NNP Brandt NNP Brandy NNP Brandywine NNP Branford NNP Braniff NNP Branigan NNP Branman NNP Brannigan NNP Brannon NNP Branson NNP Brant NNP Brantford NNP Branum NNP Braque NNP Braques NNPS Brascade NNP Brash NNP Brasil JJ Brasilia NNP Brasiliaaircraft NNP Brass NNP Brassbound NNP Brassica NNP Brassnose NNP Brasstown NNP Bratislava NNP Brauchli NNP Braud NNP Brauer NNP Brauerei NNP Braumeisters NNPS Braun NNP Braunreuther NNP Bravado NNP Brave NNP Braverman NNP Braves NNP Braving VBG Bravo NNP Brawer NNP Brawley NNP Brawls NNS Braye NNP Brazelton NNP Brazen NNP Brazil NNP Brazilian JJ Brazilians NNPS Brazos NNP Brea NNP Bread NNP Break NN Breakers NNP Breakey NNP Breakfast NN Breaking VBG Breaks NNP Breakthrough NNP Brealey NNP Brean NNP Breasted NNP Breath NN Breathing NN Breaux NNP Brecht NNP Brechtian JJ Breckenridge NNP Breda NNP Breed NNP Breeden NNP Breeder NNP Breeders NNP Breeding NNP Breen NNP Breene NNP Breger NNP Bregman NNP Brelin NNP Bremen NNP Bremerton NNP Bremner NNP Bremsstrahlung NN Brenda NNP Brendan NNP Brendel NNP Brendle NNP Brenham NNP Brenmor NNP Brenna NNP Brennan NNP Brenner NNP Brent NNP Brentwood NNP Breslin NNP Bressler NNP Brest NNP Brest-Silevniov NNP Brestowe NNP Brethen NNP Bretherick NNP Breton NNP Brett NNP Bretton NNP Bretz NNP Breuer NNP Breuners NNP Brevard NNP Breve NNP Brevet NNP Brevetti NNP Brew NNP Brewer NNP Breweries NNP Brewers NNS Brewery NNP Brewing NNP Brezhnev NNP Brezhnevite NNP Brezinski NNP Brian NNP Briar NNP Briarcliff NNP Bribe NN Brice NNP Brick NNP Bricker NNP Bricklayers NNPS Bricks NNS Bricktop NNP Bricom NNP Bride NNP Brideshead NNP Bridewell NNP Bridge NNP Bridgeport NNP Bridgers NNP Bridges NNP Bridgestone NNP Bridgestone\/Firestone NNP Bridget NNP Bridgeton NNP Bridgetown NNP Bridgeview NNP Bridgeville NNP Bridgewater NNP Brief NNP Briefer NNP Brieff NNP Briefly RB Brien NNP Brierley NNP Brierley-controlled JJ Brig. NNP Brigade NNP Brigadier NNP Brigadoon NNP Brigantine NNP Briggs NNP Brigham NNP Brighetti NNP Bright NNP Brightman NNP Brighton NNP Briksa NNP Brill NNP Brillo NN Brindisi NNP Bring VB Bringing NNP Brink NNP Brinker NNP Brinkley NNP Brinkman NNP Brinsley NNP Brinson NNP Brisbane NNP Briscoe NNP Brisk JJ Brissette NNP Bristol NNP Bristol-Meyers NNP Bristol-Myers NNP Brit NNP Britain NNP Britain-U.S. JJ Britain-dominated JJ Britannia NNP Britannic JJ Britannica NNP Britches NNS British JJ British-American NNP British-Dutch JJ British-French-Israeli JJ British-based JJ British-born JJ British-built JJ British-owned JJ Britisher NNP Britoil NNP Briton NNP Britons NNPS Britta NNP Brittan NNP Brittany NNP Britten NNP Britto NNP Britton NNP Brizola NNP Broad NNP BroadBeach NNP Broadbeach NNP Broadbent NNP Broadcast NNP Broadcasters NNS Broadcasting NNP Broadcasts NNS Broader JJR Broadly RB Broadstar NNP Broadview NNP Broadway NNP Broberg NNP Brochures NNS Brock NNP Brocklin NNP Brockman NNP Brockville NNP Brockway NNP Brod NNP Brodbeck NNP Broder NNP Broderick NNP Brodie NNP Brodsky NNP Brodsly NNP Brody NNP Broe NNP Broeg NNP Broglie NNP Broglio NNP Broil VB Broiled VBN Broiler NN Brokaw NNP Broke NNP Broken NNP Broker NNP Brokerage NN Brokerage-firm JJ Brokers NNS Bromagen NNP Bromfield NNP Bromley NNP Bromwich NNP Bron NNP Bronces NNP Bronco NNP Broncos NNP Broncs NNP Broner NNP Bronfman NNP Bronfmans NNP Bronislava NNP Bronislaw NNP Bronner NNP Bronson NNP Bronston NNP Bronx NNP Bronzavia-Air NNP Brooding NNP Brook NNP Brooke NNP Brookfield NNP Brookhaven NNP Brookings NNP Brookland NNP Brookline NNP Brooklyn NNP Brooklyn-born JJ Brookmeyer NNP Brookmont NNP Brooks NNP Broome NNP Broomfield NNP Brophy NNP Bros NNP Bros. NNP Brosterman NNP Brother NNP Brotherhood NNP Brothers NNPS Brougham NNP Brought VBN Broughten NNP Broughton NNP Broun NNP Brouwer NNP Broward NNP Browder NNP Brown NNP Brown-Forman NNP Brown-tobacco JJ Brownapopolus NNP Browne NNP Brownell NNP Browning NNP Brownings NNP Brownlow NNP Browns NNP Brownstein NNP Broxodent NNP Broyd NNP Brozman NNP Brubaker NNP Bruccoli NNP Bruce NNP Bruch NNP Bruck NNP Bruckheimer NNP Bruckmann NNP Bruckner NNP Brudzinski NNP Bruegel NNP Bruges NNP Bruhn NNP Bruises NNS Brumbaugh NNP Brumby NNP Brumidi NNP Brumidi-Costaggini NNP Brumley NNP Brundtland NNP Brunei NNP Brunello NNP Bruner NNP Brunk NNP Brunner NNP Bruno NNP Bruns NNP Brunsdon NNP Brunswick NNP Brunswig NNP Brusca NNP Bruser NNP Brush NNP Brush-off NN Brussels NNP Brut NNP Bruwer NNP Bruxelles NNP Bruyette NNP Bryan NNP Bryant NNP Bryce NNP Bryn NNP Bryner NNP Bryson NNP Buaford NNP Bubba NNP Bubenik NNP Buber NNP Buber-think NNP|VB Bucaramanga NNP Bucay NNP Buccaneers NNS Bucchino NNP Bucer NNP Buchanan NNP Bucharest NNP Buchbinder NNP Buchenwald NNP Buchheister NNP Buchner NNP Buchwald NNP Buck NNP Buckenham NNP Buckeridge NNP Buckets NNS Buckeye NNP Buckhannon NN Buckhead NNP Buckhorn NN Bucking VBG Buckingham NNP Buckles NNP Buckley NNP Buckman NNP Bucknell NNP Buckra NNP Bucks NNP Bucky NNP Bucs NNP Bud NNP Budapest NNP Budd NNP Buddha NNP Buddhism NNP Buddhist JJ Buddhists NNP Buddy NNP Budget NNP Budgetary NNP Budgeting NN Budieshein NNP Budlong NNP Buds NNPS Budweiser NNP Budweisers NNS Budzyn NNP Buechel NNP Bueky NNP Buell NNP Buena NNP Buenas NNP Bueno FW Buenos NNP Buente NNP Buffalo NNP Buffet NNP Buffeted VBN Buffets NNS Buffett NNP Buffetts NNPS Buffton NNP Bufton NNP Bug NN Bugatti NNP Bugle NNP Bugs NNP Buhrmann-Tetterode NNP Buick NNP Buick-Oldsmobile-Cadillac NNP Build VB Builder NNP Builders NNPS Building NNP Buildings NNS Builds VBZ Built VBN Buker NNP Buksbaum NNP Bul'ba NNP Bulba NNP Bulgaria NNP Bulgarian JJ Bulgarians NNPS Bulge NNP Bull NNP Bullet NNP Bulletin NNP Bullets NNS Bullfinch NN Bullion NNP Bullish JJ Bulloch NNP Bullock NNP Bullocks NNP Bulls NNS Bullshit UH Bully VB Bulow NNP Bulseco NNP Bultmann NNP Bum NNP Bumblebees NNS Bumbry NNP Bumiputra NNP Bumkins NNP Bumpers NNP Bums NNS Bun NN Bunch NN Bund NN Bundesbank NNP Bundesbank-meeting NN Bundesnachrichtendienst NNP Bundestag NNP Bundle NN Bundy NNP Bunker NNP Bunks NNS Bunny NNP Bunting NNP Bunyan NNP Buoy NNP Buoyed VBN Burbank NNP Burch NNP Burchette NNP Burchuladze NNP Burckhardt NNP Burden NNP Burdened VBN Burdens NNS Burdett NNP Burdines NNPS Bureau NNP Bureaucrat NN Bureaucratic JJ Bureaucrats NNS Bureaus NNP Buren NNP Burford NNP Burge NNP Burgee NNP Burgeoning VBG Burger NNP Burgess NNP Burgesses NNS Burghardt NNP Burgher NNP Burghley NNP Burgsteinfurt NNP Burgundian JJ Burgundies NNPS Burgundy NNP Buri NNP Burial NN Buried VBN Buries VBZ Burk NNP Burke NNP Burke-Rostagno NNP Burkes NNPS Burkette NNP Burkhardt NNP Burkina NNP Burl NNP Burle NNP Burleson NNP Burling NNP Burlingame NNP Burlingham NNP Burlington NNP Burly JJ Burma NNP Burma-Shave NNP Burmah NNP Burman NNP Burmans NNPS Burmese JJ Burnand NNP Burned VBN Burnes NNP Burnet NNP Burnett NNP Burnham NNP Burning VBG Burnison NNP Burnley NNP Burns NNP Burnside NNP Burnsides NNPS Burnsville NNP Burnt NNP Burr NNP Burrill NNP Burrillville NNP Burritt NNP Burro NNP Burroughs NNP Burroughs-Wellcome NNP Burry NNP Burst VBD Bursting VBG Bursts VBZ Burt NNP Burton NNP Burts NNPS Burwell NNP Bury NNP Burzon NNP Bus NN Busby NNP Busch NNP Buser NNP Busey NNP Bush NNP Bush-Gorbachev NNP Bush-Salinas NNP Bush-supported JJ Bushby NNP Bushell NNP Bushels NNS Bushes NNPS Bushnell NNP Business NNP Businesses NNS Businessland NNP Businessmen NNS Buskirk NNP Bussey NNP Bussieres NNP Bust NNP Bustard NN Buster NNP But CC Butane NN Butch NNP Butcher NNP Butler NNP Butlers NNPS Butowsky NNP Butt NNP Buttacavoli NNP Buttavacoli NNP Butte NNP Butter NN Butter-Nut NNP Butterfield NNP Butterfinger NNP Butterworth NNP Butterwyn NNP Button NNP Buttrick NNP Butts NNP Butz NNP Buxtehude NNP Buxton NNP Buy VB Buy'em VB Buy-Back NNP Buy-out NN Buyer NNP Buyers NNS Buying VBG Buzz NNP Buzzell NNP Buzzy NNP By IN By-Products NNP By-passing VBG By-the-Book JJ By-the-Sea NNP By-word JJ Bye UH Byelorussia NNP Byer-Rolnick NNP Byers NNP Bygdeman NNP Byler NNP Bylot NNP Bynoe NNP Byrd NNP Byrne NNP Byrnes NNP Byron NNP Byronic JJ Byronism NN Byrum NNP Bystrzyca NNP Byting VBG Byzantine JJ Byzantium NNP Byzas NNP C NN C$ $ C&D NNP C&P NNP C&W NNP C'est FW C'mon VB C'un NNP C-12 NN C-12F NN C-130 NN C-141 NNP C-17 NNP C-20 NNP C-5B NN C-90 NN C-S NNP C-SPAN NNP C-Span NNP C-V NNP C-minus JJ C-plane NN C-word NN C. NNP C.A.I.P. NNP C.B. NNP C.C. NNP C.C.B NNP C.C.B. NNP C.C.N.Y. NNP C.D. NNP C.D.s NNS C.E. NNP C.H. NNP C.J. NNP C.J.B. NNP C.K. NNP C.M. NNP C.O.G. NNP C.P. NNP C.R. NNP C.S. NNP C.W. NNP C/NNP.A.J. NNP C1 NNP C13532 NNP C415 CD CAAC NNP CABBAGE NN CABLE NN CAC NNP CACI NNP CAE NNP CAE-Link NNP CAHNERS NNP CALFED NNP CALIFORNIA NNP CALL NN CALLED VBD CALLIOPE NNP CALLS NNPS CAMBREX NNP CAMPAIGN NNP CAMPEAU NNP CAN VB CANADA NNP CANADIAN JJ CANCER NNP CANDIDATES NNS CAPITAL NNP CAPITAL-GAINS NNP CAPITALIST JJ CAR NN CARE NNP CAREER NNP CARIPLO NNP CAROLG NNP CARTER NNP CARTER-WALLACE NNP CASE NNP CASES NNS CASSETTE NN CASTLE NNP CAT NNP CATFISH NNS CATV NN CB NNP CB-radio-style JJ CBC NNP CBI NNP CBO NNP CBOE NNP CBOT NNP CBS NNP CBS-K NNP CBS-TV NNP CBS-Turner NNP CBS-owned JJ CBS\ NNP CCC NNP CCD NNP CCK NNP CCK-related JJ CCT NNP CD NNP CD+DVD NN CD-4 NNP CD-I NNP CD-ROM NNP CD-type JJ CDA NNP CDBG NNP CDC NNP CDK NNP CDL NNP CDT NNP CDU NNP CDs NNS CELEBRATIONS NNP CELTICS NNPS CENTERIOR NNP CENTRUST NNP CEO NNP CEO-designate NN CEOs NNS CERA NNP CEREAL NNP CERTIFICATES NNS CF NNP CF6-6 NNP CF66 NN CF680C2 NNP CFC NNP CFC-11 NN CFC-12 NN CFCs NNS CFD NNP CFM NNP CFM56 NN CFM56-3C NN CFM56-56s NNS CFP NNP CFTC NNP CG NNP CGE NNP CGP NNP CH NN CH-47D NNP CHALLENGED VBN CHAMBERS NNP CHANGED VBD CHANGES NNS CHARIOT NNP CHARITABLE JJ CHARLES NNP CHASE NNP CHECKOFF NN CHECKUPS NNS CHEMICAL NNP CHEVRON NNP CHEWING VBG CHICAGO NNP CHIEF JJ CHILDREN NNS CHIMPS NNS CHINA NNP CHIPPING VBG CHRISTMAS NNP CHW NNP CI NNP CIA NNP CICS NNP CIM NNP CIR NNP CIRCUIT NNP CIT NNP CITIC NNP CITIES\/ABC NNP CITIZEN NNP CITIZENS NNS CITY NNP CITY'S NNP CJS NNP CL NNP CLAIMANTS NNS CLAIMS VBZ CLARK NNP CLASHED VBD CLAUSE NN CLAUSTROPHOBIC JJ CLEARED VBD CLEARS VBZ CLK NNP CLOROX NNP CLOSE NN CLUBBING VBG CLUBS NNS CMA NNP CME NNP CMI NNP CMK NNP CML NNP CMOS NNP CMS NNP CMZ NNP CNA NNP CNBC NNP CNCA NNP CNN NNP CNW NNP CO NNP CO. NNP COAHR NNP COAST NNP COASTAL NNP COB NNP COCA-COLA NNP COCAINE NNP COCOA NN CODE,DTF NN CODE-NAMED VBN COFFEE NN COHERENT NNP COKE NNP COLGATE-PALMOLIVE NNP COLH NNP COLLAPSE NN COLLATERAL NN COLLECTING NN COLOGNE NNP COM NNP COME VBN COMMENTS NNS COMMERCIAL JJ COMMITTEE NNP COMMUNICATIONS NNPS COMMUNISTS NNS COMMUTERS NNS COMPANIES NNS COMPANY NN COMPARE VB COMPLETED VBD COMPUTER NN COMPUTERS NNS CONCORDE NNP CONELRAD NNP CONFIRMED VBD CONFRONTATIONS NNS CONGRESS NNP CONGRESSIONAL JJ CONSERVATIVES NNS CONSOLIDATED NNP CONSULTING NNP CONSUMER NN CONSUMERS NNS CONTACT NN CONTAIN VB CONTAMINATION NN CONTINENTAL NNP CONTROL NNP CONVICTION NN CONVICTS VBZ COOKE NNP COOPER NNP COOPERATION NN COPE VB COPPER NN CORNFELD NNP CORNUCOPIA NN CORP NNP CORP. NNP CORPORATE JJ CORTES NNP COS. NNP COTTON NN COULDN'T NNP COUNSEL NN COUNTRY NN COUP NN COURT NNP COURTS NNS COVER NN COVERAGE NNP CP NNP CP486 NNP CPA NNP CPAs NNS CPB NNP CPC NNP CPI NNP CPR NNP CPT NN CPTs NNS CR103 NNP CRA NNP CRAF-Cassini NNP CRASHED VBD CRAY NNP CREAM NNP CREATIVE JJ CREATOR'S NN CREDIT NNP CREDITS NNS CRESTMONT NNP CRI NNP CRIME NN CRIMINAL JJ CRITICAL NNP CROSS-BRED VBD CROWDED JJ CRRES NNP CRS NNP CRSS NNP CRT NNP CRX NNP CRs NNS CS NNP CSC NNP CSF NNP CSFB NNP CSI NNP CSK NNP CSO NNP CSR NNP CSS NNP CST NNP CSV NNP CSX NNP CT NN CTA NNP CTAs NNS CTB NNP CTBS NNP CTCA NNP CTS NNP CULPA NNP CUNA NNP CURBING VBG CUTTY NNP CV NNP CVB NNP CVN NNP CW NNP CW-capable JJ CWA NNP CWP NNP Ca MD Ca. NNP Caa NNP Cab NNP Cabana NNP Cabanne NNP Cabbage NNP Cabernet NNP Cabernets NNPS Cabin NNP Cabinet NNP Cable NNP Cable-system NN Cabletron NNP Cablevision NNP Cabot NNP Cabrera NNP Cabria NNP Cabrini NNP Cacao NNP Caccappolo NNP Cacophonist NNP Cadam NNP Cadbury NNP Cadbury-Schweppes NNP Caddy NNP Caddyshack NNP Cadesi NNP Cadet NNP Cadillac NNP Cadillacs NNPS Cadiz NNP Cadnetix NNP Cadre NNP Cadwalader NNP Cadwell NNP Cady NNP Caere NNP Caesar NNP Caesarean JJ Caesars NNP Caetani NNP Cafe NNP Cafeteria NNP Caffedrine NNP Cafferarelli NNP Caffrey NNP Cafritz NNP Cagayan NNP Cage NNP Cagliari NNP Cahill NNP Cahn NNP Cahners NNP Cahoon NNP Cain NNP Cairenes NNPS Cairns NNP Cairo NNP Cairo-sponsored JJ Cairoli NNP Caisse NNP Caitlin NNP Caius NNP Caja NNP Cal NNP Cal-Neva NNP Cal. NN CalComp NNP CalFed NNP CalMat NNP CalTech NNP Calabasas NNP Calabrese NNP Calabria NNP Calais NNP Calamity NNP Calaveras NNS Calcium NN Calculated VBN Calculating VBG Calculations NNS Calcutta NNP Calder NNP Caldera NNP Calderon NNP Calderone NNP Calderwood NNP Caldor NNP Caldwell NNP Cale NNP Caleb NNP Calenda NNP Calf NNP Calgary NNP Calgary-based JJ Calgene NNP Calgon NNP Calhoun NNP Cali NNP Calif NNP Calif. NNP Calif.-based JJ Califano NNP Califon NNP California NNP California-backed JJ California-based JJ California-bashing JJ Californian NN Californians NNS Californication NN Caligula NNP Calimala NNP Caliphobia NNP Calisto NNP Call VB Call-In NN Callable JJ Callahan NNP Callan NNP Callas NNP Callaway NNP Called VBN Callender NNP Callers NNS Calling VBG Calloused JJ Calloway NNP Calls NNS Callum NNP Calm JJ Calmat NNP Calmer JJR Calmly RB Calor NNP Calpers NNP Caltech NNP Caltrans NNP Calude NNP Calvary NNP Calverley NNP Calvert NNP Calves NNS Calvet NNP Calvi NNP Calvin NNP Calvinist NNP Cam NNP Camaret NNP Camarillo NNP Camaro NNP Camaro-Firebird NNP Camaros NNS Cambodia NNP Cambodian JJ Cambodians NNPS Cambrex NNP Cambria NNP Cambrian NNP Cambridge NNP Cambridgeport NNP Camden NNP Camdessus NNP Came VBD Camel NNP Camelot NNP Camels NNS Cameo NNP Camera NNP Cameras NNS Camerino NNP Cameron NNP Cami NNP Camilla NNP Camille NNP Camilli NNP Camillo NNP Camilo NNP Camino NNP Cammack NNP Camp NNP Campagnoli NNP Campaign NNP Campaigne NNP Campaigning VBG Campaneris NNP Campania NNP Campbell NNP Campbell-Mithun NNP Campbell-Mithun-Esty NNP Campbell-brand JJ Campbelll NNP Campeau NNP Campeau-owned JJ Campeau-related JJ Campeau-unit JJ Campenhout NNP Campestre NNP Campground NNP Camping NN Campion NNP Campitelli NNP Campo NNP Campobello NNP Campus NNP Campuses NNS Camry NNP Camrys NNPS Camusfearna NNP Can MD Can't VB Canaan NNP Canada NNP Canada-Newfoundland NNP Canada-North NNP Canada-U.S. NNP Canadian JJ Canadian-U.S. JJ Canadian-dollar JJ Canadian-fisheries NNS Canadian-owned JJ CanadianImmigration NNP Canadians NNPS Canal NNP Canam NNP Canandaigua NNP Cananea NNP Canard NNP Canary NNP Canastels NNP Canaveral NNP Canberra NNP Cancer NNP Candace NNP Candela NNP Candice NNP Candid JJ Candidate NN Candidates NNS Candide NNP Candle NNP Candlelight NNP Candlestick NNP Candu NNP Candy NN Cane NNP Caneli NNP Canellos NNP Canelo NNP Canepa NNP Canestrani NNP Canfield NNP Canfor NNP Caniglia NNP Caning NNP Canion NNP Cannavino NNP Canned JJ Cannell NNP Canner NNP Canneries NNP Cannes NNP Cannibal NNP Canning NNP Cannistraro NNP Cannon NNP Canny NNP Cano NNP Canoe NNP Canoga NNP Canon NNP Canonie NNP Canseco NNP Canteloube NNP Canter NNP Canterbury NNP Canticle NNP Cantobank NNP Canton NNP Cantonese NNP Cantoni NNP Cantor NNP Cantwell NNP Canute NNP Canyon NNP Cap NNP Capable JJ Capacitors NNP Capacity NN Capcom NNP Cape NNP Capek NNP Capel NNP Capellan NNP Capello NNP Caper NNP Capet NNP Capetown NNP Capetronic NNP Capistrano NNP Capital NNP Capitalincludes NNS Capitalism NN Capitalist NNP Capitalists NNPS Capitalizing VBG Capitan NNP Capitol NNP Capitol-EMI NNP Capitoline NNP Caplan NNP Capo NNP Capone NNP Caporale NNP Capote NNP Capoten NNP Capping VBG Capps NNP Cappy NNP Capra NNP Capri NNP Caprice NNP Capricorn NNP Capshaw NNP Capt. NNP Captain NNP Captured VBN Captures NNP Capwell NNP Car NNP CarCool NNP Cara NNP Caracas NNP Caradon NNP Caraiba NNP Carat NNP Carausius NNP Caravaggio NNP Caravaggio. NNP Caravan NNP Caravans NNPS Carballo NNP Carberry NNP Carbide NNP Carboloy NNP Carbon NNP Carbondale NNP Carbones NNPS Carboni NNP Card NNP Cardboard NN Carden NNP Cardenas NNP Carder NNP Cardiac NNP Cardiff NNP Cardillo NNP Cardin NNP Cardinal NNP Cardinals NNP Cardiovascular NNP Cardiovasculatory NNP Cardizem NNP Cardoso NNP Cards NNP Care NNP Care-Unit NNP Career NNP Careers NNS Careful JJ Carefully RB Careless NNP Carena NNP Cares VBZ Carew NNP Carews NNPS Carey NNP Cargill NNP Cargo NNP Cariaga NNP Caribbean NNP Caribe NNP Caring VBG Carisbrook NNP Carl NNP Carla NNP Carleton NNP Carletonian NNP Carli NNP Carlile NNP Carlin NNP Carliner NNP Carlisle NNP Carlo NNP Carlos NNP Carlsbad NNP Carlson NNP Carlsson NNP Carlta NNP Carlton NNP Carltons NNPS Carlucci NNP Carlyle NNP Carlzon NNP Carmack NNP Carmel NNP Carmelite JJ Carmelites NNPS Carmen NNP Carmer NNP Carmichael NNP Carmine NNP Carmody NNP Carmon NNP Carnarvon NNP Carnegey NNP Carnegie NNP Carnegie-Illinois NNP Carnegie-Mellon NNP Carneigie NNP Carnevale NNP Carney NNP Carnival NNP Carnochan NNP Carol NNP Carolco NNP Carole NNP Caroli NNP Carolina NNP Carolinas NNPS Caroline NNP Carolingian JJ Carolinian NNP Carolinians NNPS Carols NNPS Carolus NNP Carolyn NNP Carolyne NNP Caron NNP Caronia NNP Carothers NNP Carpathians NNPS Carpenter NNP Carpenters NNPS Carpentier NNP Carpeting NN Carr NNP Carr-Lowrey NNP Carrara NNP Carraway NNP Carre NNP Carrel NNP Carreon NNP Carriages NNS Carrie NNP Carried VBN Carrier NNP Carriers NNP Carrington NNP Carrion NNP Carroll NNP Carrollton NNP Carrot NNP Carrots NNPS Carrozza NN Carruthers NNP Carry NNP Carrying VBG Cars NNPS Carson NNP Carsten NNP Carstens NNP Cartagena NNP Cartel NNP Carter NNP Carters NNPS Cartesian JJ Carthage FW Carthago FW Cartier NNP Cartons NNS Cartoon NN Cartoonist NN Cartoonists NNP Cartoons NNS Cartridge NNP Cartusciello NNP Cartwright NNP Carty NNP Caruso NNP Carvain NNP Carvalho NNP Carved JJ Carver NNP Carvey NNP Carving NN Carwood NNP Cary NNP Caryl NNP Casa NNP Casablanca NNP Casals NNP Casanova NNP Casanovas NNPS Casassa NNP Casbah NNP Casca NN Cascade NNP Cascaded VBN Cascades NNP Cascading VBG Case NNP Cases NNS Casey NNP Cash NNP Cash-heavy JJ Cash-pressed JJ Cash-strapped JJ Cashiering VBG Cashin NNP Cashion NNP Cashman NNP Cashways NNPS Casino NNP Casinos NNS Cask NNP Caskey NNP Cason NNP Caspar NNP Casper NNP Caspi NNP Caspita NNP Caspita-brand JJ Cass NNP Cassa NNP Cassandras NNPS Cassatt NNP Cassell NNP Cassim NNP Cassiopeia NNP Cassite NNP Cassius NNP Casson NNP Cast VBN Castaneda NNP Castel NNP Castellanos NNP Castile NNP Castillo NNP Casting VBG Castings NNP Castle NNP Castlegar NNP Castleman NNP Castles NNS Castor JJ Castparts NNP Castro NNP Castro-Medellin NNP Castro-held JJ Castro-led JJ Castroism NNP Castrol NNP Castros NNPS Casualties NNS Casualty NNP Cat NNP Catalina NNP Catalog NNP Catalonians NNPS Catalyst NNP Catalysts NNS Catania NNP Cataracts NNS Catastrophe NN Catastrophic NNP Catastrophic-health NN Catatonia NNP Catch NN Catch-22 NN Catcher NNP Catching VBG Cate NNP Cater NNP Caterpillar NNP Caters NNP Catfish NNP Cathay NNP Cathcart NNP Cathedral NNP Catherall NNP Catherine NNP Catherwood NNP Catheter NNP Cathleen NNP Cathodic NNP Catholic NNP Catholic-Jewish JJ Catholicism NNP Catholics NNPS Cathryn NNP Cathy NNP Catinari NNP Cato NNP Caton NNP Cats NNP Catskill NNP Catskills NNPS Catt NNP Cattle NNS Cattleguard NNP Cattlemen NNPS Cattolica NNP Cattrall NNP Catz NNP Caucasian NNP Caucasians NNS Caucasus NN Caucus NNP Caucusing VBG Cauff NNP Cauffman NNP Caufield NNP Caught VBN Caulfield NNP Cause NNP Caused VBN Causes NNP Caution NN Cautions NNPS Cautious JJ Cautiously RB Cav NNP Cavalier NNP Cavaliere NNP Cavaliers NNS Cavalli NNP Cavallinis NNS Cavallo NNP Cavalry NNP Cavanagh NNP Cavarretta NNP Cavazos NNP Cave NNP Cavenee NNP Caverns NNP Caves NNP Cavett NNP Cavin-Morris NNP Cavour NNP Cawdron NNP Cawley NNP Cawthorn NNP Cay NNP Caygill NNP Cayman NNP Cayne NNP Cays NNP Ceartaine JJ Cecchini NNP Cecconi NNP Cece NNP Cecelia NNP Cech NNP Cecil NNP Cecilia NNP Cecin NNP Ceco NNP Cedar NNP Cedars NNPS Cedergren NNP Cedric NNP Cedvet NNP Ceecee NNP Cefiro NNP Ceil NNP Ceilings NNS Cela NNP Celanese NNP Celebes NNPS Celebrating NNP Celebration NNP Celebrities NNS Celebrity NNP Celestial NNP Celestino NNP Celgar NNP Celia NNP Celica NNP Celie NNP Celimene NNP Celine NNP Cell NNP Cell-free JJ Cellar NNP Cellars NNP Cellist NNP Cellular NNP Cellulose NN Celnicker NNP Celsius NNP Celso NNP Celtic JJ Celtics NNPS Celtona NNP Cemal NNP Cement NNP Cementing VBG Cementos NNP Cemetery NNP Cen-Tennial NNP CenTrust NNP Cennini NNP Cennino NNP Censorship NN Census NNP Centaur NNP Centel NNP Centennial NNP Center NNP Center-punch VB Centerbank NNP Centering VBG Centerior NNP Centerre NNP Centers NNPS Centigrade NN Centocor NNP Centoxin NNP Central NNP Central-bank NN Centrale NNP Centralia NNP Centrality NN Centralizing VBG Centrally RB Centre NNP Centredale NNP Centrex NNP Centronics NNP Centrum NNP Cents NNP Centurion NNP Century NNP Century-Fox NNP Cepeda NNP Cepheus NNP Ceramic JJ Ceramics NNPS Cereal NN Cerebral NNP Ceremonial NNP Cerf NNP Cerinvest NNP Cerise NNP Cernuda NNP Certain JJ Certainly RB Certificate NN Certificates NNS Certificates-a NNP Certification NNP Certified NNP Certs NNP Certus NNP Cerus NNP Cerv NNP Cervantes NNP Cervetto NNP Cesar NNP Cesare NNP Cessna NNP Cestre NNP Cetron NNP Cetus NNP Ceylon NNP Cezanne NNP Cezannes NNPS Cf. VB Ch NNP Ch'an NNP Ch'in NNP Ch. NN Chablis NNPS Chabrier NNP Chabrol NNP Chace NNP Chad NNP Chadbourne NNP Chadha NNP Chadli NNP Chadroe NNP Chadwick NNP Chaffey NNP Chafic NNP Chafin NNP Chagall NNP Chahar NNP Chai NNP Chaikoff NNP Chain NN Chains NNS Chair NNP Chairman NNP Chairman-Elect NNP Chairmen NNS Chairperson NNP Chairs NNS Chajet NNP Chalidale NNP Challenge NNP Challenger NNP Challenges NNPS Challenging VBG Chalmers NNP Chalon-sur-Saone NNP Chamber NNP Chamberlain NNP Chambers NNP Chambre NNP Chamorro NNP Champ NNP Champagne NNP Champagnes NNS Champassak NNP Champion NNP Championship NNP Champlain NNP Champs NNP Chan NNP Chance NN Chancellor NNP Chancellorsville NNP Chancery NNP Chances NNS Chandler NNP Chandra NNP Chandross NNP Chane NNP Chanel NNP Chang NNP Change NNP Change-ringing NN Changeable JJ Changes NNS Changing VBG Changyi NNP Changyong NNP Channel NNP Channel-type NN Channing NNP Chanos NNP Chans NNS Chant NNP Chantal NNP Chantilly NNP Chao NNP Chaos NNP Chapdelaine NNP Chapel NNP Chapelles NNPS Chapin NNP Chaplain NNP Chaplin NNP Chaplin-like JJ Chapman NNP Chappaqua NNP Chappell NNP Chapter NN Chapters NNS Character NN Characteristically RB Characteristics NNS Characterizing VBG Characters NNS Charade NNP Charcoal NN Chardon NNP Chardonnay NNP Chardonnay-sipping JJ Chardonnays NNPS Charge NNP Chargers NNPS Charges NNS Chargeurs NNP Charging VBG Chariots NNS Charisma NNP Charitable JJ Charities NNS Charity NN Charlayne NNP Charlemagne NNP Charlene NNP Charles NNP Charleston NNP Charlestonians NNPS Charlet NNP Charley NNP Charlie NNP Charlotte NNP Charlottesville NNP Charls NNP Charlton NNP Charm NNP Charmer NNP Charming JJ Charnock NNP Chart NN Charta NNP Charter NNP Chartered NNP Charterhouse NNP Charters NNP Chartres NNP Charts NNS Chartwell NNP Chase NNP Chaseman NNP Chases NNPS Chastened VBN Chateau NNP Chateaubriand NNP Chateauvallon NNP Chatha NNP Chatham NNP Chatset NNP Chatsworth NNP Chattanooga NNP Chatter-Proofed JJ Chatterji NNP Chatterton NNP Chatwal NNP Chaucer NNP Chauncey NNP Chausson NNP Chautauqua NNP Chavanne-Ketin NNP Chaves NNP Chavez NNP Chavis NNP Chayefsky NNP Chayet NNP Chazanoff NNP Che NNP Cheap JJ Cheat NNP Chebrikov NNP Checchi NNP Checchi-Skinner NNP Checci NNP Check VB Check-List NNP Checked VBN Checkit NNP Checkrobot NNP Checks NNS Cheddi NNP Cheer NNP Cheered VBN Cheerful JJ Cheerios NNPS Cheerios-brand JJ Cheers NNP Cheese NNP Cheeseheads NNS Cheeses NNPS Cheetham NNP Cheez NNP Chef NNP Chehel NNP Cheil NNP Chekhov NNP Chekhovian JJ Chekovian JJ Chelmno NNP Chelmsford NNP Chelsea NNP Chem NNP Chem-Con NNP ChemPlus NNP Chemcat NNP Chemex NNP Chemfix NNP Chemical NNP Chemicals NNPS Chemische NNP Chemistry NNP Chemists NNS Chen NNP Chenevix-Trench NNP Cheney NNP Cheng NNP Chengdu NNP Chennault NNP Chenoweth NNP Chequers NNP Cher NNP Cheri NNP Cherkasov NNP Chernishev NNP Chernobyl NNP Chernobyl-type JJ Cherokee NNP Cherokees NNPS Cherry NNP Cherwell NNP Cheryl NNP Ches NNP Chesaning NNP Chesapeake NNP Chesebrough-Pond NNP Cheshire NNP Chesley NNP Chesly NNP Chesshire NNP Chessman NNP Chester NNP Chesterfield NNP Chesterton NNP Chestman NNP Chestnut NNP Chestnuts NNS Chet NNP Chetta NNP Cheung NNP Cheval NNP Chevalier NNP Chevaline NNP Chevenement NNP Cheveralls NNP Chevrolet NNP Chevrolet-Pontiac-GM NNP Chevrolets NNPS Chevron NNP Chevy NNP Chewing VBG Chex NNP Cheyenne NNP Cheyennes NNPS Chez NNP Chg NN Chi NNP Chiang NNP Chiappa NNP Chiaromonte NNP Chiat NNP Chiat\ NNP Chiat\/Day NNP Chiat\/Day\/Mojo NNP Chiba NNP Chica NNP Chicago NNP Chicago-Helsinki NNP Chicago-Manchester NNP Chicago-Montreal NNP Chicago-Paris NNP Chicago-Warsaw NNP Chicago-area JJ Chicago-based JJ Chicago-centric JJ Chicago-style JJ Chicagoan NNP Chicagoans NNPS Chick NN Chickasaws NNPS Chicken NNP Chickens NNS Chico NNP Chicopee NNP Chief NNP Chiefly RB Chiefs NNPS Chieftains NNP Chien NNP Chien-Min NNP Chieti NNP Chiggers NNS Chiharu NNP Chihuahua NNP Chilblains NNS Child NNP Childe NNP Childhood NNP Children NNS Childs NNP Chile NNP Chilean JJ Chili NNP Chill NN Chill.`` `` Chiller NNP Chilly JJ Chilmark NNP Chilver NNP Chim NNP Chimanbhai NNP Chimerine NNP Chimicles NNP Chimie NNP Chin NNP Chin-Use VB China NNP China-bound JJ China-investment JJ China-watcher NN Chinaman NNP Chinchon NNP Chinese JJ Chinese-American JJ Chinese-American-Canadian JJ Chinese-British JJ Chinese-Soviet NNP Chinese-inspired JJ Chinese-style JJ Ching NNP Chinn NNP Chino NNP Chinook NNP Chinooks NNS Chiodo NNP Chion NNP Chip NNP Chip-o NNP Chipello NNP Chipmunks NNPS Chippendale NNP Chipping VBG Chips NNPS Chirac NNP Chiriqui NNP Chiron NNP Chisholm NNP Chiuchow NNP Chiusano NNP Chivas NNP Chlorothiazide NN Chlortetracycline NN Chmn. NNP Cho-Liang NNP Choctaw NNP Choctaws NNPS Chodorow NNP Choice NN Choices NNS Choir NN Chojnowski NNP Chok NNP Choking VBG Cholesterol NN Cholet NNP Cholet-Dupont NNP Chong NNP Chong-sik NNP Chongju NNP Choong NNP Choose VB Choosing VBG Chopin NNP Choral NNP Chorale NNP Chore NN Choreographed VBN Chores NNS Chorney NNP Chorrillos NNP Chorus NNP Chosen NNP Chou NNP Chow NNP Chris NNP Chris-Craft NNP Chrisanthopoulos NNP Chriss NNP Chrissake UH Christ NNP Christ-like JJ Christendom NNP Christensen NNP Christer NNP Christi NNP Christian NNP Christian-Democratic NNP Christian-Moslem JJ Christian-dominated JJ Christiana NNP Christiane NNP Christiania NNP Christianity NNP Christians NNPS Christiansen NNP Christianson NNP Christic NNP Christie NNP Christies NNP Christiev NNP Christina NNP Christine NNP Christmas NNP Christmas-like JJ Christmas-season NN Christmas-time JJ Christmas-tree JJ Christmastime NNP Christoph NNP Christopher NNP Christophers NNPS Christopoulos NNP Christos NNP Christrian NNP Christsake NN Christy NNP Chromatography NN Chrome NNP Chromium NN Chromosome NN Chromspun NNP Chronicle NNP Chronicles NNP Chronometer NNP Chrysalis NNP Chrysler NNP Chrysler-Plymouth NNP Chrysler-brand JJ Chu NNP Chubb NNP Chubu NNP Chucas NNP Chuck NNP Chugai NNP Chugoku NNP Chukchi NNP Chula NNP Chun NNP Chung NNP Church NNP Churches NNP Churchill NNP Churchillian JJ Churchilliana NNPS Churchyard NNP Churning NN Churpek NNP Chye NNP Chyron NNP Cia. NNP Ciao FW Ciardi NNP Ciavarella NNP Ciba NNP Ciba-Geigy NNP Ciba-Geigy\ JJ Cibula NNP Cicero NNP Ciceronian JJ Cichan NNP Cici NNP Ciciulla NNP Cicognani NNP Cid NNP Cie NNP Cie. NNP Cieca NNP Ciera NNP Cif NNP Cigarette NN Cigarette-vending JJ Cigna NNP Cilcorp NNP Cilluffo NNP Cima NNP Cimabue NNP Cimflex NNP Ciminero NNP Cimoli NNP Cinalli NNP Cincinnati NNP Cincinnati-based JJ Cinderella NNP Cindy NNP Cinegrill NNP Cinema NNP Cinemactor NNP Cinematografica NNP Cinematographer NN Cinemax NNP Cineplex NNP Cinerama NN Cinnaminson NNP Cinnamon NNP Cinq NNP Cinzano NNP Cioffi NNP Cipher NNP Cipolla NNP Ciporkin NNP Cipriani NNP Cipriano NNP Cir NNP Cir. NNP Circle NNP Circles NNS Circuit NNP Circuit-breaker JJ Circular NNP Circulation NN Circulations NNP Circumstance NNP Circumstances NNS Circus NNP Circus-Circus NNP Ciriaco NNP Cirillo NNP Cirino NNP Cirona NNP Cirrus NNP Cisneros NNP Citadel NNP Citation NNP Cite VBP Cited VBN Cites VBZ Citibank NNP Citic NNP Citicorp NNP Cities NNPS Cities-ABC NNP Cities\/ABC NNP Citing VBG Citizen NNP Citizen\/Labor NNP Citizens NNPS Citroen NN Citrus NNP City NNP City-based JJ City-type JJ CityFed NNP Ciudad NNP Civ. NNP Civic NNP Civics NNPS Civil NNP Civil-rights NNS Civilian NNP Civilian-groups NNPS Civilization NN Civilized JJ Clabir NNP Clad VBN Claeson NNP Claeys NNP Claiborne NNP Claim VB Claimants NNPS Claiming VBG Claims NNPS Clair NNP Claire NNP Clairol NNP Clairson NNP Clairton NNP Clams NNS Clan NNP Clanahan NNP Clancy NNP Clandestine JJ Clapp NNP Clapper NNP Clapping VBG Clara NNP Clarcor NNP Clardy NNP Clare NNP Claremont NNP Clarence NNP Clarendon NNP Clarice NNP Claridge NNP Clarinet NN Clarion NNP Clarita NNP Clark NNP Clarke NNP Clarks NNS Clarksburg NNP Clarkson NNP Clashes NNS Clasping VBG Class NNP Class-D NNP Classes NNS Classic NNP Classical NNP Classicist NN Classics NNS Classified JJ Classroom NNP Classy NNP Claude NNP Claude-Eric NNP Claudia NN Claudio NNP Claus NNP Clause NN Clausen NNP Clavier NN Claws NNS Clay NNP Clays NNP Clayt NNP Clayton NNP Clayton-Pedersen NNP Claytor NNP Clean NNP Cleaned VBN Cleaner NNP Cleaning VBG Cleanth NNP Clear NNP Clearance NN Clearasil NNP Clearer JJR Clearing NNP Clearly RB Clearwater NNP Cleary NNP Cleave NNP Cleaver NNP Cleburne NNP Cleland NNP Clemence NN Clemenceau NNP Clemens NNP Clemensen NNP Clement NNP Clemente NNP Clements NNP Clemson NNP Clendenin NNP Cleo NNP Cleopatra NNP Cleota NNP Clerfayt NNP Clericis NNP Clerk NNP Clerks NNS Cleva NNP Cleve NNP Cleveland NNP Cleveland-Cliffs NNP Cleveland-based JJ Clever JJ Cliburn NNP Clients NNS Cliff NNP Clifford NNP Cliffs NNP Clifton NNP Climate NNP Climb VB Climbing VBG Cline NNP Clinic NNP Clinical NNP Clinico-pathologic NNP Clinics NNP Clinique NNP Clint NNP Clinton NNP Clintonville NNP Clipper NNP Clive NNP Cloquet NNP Clorets NNP Clorox NNP Close RB Close-up NNP Closed VBN Closed-end JJ Closely RB Closen NNP Closer RBR Closes VBZ Closing NN Clostridium NN Cloth NNP Clothes NNS ClothesTime NNP Clothestime NNP Clothiers NNP Clothing NN Cloud NNP Cloudcroft NNP Clouds NNP Clough NNP Clov NNP Clow NNP Clozapine NNP Clozaril NNP Club NNP Clubhouse NNP Clubs NNPS Cluck NNP Clue NNP Clueless NNP Cluett NNP Cluff NNP Cluggish NNP Clumps NNS Clurman NNP Clyde NNP Clyfford NNP Cmdr. NNP Co NNP Co-Chief NNP Co-Renitec NNP Co-author NN Co-authors NNS Co-cola NNP Co-op NN Co-operative NNP Co-optation NN Co-sponsoring NNP Co. NNP Co.`` `` CoAdvil NNP CoGen NNP Coach NNP Coaching NN Coal NNP Coalition NNP Coan NNP Coast NNP Coast-based JJ CoastAmerica NNP Coastal NNP Coastline NNP Coasts NNPS Coat NNP Coatedboard NNP Coates NNP Coatings NNP Coats NNP Cobb NNP Cobbs NNS Coble NNP Cobo NNP Cobra NNP Coburg NNP Coburn NNP Coca NNP Coca-Cola NNP Cocaine NN Coche-Dury NNP Cochran NNP Cochrane NNP Cockburn NNP Cockerel NNP Cocktail NN Cocktails NNS Cocoa NNP Cocom NNP Coconut NNP Coconuts NNPS Cocoons NNS Cocteau NNP Cod NNP Coda NNP Coddington NNP Code NNP Code-Alarm NNP Codevilla NNP Codification NN Codifying VBG Cody NNP Coe NNP Coeditors NNS Coelho NNP Coen NNP Coesfeld NNP Coeur NNP Coffee NNP Coffee-House NNP Coffee-shop NN Coffey NNP Coffield NNP Coffin NNP Cofide NNP Cogan NNP Cogefar NNP Cogen NNP Cogeneration NNP Cognex NNP Cognos NNP Cohen NNP Cohens NNPS Coherent NNP Cohn NNP Cohodes NNP Coiffet NNP Coin NNP Coincidences NNPS Coincident JJ Coincidentally RB Coke NNP Cokely NNP Cokes NNS Col. NNP Cola NNP Colavito NNP Colbert NNP Colby NNP Colcord NNP Cold NNP Colder JJR Coldwater NNP Coldwell NNP Cole NNP Coleco NNP Colee NNP Colefax NNP Coleman NNP Coleridge NNP Coles NNP Coletta NNP Colfax NNP Colgate NNP Colgate-Palmolive NNP Colin NNP Colinas NNP Coliseum NNP Collaborative NNP Collagen NNP Collateral NN Collateralized NNP Colleagues NNS Collected NNP Collectibles NNS Collecting NNP Collection NNP Collections NNS Collective NNP Collectively RB Collector NNP Collectors NNS Colleen NNP College NNP Colleges NNP Collegiate NNP Collett NNP Collier NNP Collingwood NNP Collins NNP Collinsville NNP Collischon NNP Collision NNP Collor NNP Colloton NNP Collyer NNP Colman NNP Colmans NNPS Colmer NNP Colnaghi NNP Colo NNP Colo. NNP Colodny NNP Cologne NNP Colombatto NNP Colombia NNP Colombian JJ Colombians NNPS Colombo NNP Colon NN Colonel NNP Colonia NNP Colonial NNP Colonialism NN Colonna NNP Colonsville NNP Colonus NNP Colony NNP Color NNP Colorado NNP Colorado-Ute NNP ColoradoUte NNP Colorama NN Colorcoat NNP Colored NNP Colorful JJ Colorliner NNP Colorocs NNP Colors NNS Colosseum NNP Colossians NNPS Colossus NNP Colquitt NNP Cols NNP Colson NNP Colston NNP Colt NNP Colton NNP Colts NNP Coltsman NN Colucci NNP Columbia NNP Columbiana NNP Columbus NNP Column NN Columnist NNP Columnists NNS Columns NNS Colvin NNP Colzani NNP Com NNP ComFed NNP Comair NNP Comanche NNP Comanches NNPS Comany NNP Combat NNP Combatting VBG Combe NNP Combellack NNP Combine VB Combined VBN Combining VBG Combis NNPS Combo NNP Combs NNP Combses NNPS Combustion NNP Comcast NNP Comdisco NNP Come VB Comeau NNP Comeback NNP Comecon NNP Comedian NN Comedie NNP Comedy NNP Comend VB Comenico NNP Comer NNP Comerica NNP Comes VBZ Comet NNP Comex NNP Comfed NNP Comfort NNP Comfortably RB Comic NNP Comics NNPS Comin VBG Cominco NNP Cominform NNP Coming VBG Comique NNP Comiskey NNP Comission NNP Comissioner NNP Commack NNP Command NNP Commandeering VBG Commander NNP Commander-in-Chief NNP Commander-in-Chief... : Commanders NNPS Commanding VBG Commandment NN Commands NNS Commemorative NNP Commencing VBG Comment NN Commentaries NNPS Commentary NNP Commentators NNS Commenting VBG Comments NNS Commercants NNP Commerce NNP CommerceBancorp NNP Commercial NNP Commerciale NNP Commercializing VBG Commercials NNS Commerzbank NNP Commies NNPS Commisioner NNP Commissary NNP Commission NNP Commission-controlled JJ Commission. NNP Commissioned VBN Commissioner NNP Commissioners NNPS Commissioning VBG Commissions NNS Commitment NNP Committed VBN Committee NNP Committeeman NNP Committeemen NNS Committees NNS Commodities NNS Commodity NNP Commodore NNP Common NNP Common-law JJ Commoner NNP Commonly RB Commons NNP Commonweal NNP Commonwealth NNP Commune NNP Communese NNP Communication NNP Communications NNPS Communion NNP Communism NNP Communisn NN Communist NNP Communist-designed JJ Communist-inspired JJ Communist-led JJ Communist-type JJ Communistic JJ Communists NNPS Communities NNPS Community NNP Compact NNP Compagnie NNP Compania NNP Companies NNS Companion NN Company NNP Compaore NNP Compaq NNP Comparable JJ Comparable-store JJ Comparative JJ Compare VB Compared VBN Comparing VBG Compassion NNP Compassionately RB Compelled VBN Compensation NNP Competent JJ Competes VBZ Competing VBG Competition NN Competitive JJ Competitors NNS Compeyson NNP Compiegne NNP Compilation NN Compiled VBN Compiler NN Complaint NN Complaints NNS Complementing VBG Complete JJ Completed VBN Completes VBZ Completing VBG Completion NN Completions NNS Complex NNP Complexity NN Compliance NNP Complicating VBG Complicity NN Complying VBG Components NNP Composer NN Composers NNPS Composite NNP Compound JJ Compounding VBG Comprecin NNP Comprehensive NNP Compress VB Compression NN Comprised VBN Compromise NNP Compromises NNS Compromising VBG Compson NNP Compton NNP Comptroller NNP CompuChem NNP CompuServe NNP Compulsions NNP Compulsive JJ Compulsory JJ Compumat NNP Computation NNP Computations NNS Compute VB Computer NNP Computer-generated JJ Computer-guided JJ Computer-peripherals NNS ComputerLand NNP ComputerWorld NNP Computerized JJ Computers NNPS Computerworld NNP Computing VBG Comrade NN Comrades NNPS Comroe NNP Comsat NNP Comstock NNP Comstron NNP Comtes NNP Comus NNP Comvik NNP Con NNP ConAgra NNP Conable NNP Conalco NNP Conan NNP Conant NNP Conasupo NNP Conaway NNP Conceding VBG Conceivably RB Conceived VBN Concept NNP Conception NNP Conceptions NNS Concepts NNP Conceptually RB Concern NN Concerned NNP Concerning VBG Concerns NNS Concert NNP Concert-Disc NNP Concertante NNP Concerto NNP Concerts NNPS Concessionaires NNS Concetta NNP Conchita NNP Concise JJ Concludes VBZ Concluding VBG Conclusions NNS Concocts VBZ Concord NNP Concordance NN Concorde NNP Concordes NNP Concrete NNP Concurrence NN Concurrent JJ Concurrently RB Conde NNP Condensation NN Conder NNP Condit NNP Condition NN Conditions NNS Condliffe NNP Condominium NNP Condoms NNS Condor NNP Condos NNS Conduct NNP Conducted VBN Conductor NN Conduit NNP Conduits NNS Cone NNP Conestoga NNP Coney NNP Confabulation NN Confair NNP Confectioner NNP Confectionery JJ Confederacy NNP Confederate NNP Confederates NNS Confederation NNP Confederations NNPS Confer NNP Conferees NNS Conference NNP Conferences NNPS Confess VB Confession NN Confessions NNPS Confidence NN Confident JJ Confidential NNP Confidently RB Confiding VBG Confindustria NNP Confirmation NN Confirming VBG Confiscated VBN|JJ Conflict NN Conforming NN Confrontation NN Confronted VBN Confucian NNP Confucianism NNP Confucius NNP Confused VBN Confusion NN Confutatis FW Confuted NNP Cong NNP Congdon NNP Congel NNP Conger NNP Congo NNP Congolese NNP Congratulations NNS Congregation NNP Congregational NNP Congregational-Baptist NNP Congregationalism NNP Congregationalist NN Congregationalists NNS Congress NNP Congress's NNP Congresses NNS Congressional NNP Congressman NNP Congressmen NNS Congresswoman NNP Coniston NNP Conklin NNP Conlin NNP Conlon NNP Conlow NNP Conmel NNP Conn NNP Conn. NNP Conn.-based JJ Conn.based JJ Connall NNP Connally NNP Connaught NNP Conneaut NNP Connectables NNP Connecticut NNP Connecting NNP Connection NN Connections NNS Connectors NNP Connell NNP Connelly NNP Conner NNP Connery NNP Connick NNP Connie NNP Conning NNP Connoisseur NNP Connoisseurs NNS Connolly NNP Connor NNP Connors NNP Conoco NNP Conquering NNP Conquest NNP Conquete NNP Conrac NNP Conrad NNP Conrades NNP Conradically RB Conradie NNP Conradies NNP Conrail NNP Conran NNP Conreid NNP Conroe NNP Conroy NNP Conscience NN Consciousness NN Conseco NNP Conseil NNP Consensus NNP Consent NNP Consequence NN Consequences NNS Consequently RB Conservancy NNP Conservation NNP Conservationists NNS Conservatism NN Conservative NNP Conservative-Communist JJ Conservatives NNS Conservatory NNP Consider VB Considerable JJ Consideration NN Considered VBN Considering VBG Consistent JJ Consistently RB Consisting VBG Consitutional JJ Consob NNP Consolidated NNP Consolidation NN Consolo NNP Consonantal JJ Consort NNP Consortium NNP Conspicuous JJ Conspicuously RB Conspiracy NNP Constable NNP Constance NNP Constant JJ Constantin NNP Constantine NNP Constantino NNP Constantinople NNP Constantinos NNP Constants NNS Constar NNP Constellation NNP Constitution NNP Constitutional NNP Constitutions NNS Constraints NNS Construcciones NNP Construct VB Constructeurs NNP Construction NN Constructions NNP Constructors NNPS Consul NNP Consulate-General NNP Consultant NNP Consultants NNP Consultation NN Consulting NNP Consumer NNP Consumer-electronics NNS Consumers NNS Consuming VBG Consumption NN Contact NN Contacted VBN Contacts NNPS Container NNP Containers NNPS Containment NN Contant NNP Conte NNP Contel NNP Contemplating VBG Contemplation NN Contemporary NNP Contempt NN Contend VBP Content JJ Contest NNP Context NN ContiTrade NNP Continent NN Continental NNP Continentals NNS Continential NNP Continuation NN Continue VB Continued VBN Continues VBZ Continuing VBG Continuity NN Continuous JJ Continuum NN Contra NNP Contract NNP Contracting VBG Contraction NN Contractors NNS Contracts NNS Contradictions NNP Contrarian JJ Contrarily RB Contrary JJ Contras NNPS Contrast NN Contrasted VBN Contrasts NNS Contribute VB Contributing VBG Contribution NNP Contributions NNS Control NNP Controller NNP Controls NNP Conus NNP Convair NNP Convenience NNP Conveniently RB Convention NNP Conventional JJ Conversation NN Conversations NNS Conversely RB Conversion NNP Convertible JJ Converts NNS Convex NNP Conveyance NN Convict NNP Conviction NN Convinced VBN Convincing VBG Convocation NN Convocations NNS Convulsively RB Conway NNP Conyers NNP Cooch NNP Coogan NNP Cook NNP Cooke NNP Cooked VBN Cooker NNP Cookie NNP Cookie-Crisp NNP Cookies NNS Cooking NNP Cool JJ Cooler NNP Coolers NNS Coolest JJS Coolidge NNP Coolidges NNPS Cooling NN Coombs NNP Coons NNP Coontz NNP Cooper NNP Cooperation NNP Cooperative NNP Cooperatives NNP Cooperman NNP Coopers NNP Coopersmith NNP Coor NNP Coordinated VBN Coordinating NNP Coordination NN Coors NNP Coors-Stroh NNP Coosa NNP Cop NNP Copaken NNP Copeland NNP Copenhagen NNP Copernican JJ Copernicus NNP Copernicus-the-astronomer NN Copersucar NNP Copiague NNP Copie NNP Copies NNS Coping VBG Copland NNP Coplandesque JJ Copley NNP Copp NNP Copper NN Copperman NNP Copperweld NNP Coproduction NNP Copy NNP Copycat NN Copying NNP Copyright NNP Corabi NNP Coral NNP Corash NNP Corault NNP Corazon NNP Corbehem NNP Corbin NN Corby NNP Corcoran NNP Cordell NNP Corder NNP Cordier NNP Cordis NNP Cordoba NNP Cordova NNP Core NNP CoreStates NNP Corelli NNP Corestates NNP Corey NNP Corinne NNP Corinth NNP Corinthian JJ Corinthians NNPS Coriolanus NNP Corlopam NNP Cormack NNP Corn NN Corne NNP Corneilus NNP Cornel NNP Cornelius NNP Cornell NNP Cornell-Dubilier NNP Corner NNP Cornerback NN Corners NNPS Corney NNP Cornfeld NNP Cornfield NNP Corning NNP Cornish NNP Cornona NNP Cornwall NNP Cornwallis NNP Corolla NNP Corollary NN Corollas NNPS Corona NNP Coronado NNP Coronation NNP Coroner NN Coronets NNPS Corot NNP Corp NNP Corp. NNP Corp.-Toyota JJ Corp.-USA NNP Corp.-compatible JJ Corp.:8.30 NNP Corp.:8.50 NNP Corp.:8.725 NNP Corp.\/Europe NNP Corp.s NNP Corporal NNP Corporate JJ Corporate\/investor NN Corporation NNP Corporations NNS Corps NNP Corpus NNP Corr NNP Corrado NNP Correct JJ Correcting VBG Correction NN Correctional NNP Corrections NNP Corrective JJ Correctly RB Correggio NNP Correlations NNS Correlatively RB Correll NNP Correspondence NN Correspondents NNPS Corresponding VBG Corrette NNP Corrigan NNP Corroborating VBG Corroon NNP Corrupt NNP Corruption NN Corry NNP Corsi NNP Corsia NNP Corsica NNP Corsicas NNS Corso NNP Cort NNP Cortes NNP Cortese NNP Cortex NNP Cortizone-5 NNP Cortland NNP Cortlandt NNP Corton-Charlemagne NNP Corvallis NNP Corvette NNP Corvettes NNS Corvus NNP Corzine NNP Cos NNP Cos. NNP Cosby NNP Cosgrove NNP Cosgrove-Meurer NNP Cosma NNP Cosmair NNP Cosmetic NNP Cosmetics NNS Cosmic NNP Cosmo NNP Cosmology NNP Cosmopolitan NNP Cosmopulos NNP Cosmos NNP Cossack NNP Cossacks NNPS Cossiga NNP Cost NN Cost-effective JJ Costa NNP Costaggini NNP Costantine NNP Costanza NNP Costar NNP Costco NNP Costello NNP Costley NNP Costly JJ Costner NNP Costs NNS Cote NNP Cotillion NNP Cotman NNP Cotran NNP Cott NNP Cotten NNP Cotter NNP Cottle NNP Cotton NNP Cottrell NNP Cotty NNP Couch-potato NN Coudersport NNP Coudert NNP Cougar NNP Cougars NNPS Coughlin NNP Coulas NNP Could MD Coulomb NNP Coulson NNP Council NNP Councilman NNP Councils NNPS Councilwoman NNP Counsel NNP Counsel/NNP... : Counseling NN Counselor NNP Counselors NNPS Count NNP Count-Duke NNP Countach NNP Counter NNP Countered VBD Countering VBG Counterpoint NN Counters VBZ Counties NNPS Countin VBG Counting VBG Countries NNPS Country NNP Countrymen NNPS Countrywide NNP County NNP Coupal NNP Coupe NNP Couperin NNP Coupes NNP Couple JJ Coupled VBN Couples NNS Coupling VBG Coupon NN Coupons NNS Courant NNP Courbet NNP Courcy NNP Courier NNP Courier-Journal NNP Course NNP Courses NNS Court NNP Court-awarded JJ Court-packing JJ Courtaulds NNP Courtenay NNP Courter NNP Courter... : Courthouse NN Courtier NNP Courtis NNP Courtney NNP Courtrai NNP Courts NNPS Cousin NNP Couturier NNP Couve NNP Covas NNP Cove NNP Covell NNP Covent NNP Coventry NNP Cover NNP Cover-Up NNP Coverage NNP Covered JJ Covering NNP Covert NNP Covey NNP Covia NNP Covington NNP Covitz NNP Cow NNP Cowan NNP Coward NNP Cowbird NNP Cowboy NN Cowboys NNPS Cowboys-owned JJ Cowen NNP Cowessett NNP Cowessett-East NNP Cowles NNP Cowley NNP Cowper NNP Cowrtiers NNS Cows NNS Cox NNP Coxon NNP Coykendall NNP Coyotes NNS Cozen NNP Cozumel NNP Cozying VBG Cr NNP Cr--spe NNP Crab NNP Crabb NNP Crabs NNP Crabtree NNP Crack NN Cracking VBG Cracklin NNP Craddock NNP Cradle NNP Craft NN Crafton-Preyer NNP Crafts NNPS Craftsmen NNPS Craig NNP Crain NNP Cralin NNP Cramer NNP Crampton NNP Crandall NNP Crane NNP Cranes NNPS Cranston NNP Cranston-D'Amato JJ Cranston-Mitchell NNP Crary NNP Crash NNP Crashing VBG Craton NNP Cravath NNP Craven NNP Craving VBG Crawford NNP Crawford-Browne NNP Crawfordsville NNP Cray NNP Cray*/NNP-3 CD Cray-3 NNP Crazy NNP Cream NNP Creamer NNP Creamery NNP Creamette NNP Crean NNP Create VB Created VBN Creates VBZ Creating VBG Creation NN Creations NNPS Creative NNP Creator NNP Creators NNS Credibility NN Credietbank NNP Credit NNP Credit-Card NN Credit-card NN CreditWatch NNP Creditanstalt NNP Creditanstalt-Bankverein NNP Creditbank NNP Creditbanken NNP Credito NNP Creditor NN Creditors NNS Credo NN Cree NNP Creed NNP Creedon NNP Creek NNP Creek-Turn JJ Creepers UH Creighton NNP Creme NNP Cremonie NNP Creole NNP Creon NNP Crescent NNP Crescott NNP Cress NNP Cressidas NNPS Cresson NNP Cresswell NNP Crest NNP Crest-Colgate JJ Crested NNP Crestmont NNP Creston NNP Creswell NNP Cretaceous NNP Crete NNP Creusot NNP Crew NN Crewmembers NNP Crews NNP Cricket NNP Cried VBD Crier NNP Crime NN Crimea NNP Crimean NNP Crimes NNP Criminal NNP Criminal-defense NN Criminalization NN Criminals NNS Criminologists NNS Crip NNP Crippled NNP Crippling JJ Cris NNP Crisanti NNP Crisco NNP Crises NNS Crisis NNP Crisman NNP Crisp NNP Crispin NNP Cristal NNP Cristiani NNP Cristini NNP Cristo NNP Criteria NNP Criterion NNP Critic NNP Critical NNP Criticality NN Critically RB Criticism NN Criticisms NNP Critics NNS Crittenden NNP Croasdale NNP Crobsy NNP Crockett NNP Crocodile NNP Croissier NNP Croix NNP Croma NNP Crombie NNP Cromwell NNP Cromwellian JJ Cronin NNP Cronkite NNP Crooked JJ Croom-Helm NNP Croonen NNP Crop NNP Crosbie NNP Crosby NNP Crosbys NNPS Crosfield NNP Cross NNP Cross-Purposes NNPS Cross-border JJ Cross-margining NN Crossair NNP Crosse NNP Crosser NNP Crossfire NNP Crossing VBG Crossland NNP Crossman NNP Crosson NNP Crotale JJ Crouch NNP Crouched VBN Crovitz NNP Crow NNP Crowd NNP Crowder NNP Crowds NNS Crowe NNP Crowell NNP Crowley NNP Crown NNP Crowntuft NNP Crows NNPS Croydon NNP Crozier NNP Cru NNP Crucial JJ Crucians NNPS Crucible NNP Crude JJ Crude-goods NNS Cruel JJ Cruelty NNP Cruger NNP Cruickshank NNP Cruise NNP Cruiser NNP Crum NNP Crumb NNP Crumble NNP Crumley NNP Crumlish NNP Crump NNP Crunch VB Crupi NNP Crus NNP Crusade NNP Crusader NNP Crusaders NNPS Crusades NNPS Crush NNP Crutcher NNP Crutzen NNP Cruz NNP Cruzan NNP Cruze NNP Cry NN Cryptic JJ Crystal NNP Crystallographic JJ Crystallography NNP Csathy NNP Ct NNP Ct. NNP CuK JJ Cuatrecasas NNP Cuauhtemoc NNP Cub NNP Cuba NNP Cuban JJ Cuban-American NNP Cuban-assisted JJ Cubans NNPS Cube NNP Cubism NN Cubist NN Cubs NNPS Cucamonga NNP Cuckoo NN Cudahy NNP Cuddeford NNP Cuddihy NNP Cuddleback NNP Cuddles NNP Cudkowicz NNP Cudmore NNP Cuellar NNP Cuisinart NNP Cuisinarts NNPS Cuisine NNP Cujo NNP Culbertson NNP Culkin NNP Cullen\/Frost NNP Culligan NNP Cullinet NNP Cullowhee NNP Culmone NNP Culp NNP Cult NNP Cultor NNP Cultural NNP Culturally RB Culture NNP Cultures NNS Culver NNP Culvers NNPS Cumbancheros NNP Cumberland NNP Cumhuriyet NNP Cummings NNP Cummins NNP Cumulative JJ Cunard NNP Cuneo NNP Cunha NNP Cunin NNP Cunningham NNP Cuoco NNP Cuomo NNP Cup NNP Cup-Tote NNP Cupboard NN Cupertino NNP Cupply NNP Curacao NNP Curb VB Curcio NNP Curdling NNP Curia NNP Curiae FW Curie NNP Curie-Weiss NNP Curiosity NN Curious JJ Curiously RB Curl NNP Curley NNP Curling NNP Curly JJ Curragh NNP Curran NNP Currency NN Current JJ Currently RB Curriculum NN Currie NNP Currier NNP Curry NNP Currys NNP Cursed VBN Cursing VBG Curt NNP Curtain NNP Curteis NNP Curtin NNP Curtis NNP Curtiss NNP Curtiss-Wright NNP Cury NNP Curzio NNP Curzon NNP Cusa NNP Cushing NNP Cushman NNP Custer NNP Custodian NNP Custom NNP Customarily RB Customary NNP Customer NN Customer-access NN Customers NNS Customhouse NNP Customized JJ Customs NNPS Cut VB Cutbacks NNP Cutbush NNP Cutlass NNP Cutler NNP Cutrer NNP Cutrere NNP Cuts NNS Cutter NNP Cutting VBG Cutty NNP Cuyahoga NNP Cuyler NNP Cy NNP CyCare NNP Cyanamid NNP Cyanocitta FW Cyber NNP Cybex NNP Cybill NNP Cycads NNS Cyclades NNS Cycle NNP Cycling NNP Cyclone NNP Cycly NNP Cyd NNP Cydonia NNP Cygne NNP Cygnus NNP Cylinder NN Cynewulf NNP Cynical JJ Cynthia NNP Cynwyd NNP Cyoctol NNP Cypress NNP Cyprian NNP Cyprus NNP Cyr NNP Cyriac NNP Cyril NNP Cyrus NNP Cytel NNP Cytogen NNP Czar NNP Czarina NNP Czarship NNP Czech JJ Czechoslovak JJ Czechoslovak-made JJ Czechoslovakia NNP Czechoslovaks NNPS Czechs NNPS Czerny NNP Czeslaw NNP Czestochwa NNP D NN D&B NNP D&H NNP D'Agostino NNP D'Agosto NNP D'Albert NNP D'Amato NNP D'Amico NNP D'Amours NNP D'Ancona NNP D'Arcy NNP D'Argent NNP D'Arlay NNP D'Art NNP D'Artaguette NNP D'Aumont NNP D'Urbervilles NNP D* NNP D*/NNP&B NN D-5 NNP D-Mass. NNP D-marks NNS D-night NN D. NNP D.,Calif NNP D.,Calif. NN D.,Texas NNS D.A. NNP D.C NNP D.C. NNP D.C.-based JJ D.D. NNP D.D.S. NNP D.H. NNP D.J. NNP D.K NNP D.K. NNP D.L. NNP D.N. NNP D.O.A. JJ D.S. NNP D.T. NNP D.W. NNP D.s NNPS D/NNP.A. NN D2 NN D8 CD DA NN DAF NNP DALIS NNPS DALKON NNP DALLAS NNP DAMAGES NNS DANIEL NNP DARMAN'S NNP DARPA NNP DAT NNP DATA NNP DAWDLING NN DAX NNP DAY NNP DAYAC NNP DAYTON NNP DB2 CD DBC NNP DBL NNP DBS NNP DC NN DC-10 NNP DC-10s NNPS DC-8-62 NN DC-9 JJ DC10-30 NN DD NNP DDB NNP DDG-51 NNP DDI NNP DDR NNP DDT NNP DE NNP DEA NNP DEAE NNP DEAE-cellulose NNP DEAE-cellulose-treated NN DEAL NNP DEALERS NNPS DEBT NN DEC NNP DECstation NNP DEFECT VBP DEFECTOR NN DEFENSE NN DEFERRED JJ DEFICIT NNP DELAYED VBN DELAYS VBZ DELIGHT VBP DEMAND NN DEMOCRATS NNS DEPARTMENT NNP DEPOSIT NN DES NNP DESIGNATING VBG DESPITE IN DEVELOPMENT NNP DEVELOPMENTS NNPS DEVICES NNP DFC NNP DFS\/Pacific NNP DG NNP DGAULT NNP DGII NNP DHAWK NNP DHL NNP DIAL-A-PIANO-LESSON NNP DIALING VBG DIAPER NN DIASONICS NNP DID VB DIED VBD DIET NNP DIFFERENCE NNP DIG NNP DIGITAL NNP DIGS NNS DILLARD NNP DIOCS NN DIRECTORS NNS DIRECTORY NN DISAPPOINTMENTS NNS DISASTER NN DISCIPLINARY NN DISCOUNT NN DISNEY NNP DISPLAYED VBD DISTRESSFUL JJ DISTRICT JJ DJ NNP DJIA NNP DJS NNP DJS-Inverness NNP DJS\/Inverness NNP DKB NNP DKNY NNP DLC NNP DLINE NN DLJ NNP DLX NNP DM VB DM1,200 CD DM10,000 CD DM100 CD DM2,000 CD DM2,300 CD DM2,800 CD DM200 CD DM235 CD DM3,500 CD DM33 CD DM5,000 CD DM6,000 CD DM7,000 CD DM850-a-month JJ DMB&B\/International JJ DMB&B\/New NNP DNA NNP DNX NNP DO VB DOC-IN-A-BOX NNP DOCTORS NNS DOE NNP DOE-site NN DOG NN DOGS NNS DOLLAR NN DOLLAR'S NN DOLLARS NNPS DON'T NNP DONORS NNS DONT VB DOONESBURY NNP DOORS NNS DOS NNP DOT NNP DOW NNP DOWN RB DOWNEY NNP DOWNLOAD VB DOWNSIZING NN DPC NNP DPL NNP DPS NNP DPT NNP DPW NNP DPX\ NNP DRACULA'S NNP|VBZ DRAM NNP DRAMs NNS DRDW NN DREXEL NNP DREYER'S NNP DRG NNP DRI NNP DRILLING NN DRI\/McGraw NNP DRI\/McGraw-Hill NNP DRUG NN DRUGS NNPS DSG NNP DSL NNP DSM NNP DSP NNP DSW NN DTF NN DTH NNP DU NNP DUF NN DUN NNP DWG NNP DX NNP Da NNP Da-da-da-dum JJ DaPuzzo NNP Dabbling VBG Daberko NNP Dabney NNP Dachshund NN Dactyls NNPS Dad NNP Dada NNP Dadaism NNP Daddy NNP Dade NNP Dads NNP Dae NNP Daer NNP Daewoo NNP Daffynition NN Dag NNP Dagens NNP Daggs NNP Dahl NNP Dahlen NNP Dahlia NNP Dahmane NNP Dai NNP Dai-Ichi NNP Dai-Ichi\/Nippon NNP Dai-Tokyo NNP Dai-ichi NNP DaiIchi NNP Daiei NNP Daignault NNP Daihatsu NNP Daikin NNP Dailey NNP Daily NNP Daim NNP Daimler NNP Daimler-Benz NNP Dain NNP Dain-sponsored JJ Dainippon NNP Dairies NNPS Dairl NNP Dairy NNP Dairymen NNP Daisy NNP Daisy-Cadnetix NNP Daiwa NNP Dak NNP Dak. NNP Dakin NNP Dakota NNP Dakotas NNPS Dalai NNP Dalbar NNP Dale NNP Daley NNP Dalfen NNP Dalgety NNP Dali NNP Dali-esque JJ Dalian NNP Dalkon NNP Dallara NNP Dallas NNP Dallas-Barcelona NNP Dallas-Fort NNP Dallas-based JJ Dallas-headquartered JJ Dallasites NNPS Dalldorf NNP Dalles NNP Dalloway NNP Dalrymple NNP Dalton NNP Daly NNP Dalzell-Cousin NNP Damage NN Damages NNS Damas NNP Damascus NNP Dame NNP Dame-Michigan NNP Dames NNPS Damian NNP Dammit UH Damn VB Damned JJ Damon NNP Damonne NNP Damp JJ Dams NNS Dan NNP Dan'l NNP Dana NNP Dana-Farber NNP Danaher NNP Danbury NNP Dance NNP Dancer NNP Dancers NNP Dances NNS Danchin NNP Dancing NN Danco NNP Dandy NNP Dane NNP Danehy NNP Danes NNPS Danforth NNP Dang NNP Danger NNP Dangerous JJ Dangers NNS Dangling VBG Daniel NNP Daniele NNP Danieli NNP Daniels NNP Daniil NNP Danilo NNP Danilow NNP Danis NNP Danish JJ Danish-American NNP Dannehower NNP Dannemiller NNP Danny NNP Danske NNP Danssesse NNP Dantchik NNP Dante NNP Danube NNP Danubian JJ Danvers NNP Danville NNP Danza NNP Danzig NNP Daolet NNP Daphne NNP Dappertutto NNP Darak NNP Daralee NNP Darby NNP Darcy NNP Dardalla NNP Dare VB Dare-Base NNP Daremblum NNP Dares NNP Dargene NNP Darien NNP Darin NNP Darius NNP Dark NNP Darkhorse NNP Darkling NNP Darkness NN Darla NNP Darlene NNP Darlin NNP Darling NNP Darlington NNP Darlow NNP Darman NNP Darn VB Darnell NNP Darrell NNP Darrow NNP Darryl NNP Dart NNP Dartboard NN Darth NNP Dartmouth NNP Darvocet-N NNP Darvon NNP Darwen NNP Darwin NNP Darwinian JJ Darwinism NNP Das NNP Daschle NNP Dash NNP Dasher NNP Dashiell NNP Dashitchev NNP Dashwood NNP Dasibi NNP Dass FW Dassault NNP Dassault-Breguet NNP Data NNP Data-destroying JJ DataComm NNP DataPlan NNP DataQuest NNP DataTimes NNP Datacomputer NNP Datacrime NNP Datafleet NNP Datapoint NNP Dataproducts NNP Dataquest NNP Datas NNP Datastream NNP Datatech NNP Datatronic NNP Date NN Dating NNP Datson NNP Datsun NNP Datsuns NNPS Datuk NNP Dauchy NNP Daugherty NNP Daughter NN Dauntless NNP Dauphin NNP Dauphine NNP Dauster NNP Davao NNP Dave NNP Davenport NNP David NNP David-Weill NNP Davidge NNP Davidow NNP Davidowitz NNP Davidowitz. NNP Davids NNP Davidson NNP Davies NNP Davila NNP Davis NNP Davis\/Zweig NNP Davises NNPS Davison NNP Davy NNP Dawkins NNP Dawn NNP Dawson NNP Dax-Pontonx NNP Day NNP Day-to-day JJ Dayan NNP Daybreak NNP Daylight NNP Dayna NNP Days NNP Daytime NNP Dayton NNP Daytona NNP Daytonas NNP Daywatch NNP Daze NNP Dazed JJ De NNP De-Kooning NNP DeBakey NNP DeBartolo NNP DeBat NNP DeBeauvoir NNP DeCicco NNP DeConcini NNP DeFazio NNP DeForest NNP DeGeurin NNP DeGol NNP DeGregorio NNP DeGroot NNP DeHaviland NNP DeKalb NNP DeLay NNP DeLuca NNP DeMar NNP DeMeo NNP DeMontez NNP DeMoss NNP DeMoulin NNP DeMunn NNP DeMyer NNP DePaul NNP DePauw NNP DePugh NNP DeRita NNP DeScenza NNP DeShano NNP DeSio NNP DeSoto NNP DeTomaso NNP DeVillars NNP DeVille NNP DeVoe NNP DeVon NNP DeVos NNP DeVries NNP DeWalt NNP DeWitt NNP Deacon NNP Deaconess NNP Deacons NNS Deactivation NN Dead NNP Deadlock NN Deadly JJ Deadwood NNP Deaf JJ Deafening VBG Deak NNP Deal NNP Dealer NNP Dealers NNS Dealing VBG Deals NNS Dean NNP Deane NNP Deanna NNP Deans NNP Dear NNP Dearborn NNP Deardorff NNP Dearie NNP Dearly RB Death NN Death's-Head NNP Deatherage NNP Deaths NNP Deauville NNP Deaver NNP Deb NNP Debate NN Debates NNS Debating NNP Debban NNP Debbie NNP Debenture NN Debevoise NNP Debonnie NNP Debora NNP Deborah NNP Debra NNP Debt NN Debt-Burdened JJ Debt-free JJ Debts NNP Debugging VBG Debussy NNP Debutante NNP Dec NNP Dec. NNP Decades NNS Decanting VBG Decathlon NNP Decatur NNP Decay NNP Decca NNP December NNP Decent JJ Decentralization NN Decide VB Deciding VBG Decimalists NNPS Decimus NNP Decision NNP Decisionline NNP Decisions NNS Deck NNP Decker NNP Declan NNP Declaration NNP Declarative JJ Declares VBZ Declaring VBG Declinations NNS Decline NN Decliners NNS Declines NNS Declining VBG Decoma NNP Decorated VBN Decorating VBG Decorators NNP Decreasing VBG Decries VBZ Decrying VBG Dederick NNP Dedham NNP Dedication NN Deductible JJ Deducting VBG Deduction NN Deductions NNS Dee NNP Deed NNP Deegan NNP Deemed VBN Deep NNP Deepak NNP Deeper JJR Deeply RB Deer NNP Deere NNP Deerfield NNP Deering NNP Deerstalker NN Dees NNP Deets NNP Def NNP Defamation NNP Default NNP Defaults NNS Defeat NNP Defect NN Defections NNS Defectors NNS Defects NNPS Defence NN Defendant NN Defendants NNS Defenders NNS Defending VBG Defends NNS Defense NNP Defensive JJ Deficiency NNP Deficit NNP Define VB Defining VBG Definite JJ Definitely RB Definition NN Definitive JJ Defoe NNP Defrost VB Defuse VB Defying VBG Degas NNP Degree NN Dehmelt NNP Dei NNP Deidre NNP Deity NN Del NNP Del. NNP Del.-based JJ Delacre NNP Delahanty NNP Delamuraz NNP Delancy NNP Deland NNP Delaney NNP Delano NNP Delaunay NNP Delaware NNP Delaware-based JJ Delawareans NNPS Delawares NNS Delay NNP Delayed JJ Delays NNS Delbert NNP Delbridge NNP Delchamps NNP Delco NNP Deleage NNP Delegate NNP Delegates NNPS Delegation NNP Delegations NNS Delfim NNP Delhi NNP Deli NNP Delia NNP Deliberately RB Deliberations NNP Delicious NNP Delight NNP Delinquency NNP Delio NNP Delius NNP Deliver VB Deliveries NNS Delivery NN Dell NNP Dell'Arca NNP Della NNP Deller NNP Delloye NNP Dells NNP Dellums NNP Dellwood NNP Delmed NNP Delmont NNP Delmore NNP Deloitte NNP Deloitte-Touche NNP Delon NNP Deloris NNP Delors NNP Delphi NNP Delphine NNP Delray NNP Delta NNP Deltacorp NNP Deltec NNP Deluge NN Deluged VBN Delusion NNP Deluxe NNP Delvin NNP Delving VBG Delwin NNP Demagogues NNS Demand NN Demanded VBD Demanding VBG Demands NNS Demented JJ Demery NNP Demetrius NNP Demi NNP Deminex NNP Demisch NNP Demler NNP Demme NNP Democracy NNP Democrat NNP Democratic JJ Democratic-controlled JJ Democratic-endorsed JJ Democratic-led JJ Democratic-sounding JJ Democratic-sponsored JJ Democratic-style JJ Democratique NNP Democratization NN Democrats NNPS Demodocus NNP Demographics NNS Demographie NNP Demoiselles NNP Demon NNP Demons NNS Demonstrating VBG Demonstrations NNS Dempsey NNP Demus-Schubert NNP Den NNP Denali NNP Denenchofu NNP Deng NNP Denials NNS Denied VBN Denis NNP Denise NNP Denison NNP Denizens NNS Denko NNP Denlea NNP Denman NNP Denmark NNP Dennehy NNP Dennis NNP Dennison NNP Denny NNP Deno NNP Denouncing VBG Denrees NNP Denshi NNP Densmore NNP Dent NNP Dental NNP Dentistry NNP Denton NNP Dentsu NNP Denver NNP Denver-area NN Denver-based JJ Denverite NNP Deo NNP Deor NNP Deparment NNP Departing VBG Department NNP Department-sponsored JJ Department-store JJ Departments NNPS Departmentstore NNP Departure NN Departures NNP Dependency NNP Dependent NNP Depending VBG Depew NNP Depicted VBN Depicting VBG Depictions NNS Depletions NNS Deployment NNP Deportees NNS Deposit NNP Depositary NNP Depositors NNS Depository NNP Deposits NNS Deposits-a NNP Depot NNP Deppy NNP Depression NNP Depression-era JJ Depressive NNP Dept. NNP Deputies NNPS Deputy NNP Dequindre NNP Der NNP Derails NNS Derby NNP Derchin NNP Derck NNP Deregulation NN Derek NNP Derel NNP Derivative JJ Deriving VBG Derr NNP Dershowitz NNP Dervish NN Derwin NNP Deryck NNP Des NNP DesRosiers NNP Desai NNP Desarrollo NNP Desc NNP Descartes NNP Descendants NNS Descending VBG Descent NN Describing VBG Description NNP Descriptive JJ Dese NNP Desegregation NN Deseret NNP Desert NNP Desheng NNP Design NNP Designated NNP Designcraft NNP Designed VBN Designer NN Designers NNPS Designing NNP Designs NNS Desir NNP Desire NN Desiring VBG Desk NNP Desktop NNP Deslonde NNP Desmond NNP Desolation NNP Despair NN Desperate JJ Desperately RB Despina NNP Despising VBG Despite IN Desprez NNP Desrosiers NNP Destec NNP Destinations NNS Destler NNP Destroy NNP Destroyer NN Destruction NN Detached VBN Detachment NNP Detail NNP Detailed VBN Details NNS Detecting VBG Detective NNP Detectives NNP Detente NN Detention NNP Detergent NN Deterioration NN Determine VB Determined VBN Determining VBG Deterrent NN Detractors NNS Detrex NNP Detroit NNP Detroit-area JJ Detroit-based JJ Detroit-over-San JJ Detroit-to-Tokyo JJ Detroiters NNS Deukmejian NNP Deus FW Deutsch NNP Deutsche NNP Devans NNP Devario NNP Devastation NN Devcon NNP Develop VB DevelopMate NNP Developed VBN Developer NNP Developers NNS Developing VBG Development NNP Developments NNPS Develops NNPS Devens NNP Dever NNP Devereux NNP Devery NNP Devesa NNP Devey NNP Device NN Devices NNPS Devil NNP Devils NNPS Devin NNP Devine NNP Devitt NNP Devlin NNP Devol NNP Devon NNP Devonshire NNP Devoted VBN Devotees NNS Devout JJ Dewar NNP Dewey NNP Dewhurst NNP Dexatrim NNP Dexedrine NNP Dexter NNP Dey NNP Deyo NNP Dhabi NNP Dharma NNP Dhofaris NNPS Dhuu NNP Di NNP DiCara NNP DiFilippo NNP DiGiorgio NNP DiIulio NNP DiLeo NNP DiLorenzo NNP DiLoreto NNP DiLuzio NNP DiMaggio NNP DiNardo NNP DiSimone NNP DiVall NNP DiVarco NNP Diabetes NNP Diabetic NNP Diaghileff NNP Diaghilev NNP Diagnoses NNPS Diagnosis NNP Diagnostic NNP Diagnostics NNPS Dial NNP Dialogue NNP Dialogues NNP Diamandis NNP Diamanti NNP Diametric JJ Diamond NNP Diamond-Star NNP Dian NNP Diana NNP Diane NNP Dianne NNP Diaper NNP Diario NNP Diary NNP Diasonics NNP Diaz NNP Dicarban NN Dice NNS Dicello NNP Diceon NNP Dick NNP Dicke NNP Dickel NNP Dickens NNP Dickensian JJ Dickey NNP Dickie NNP Dickinson NNP Dickman NNP Dicks NNP Dickson NNP Dictaphone NNP Dictates NNS Dictation NN Dictator NNP Dictionaries NNS Dictionary NNP Did VBD Did- NNP Didi NNP Didion NNP Die NNP Die-hard JJ DieHard JJ Diebel NNP Diebold NNP Died VBD Diefenbach NNP Diego NNP Diego-area JJ Diego-based JJ Diehards NNS Diehl NNP Diem NNP Dienbienphu NNP Dieppe NNP Dierker NNP Diery NNP Dies NNP Diesel NNP Diest NNP Diet NNP Dietary JJ Dieter NNP Dietetic NNP Diethylstilbestrol NN Dietisa NNP Dietrich NNP Diets NNS Diety NNP Dietz NNP Dietzer NNP Dieu FW Dieux NNP Diff NN Differ VBP Differences NNS Different JJ Differential JJ Difficult JJ Diffring NNP Dig VB Digate NNP Digby NNP Digest NNP Diggers\/Noise NNP Digges NNP Digi NNP Digital NNP Dignitaries NNS Dignity NNP Dijon NNP Dilantin NNP Dilenschneider NNP Dili NNP Diligence NNP Dilip NNP Dill NNP Dillard NNP Diller NNP Dillinger NNP Dillingham NNP Dillmann NNP Dillon NNP Dillow NNP Dilly NNP Dilthey NNP Dilworth NNP Dilys NNP Dilzem NNP Dim VBP Dimaggio NNP Diman NNP Dime NNP Dimensions NNP Dimes NNP Dimitri NNP Dimitriadis NNP Dimitris NNP Dimly RB Dineen NNP Diners NNP Dinerstein NNP Dines NNP Ding NNP Dingell NNP Dingell-Waxman NNP Dingle NNP Dingman NNP Dingwall NNP Dingy-looking JJ Dinh NNP Dining NNP Dinkins NNP Dinner NN Dino NNP Dinosaur NNP Dinsa NNP Dinsmore NNP Diocesan JJ Diocese NNP Diodati NNP Dion NNP Dionie NNP Dionigi NNP Dionne NNP Dionysian JJ Dionysus NNP Dior NNP Dioxins NNS Dip VB Diplomatic JJ Diplomats NNS Diprivan NNP Dipylon NNP Dire JJ Direct JJ Direct-mail JJ Directed VBN Direction NNP Directionality NN Directions NNP Directive NNP Directly RB Director NNP Director-General NNP Directorate NNP Directors NNS Directory NNP Dirion NNP Dirk NNP Dirks NNP Dirksen NNP Diron NNP Dirt NN Dirty JJ Dirvin NNP Disabilities NNP Disabled JJ Disadvantaged NNP Disadvantages NNS Disaffiliation NN Disagreement NN Disappointing JJ Disappointment NN Disappointments NNS Disapproval NN Disarmament NNP Disaster NN Disasters NNS Disc NNP Disciplinary NNP Discipline NN Disciplined VBN Disclosed VBN Disclosure NN Disclosures NNS Discontinue VB Discos NNS Discount NNP Discounts NNS Discouraged VBN Discouragement NN Discours NNP Discourse NNP Discover NNP Discovered VBN Discoveries NNS Discovering VBG Discovery NNP Discovision NNP Discreet JJ Discrepancies NNS Discretion NN Discrimination NNP Discs NNP Discussed VBN Discussing VBG Discussion NN Discussions NNS Disease NNP Diseases NNPS Disgrace NN Disgruntled JJ Disgusted VBN Dish NNP Dishonesty NN Disk NN Disk\/Trend NNP Dismal JJ Dismantle VB Dismay NN Dismissing VBG Dismounting VBG Disney NNP Disney\/MGM NNP Disneyland NNP Disorderly JJ Dispatch NNP Dispensing VBG Dispersals NNS Displacement NN Display NN Displayed VBN Displaying VBG Disposable JJ Disposables NNS Disposal NNP Disposition NNP Disposti NNP Disputada NNP Disputado NNP Disputes NNP Disquisition NNP Disregarding VBG Dissect VB Dissenting JJ Dissident NNP Dissidents NNS Dist NNP Dist. NN Distally RB Distance NNP Distances NNS Distant JJ Distilled NNP Distiller NN Distillers NNPS Distinguished NNP Distorts NNP Distracted VBN Distressed JJ Distributed VBN Distributing VBG Distribution NNP Distributive NNP Distributors NNS District NNP Districts NNS Ditch NNP Ditka NNP Ditlow NNP Ditmar NNP Ditmars NNP Dittamore NNP Ditto NN Divergent JJ Divers NNP Diversey NNP Diversification NN Diversified NNP Diversify VB Diversity NN Divertimento NNP Dives NNS Divesting VBG Divestiture NN Divi NNP Divide VB Divided VBN Dividend NN Dividend-related JJ Dividends NNS Divine NNP Diving NN Divinity NNP Division NNP Divisional NNP Divisions NNS Divorced NNP Dixie NNP Dixiecrat NNP Dixiecrats NNS Dixieland NNP Dixon NNP Dixons NNP Dizzy NNP Djakarta NNP Django NNP Djangology NNP Djemaa NNP Djurdjevic NNP Dludsky NNP Dmitri NNP DnC NNP Dnieper NNP Dniepr NNP Do VBP Doak NNP Doaty NNP Dobbins NNP Dobbs NNP Doberman NN Dobi NNP Dobson NNP Doc NNP Docherty NNP Dock NNP Dockray NNP Dockweiler NNP Doctor NNP Doctors NNS Doctrine NNP Document NNP Documentary NNP Documentation NNP Documents NNS Dodd NNP Dodd-type NNP Dodds NNP Dodge NNP Dodger NNP Dodgers NNP Dodington NNP Dods NNP Dodson NNP Doe NNP Doerflinger NNP Doerig NNP Doerner NNP Does VBZ Dog NNP Dogberry NNP Dogs NNS Dogtown NNP Dogumenti FW Doherty NNP Dohnanyi NNP Doi NNP Doing NNP Dolan NNP Dolce NNP Dole NNP Doll NNP Dollar NN Dollar-Britten NNP Dollar-De NNP Dollar-yen JJ Dollars NNPS Dolley NNP Dolls NNP Dolly NNP Dolmabahce NNP Dolora NNP Dolores NNP Dolphin NNP Dolphins NNPS Dom NNP Domaine NNP Doman NNP Dome NNP Domeier NNP Domenici NNP Domesday NNP Domestic JJ Domestically RB Domicilium NNP Domina NNP Dominant JJ Dominated VBN Domingo NNP Domingos NNP Dominguez NNP Dominic NNP Dominica NNP Dominican NNP Dominici NNP Dominick NNP Dominion NNP Dominique NNP Domino NNP Dominus NNP Domitian NNP Domokous NNP Dompierre NNP Domtar NNP Don NNP Don't VB Dona NNP Donaghy NNP Donahue NNP Donald NNP Donaldson NNP Donaldsonville NNP Donating VBG Donations NNS Donato NNP Donbas NNP Done VBN Doner NNP Dong NNP Dong-A NNP Dongen NNP Donics NNP Donizetti NNP Donna NNP Donnan NNP Donnay NNP Donnell NNP Donnelley NNP Donnelly NNP Donner NNP Donning VBG Donnybrook NNP Donofrio NNP Donoghue NNP Donohoo NNP Donohue NNP Donor NN Donors NNS Donovan NNP Donut NNP Donuts NNP Doo NNP Doobie NNP Dookiyoon NNP Dooley NNP Dooleys NNPS Doolin NNP Dooling NNP Doolittle NNP Doonesbury NNP Door NNP Doordarshan NNP Doorne NNP Doors NNS Doosan NNP Doppler NNP Dor NNP Dora NNP Dorado NNP Doran NNP Doraville NNP Dorcas NNP Dorena NNP Dorens NNP Dorenzo NNP Dorfman NNP Dorgan NNP Dorgen NNP Doria NNP Dorian NNP Doric JJ Doris NNP Doritos NNS Dormitory NNP Dornan NNP Dorney NNP Dornier NNP Doron NNP Doronfeld NNP Dorothee NNP Dorothy NNP Dorr NNP Dorrance NNP Dorrances NNPS Dorsch NNP Dorset NNP Dorsey NNP Dorsten NNP Dort NNP Dortch NNP Dortmund NNP Dos NNP Doskocil NNP Dostoevski NNP Dostoevsky NNP Doswell NNP Dotson NNP Dotzler NNP Double NNP Double-Figure NNP Double-Jointed NNP Double-digit JJ Doubled VBD Doubleday NNP Doubles NNP Doubt NN Doubtful JJ Doubtless RB Doubts NNS Douce NNP Doug NNP Dough NN Dougherty NNP Doughnuttery NN Douglas NNP Douglass NNP Doulgas NNP Dousman NNP Dov NNP Dove NN Dover NNP Dow NNP Dow-Jones NNP DowBrands NNP Dowager NNP Dowd NNP Dowex-2-chloride NN Dowguard NNP Dowie NNP Dowling NNP Down IN Downbeat NNP Downers NNP Downey NNP Downfall NNP Downgraded VBN Downgrades NNS Downham NNP Downing NNP Downs NNP Downside JJ Downstairs NN Downtown NN Dowty NNP Doxiadis NNP Doyle NNP Dozen NNP Dozens NNS Dr NNP Dr. NNP Drabble NNP Drabinsky NNP Draco NNP Draconian JJ Dracula NNP Draft NNP Drafted VBN Draftula NNP Drag VB Dragging VBG Dragnet NNP Drago NNP Dragon NNP Dragonetti NNP Dragons NNP Dragoslav NNP Dragoumis NNP Drahuschak NNP Drain VB Drake NNP Dramatic JJ Draper NNP Drastic JJ Dravo NNP Draw VB Draw-file NN Drawbacks NNS Drawers NNS Drawing VBG Drawn VBN Dread NNP Dreadnought NNP Dream NNP Dream-Lusty NNP Dream-Miss NNP Dream-Next NNP Dream-Sweetmite NNP Dream-Torkin NNP Dream-Way NNP Dreamboat NNP Dreamers NNS Dreams NNS Dred NNP Dreieich NNP Dreiser NNP Dreisers NNPS Drell NNP Dreman NNP Drenched JJ Drennen NNP Dresbach NNP Dresbachs NNPS Dresden NNP Dresdner NNP Dresdner-ABD NNP Dress NNP Dressed VBN Dresser NNP Dresses NNS Dresylon NNP Drew NNP Drexel NNP Drexel-managed JJ Drexel-underwritten JJ Drexler NNP Dreyer NNP Dreyfus NNP Dried VBN Driesell NNP Drift NNP Drifting VBG Drifts NNS Drill VB Drilling NNP Drink VB Drinker NN Drinkhouse NNP Drinking VBG Driscoll NNP Driskill NNP Drive NNP Drive-in NNP Driven VBN Driver NNP Drivers NNS Driving VBG Drivon NNP Drobnick NNP Drobny NNP Drogerias NNP Drogoul NNP Droid NNP Droll NNP Dromey NNP Dronk NNP Drop VB Dropouts NNS Dropping VBG Drought NN Drouot NNP Drovers NNS Droz NNP Drs. NNP Dru NNP Drubbing NN Drug NNP Drug-Treatment JJ Drug-industry JJ Druggan-Lake NNP Drugs NNS Drugstore NNP Druid NN Druin NNP Drum NNP Drummer NN Drums NNS Drunk JJ Drunkard NNP Drunken JJ Drunkenness NN Drury NNP Druse JJ Dry NNP Drybred NNP Dryden NNP Drye NNP Dryer NN Dryfoos NNP Drying NN Dryja NNP Ds NNS Du NNP DuCharme NNP DuComb NNP DuPont NNP DuVol NNP Dual JJ Duane NNP Duarte NNP Dubai NNP Dubaih NNP Dubbed VBN Dubilier NNP Dubin NNP Dubinin NNP Dubinsky NNP Dublin NNP Dubnow NNP Dubois NNP Dubose NNP Dubovskoi NNP Duchenne NNP Duchess NNP Duchossois NNP Duchy NNP Duck NNP Ducking VBG Ducky NNP Duclos NNP Dudley NNP Due JJ Duel NNP Duero NNP Duesseldorf NNP Duff NNP Duffey NNP Duffield NNP Duffus NNP Duffy NNP Dufresne NNP Dugan NNP Dugan\/Farley NNP Dugdale NNP Duhagon NNP Dukakis NNP Dukakises NNP Duke NNP Duke-EPA JJ Dukes NNPS Dulaney NNP Dulles NNP Dulude NNP Duluth NNP Dumas NNP Dumb JJ Dumbo NNP Dumez NNP Dummkopf NN Dumont NNP Dumping NN Dumpster NNP Dumpty NNP Dun NNP Dunaway NNP Dunbar NNP Duncan NNP Dunde NNP Dundee NNP Dundeen NNP Dunes NNPS Dung NNP Dunham NNP Dunkel NNP Dunkelberg NNP Dunker NNP Dunkin NNP Dunkirk NNP Dunlaevy NNP Dunlap NNP Dunlop NNP Dunn NNP Dunn-Atherton NNP Dunne NNP Dunston NNP Dunton NNP Duplicate NN Duplicating VBG Dupont NNP Duponts NNPS Dupps NNP Dupuy NNP Duque NNP Duquesne NNP Durable JJ Durable-goods JJ Durables NNPS Duracell NNP Durakon NNP Durant NNP Durante NNP Duration NN Durban NNP Durcan NNP Duren NNP Durenberger NNP Durer NNP Durgin NNP Durham NNP During IN Duriron NNP Durk NNP Durkheim NNP Durkin NNP Durlach NNP Durmoy NNP Durney NNP Durning NNP Duro-Test NNP DuroTest NNP Durocher NNP Durrell NNP Durwood NNP Duse NNP Dussa NNP Dusseldorf NNP Dust NNP Dustin NNP Duston NNP Dusty NNP Dutch JJ Dutch-based JJ Dutch-descended JJ Dutch-elm-disease NN Dutch\/Shell NNP Dutchess NNP Dutchman NNP Duties NNP Dutil NNP Dutton NNP Duty NNP Duty-Free NNP Duty-free JJ Duvalier NNP Duverger NNP Duy NNP Duyvil NNP Duzan NNP Dvorak NNP Dwarfing VBG Dwellers NNS Dwight NNP Dwor NNP Dworkin NNP Dworkin-Cosell NNP Dwyer NNP DyDee NNP Dyazide NNP Dycom NNP Dyer NNP Dyerear NNP Dying NNP Dyk NNP Dyke NNP Dylan NNP Dylan-influenced JJ Dylex NNP Dyna NNP Dynabook NNP Dynafac NN Dynamic NNP Dynamics NNP Dynamite NNP Dynapert NNP Dynascan NNP Dynasts NNPS Dynasty NNP Dyncorp NNP Dyncorp. NNP Dynoriders NNP Dysan NNP Dyson NNP E NN E&J NNP E&P NNP E-1 CD E-2 CD E-2C NN E-6A NN E-71 NNP E-II NNP E-Systems NNP E-Z JJ E-mail NN E. NNP E.B. NNP E.C. NNP E.D. NNP E.E. NNP E.F. NNP E.G. NNP E.G.T. NNP E.H. NNP E.M. NNP E.O. NNP E.P. NN E.R. NNP E.T. NNP E.T.C NNP E.W. NNP E.Y. NNP E5 NNP EAC NNP EARNINGS NNS EARTHQUAKE NN EAST NNP EASTERN NNP EBPI NNP EBS NNP EC NNP EC-1 NN EC-made JJ EC-wide JJ ECA NNP ECI NNP ECONOMIC JJ ECONOMY NN ECP NNP ECPA NNP ECU NNP ECU-based JJ ECU-denominated JJ ECUs NNS EDA NNP EDI NNP EDISON NNP EDMOV NN EDS NNP EDT NNP EDUCATION NN EEAE-cellulose NN EEG NNP EEOC NNP EFFECT NN EFPs NNS EG&G NNP EGA NNP EGA-VGA JJ EGYPT NNP EISA NNP EITC NNP EK NNP EL-10 NNP ELDERLY JJ ELECTED VBD ELECTIONS NNS ELECTRIC NNP ELECTRONICS NNP ELP NNP ELSINORE NNP ELWOOD NNP EMA NNP EMC NNP EMI NNP EMPIRE NNP EMPLOYEE NN EMPLOYEES NNS EMS NNP ENCYCLOPAEDIA NNP ENDED VBD ENERGY NN ENFIELD NNP ENG NNP ENGLAND NNP ENGRAPH NNP ENI NNP ENTEL NNP ENTERED VBD ENTERPRISES NNP ENTERS VBZ ENTERTAINMENT NNP ENTREPRENEURSHIP NN ENVIRONMENTAL JJ EOG NNP EP-3E NNP EPA NNP EPC NNP EPO NNP EPO-treated JJ EQU NN EQUIPMENT NNP EQUITIES NNPS EQUITY NNP ERC NNP ERG NNP ERISA NNP ERNST NNP ES NNP ES250 NNP ESB NNP ESL NNP ESN NN ESOP NNP ESOPs NNS ESP NNP ESPN NNP ESPs NNPS EST NNP ESTABLISHMENT NN ESTATE NN ESystems NNP ET NNP ETA NNP ETHICS NNS ETR NNP ETV NNP EUMMELIHS NNP EURODOLLARS NNS EUROP NNP EUROPE NNP EVER RB EVEREX NNP EVERYONE NN EWC NN EWDB NNP EX NNP EX-OFFICIALS NNS EXAMINE VB EXBT NNP EXCHANGE NN EXE NNP EXECUTIVES NNPS EXP NNP EXPANDS VBZ EXPECT VBP EXPENSES NNS EXPENSIVE JJ EXPRESS NNP EXPRESSED VBD EXTEND VB EXXON NNP EYEWEAR NN EYP NNP EZ NNP Each DT Eades NNP Eager JJ Eagle NNP Eagle-Berol NNP Eagle-Picher NNP Eagleburger NNP Eagles NNP Eagleton NNP Eagleton-Newark NNP Eakle NNP Ealy NNP Eamonn NNP Ear NNP Ear-Muffs NNPS Earl NNP Earle NNP Earlham NNP Earlier RBR Earls NNP Early RB Early-morning JJ Early-retirement NN Earning NN Earnings NNS Earns VBZ Earp NNP Ears NNS Earth NNP Earth-quake NN Earth-week NN Earth-weeks NNS Earthbeat NNP Earthlings NNS Earthmen NNPS Earthquake NN Earthquake-related JJ Earthquakes NNS Ease VB Easier JJR Easily RB East NNP East-West NNP Eastate NNP Eastchester NNP Easter NNP Easterbrook NNP Eastern NNP Easterners NNS Easthampton NNP Eastland NNP Eastman NNP Easton NNP Eastwick NNP Easy NNP EasyLink NNP Eat NNP Eaters NNS Eating NN Eaton NNP Eats NNS Eaux NNP Eavesdropping NN Ebasco NNP Ebaugh NNP Ebbetts NNP Ebbutt NNP Ebel NNP Eben NNP Ebensburg NNP Eber NNP Eberly NNP Ebersol NNP Ebert NNP Ebrahim NNP Ebury NNP Eccles NNP Ecclesiastical NNP Ecco NNP Echeandia NNP Echelon NNP Echo NNP Echoing VBG Eckart NNP Eckenfelder NNP Eckerd NNP Eckersley NNP Eckhard NNP Eckhardt NNP Eclectic JJ Eclipse NNP Ecogen NNP Ecolab NNP Ecole NNP Ecological NNP Ecology NN Econoclast NNP Economdis NNP Econometric NNP Economic NNP Economically RB Economics NNP Economidis NNP Economies NNS Economique NNP Economist NNP Economists NNS Economizers NNS Economy NNP Ecuador NNP Ecumenical NNP Ed NNP Ed. NNP Eddie NNP Eddies NNP Eddington NNP Eddy NNP Eddyman NNP Ede NNP Edelman NNP Edelmann NNP Edelson NNP Edelstein NNP Eden NNP Eder NNP Edgar NNP Edgardo NN Edge NNP Edgerton NNP Edgewater NNP Edict NNP Edinburgh NNP Edison NNP Edisto NNP Edita NNP Edith NNP Editing NN Edition NNP Editions NNPS Editor NNP Editorial JJ Editorials NNS Editors NNS Edley NNP Edmar NNP Edmiston NNP Edmond NNP Edmondson NNP Edmonia NN Edmonton NNP Edmund NNP Edmunston NNP Edna NNP Ednee NNP Ednie NNP Edouard NNP Edsel NNP Edson NNP Eduard NNP Eduardo NNP Educate VB Education NNP Educational NNP Educator NNP Educators NNP Edw NNP Edward NNP Edwardes NNP Edwardh NNP Edwards NNP Edwardsville NNP Edwin NNP Edwina NNP Edwviges NNP Edythe NNP Edzard NNP Effect NN Effective JJ Effectively RB Effects NNPS Efficiencies NNS Efficiency NN Effie NNP Effjohn NNP Effoa NNP Efforts NNS Egad UH Egalitarianism NNP Egan NNP Egerton NNP Egg NNP Egg-industry NN Egger NNP Eggers NNP Eggs NNP Eggum NNP Egil NNP Egils NNP Egnuss NNP Egon NNP Egypt NNP Egyptian JJ Egyptians NNPS Eh UH Ehlers NNP Ehman NNP Ehrhardt NNP Ehrlich NNP Ehrlichman NNP Ehrman NNP Eicher NNP Eichler NNP Eichmann NNP Eichner NNP Eichof NNP Eidsmo NNP Eiffel NNP Eigen NNP Eight CD Eight-foot-tall JJ Eighteen CD Eighteenth NNP Eighteenth-century JJ Eighth NNP Eighties NNP Eighty CD Eighty-Eight NNP Eighty-Four NNP Eighty-five CD Eighty-seventh NNP Eighty-three CD Eiji NNP Eileen NNP Einar NNP Einhorn NNP Einsatzkommandos NNP Einstein NNP Einsteinian JJ Eire NNP Eisai NNP Eisenach NNP Eisenberg NNP Eisenhhower NNP Eisenhower NNP Eisenstat NNP Eishi NNP Eisler NNP Eiszner NNP Either CC Eizenstat NNP Ejaculated VBD Ek NNP Ekaterinoslav NNP Ekberg NNP Ekco NNP Ekman NNP Ekonomicheskaya NNP Ekstrohm NNP Ekwanok NNP El NNP El-Abed NNP El-Sadr NNP Elaborate JJ Elaborating VBG Elaine NNP Elan NNP Elanco NNP Elavil NNP Elba NNP Elbaum NNP Elbaz NNP Elbe NNP Elbow NN Elburn NNP Elco NNP Elcotel NNP Elder NNP Elderly JJ Elders NNP Eldest JJS Eldon NNP Eldred NNP Eleanor NNP Eleazar NNP Elec NNP Elecktra NNP Elected VBN Election NNP Elections NNS Elector NNP Electoral NNP Electra NNP Electress NNP Electric NNP Electrical NNP Electricity NNP Electrification NNP Electro NNP Electro-Optical NNP Electro-Optics NNP Electrochemical NNP Electrolux NNP Electromyography NN Electron NNP Electron-microscopical NN Electronic NNP Electronics NNP Electrostatic JJ Electrosurgery NNP Elegance NN Elegant NNP Elegies NNP Elektronik NNP Elemental JJ Elementary NNP Elements NNS Elemer NNP Elena NNP Elephant NNP Elephants NNS Elevated NNP Eleven CD Elf NNP Elfner NNP Elgin NNP Eli NNP Eliades NNP Elianti NNP Elias NNP Elie NNP Eliezer NNP Eligibility NN Eligio NNP Elijah NNP Eliminate VB Eliminating VBG Elimination NN Elinor NNP Elinsky NNP Elios NNP Eliot NNP Eliot-or-Martin NNP|CC|NP Elisa NNP Elisabeth NNP Elise NNP Elisha NNP Elite NNP Elizabeth NNP Elizabethan JJ Elizabethans NNS Elizario NNP Eljer NNP Elkan NNP Elkhorn NNP Elkin NNP Elkind NNP Elkins NNP Elks NNP Elkus NNP Ella NNP Ellamae NNP Elle NNP Ellen NNP Ellerman NNP Ellesmere NNP Ellie NNP Elliman NNP Ellington NNP Elliot NNP Elliott NNP Ellis NNP Ellison NNP Ellman NNP Ellmann NNP Ellsaesser NNP Ellsworth NNP Ellwood NNP Elm NNP Elman NNP Elmer NNP Elmgrove NNP Elmhurst NNP Elmira NNP Elmsford NNP Eloi NNP Eloise NNP Eloy NNP Elrick NNP Elsa NNP Else RB Elsevier NNP Elsewhere RB Elshtain NNP Elsie NNP Elsinore NNP Elton NNP Eluard NNP Elusive NNP Elvador NNP Elvekrog NNP Elvira NNP Elvis NNP Ely NNP Elyria NNP Elysees NNP Emancipation NNP Emanuel NNP Emanuele NNP Embarcadero NNP Embarcaderothe NNP Embarrassed JJ Embassy NNP Embedded VBN Embittered JJ Emboldened JJ Embraer NNP Embry NNP Embryo NN Embryogen NNP Embryos NNS Emcee NNP Emerald NNP Emergency NNP Emerging VBG Emeritus NNP Emerson NNP Emery NNP Emeryville NNP Emhart NNP Emigrant NNP Emigration NN Emil NNP Emile NNP Emilio NNP Emily NNP Eminase NNP Eminonu NNP Emirates NNPS Emission NN Emlyn NNP Emma NNP Emmanuel NNP Emmaus NNP Emmerich NNP Emmert NNP Emmett NNP Emmies NNPS Emmons NNP Emmy NN Emory NNP Emotional JJ Emotionally RB Empedocles NNP Emperor NNP Emperors NNS Emphasis NN Empire NNP Empire-Berol NNP Empirically RB Employee NNP Employee-benefit JJ Employee-owned JJ Employees NNS Employer NN Employers NNS Employes NNS Employment NNP Emporium NNP Empresa NNP Emptied VBD Empty JJ Emshwiller NNP Emulex NNP Emyanitoff NNP En NNP En-lai NNP EnClean NNP Enasa NNP Encare NNP Enchaine NNP Encino NNP Enclosed VBN Encompassing VBG Encore NNP Encourage VB Encouraged VBN Encouragement NNP Encouraging VBG Encyclopaedia NNP Encyclopedia NNP Encylopedia NN End NN Endangered NNP Endara NNP Endeavor VB Ended NNP Endgame NNP Endicott NNP Ending VBG Endless JJ Endo NNP Endowment NNP Ends NNS Endure VBP Enel NNP Enemies NNS Enemy NN Energetic JJ Energie NNP Energieproduktiebedrijf NNP Energies NNP Energized VBN Energy NNP Enersen NNP Enfield NNP Enforce VB Enforcement NNP Enforcers NNS Eng NNP Engaged VBN Engages NNS Engaging VBG Engel NNP Engelhard NNP Engelken NNP Engh NNP Engine NNP Engineer NNP Engineered NNP Engineering NNP Engineers NNPS Engines NNPS Engisch NNP England NNP England-based JJ England-born NNP|VBN Englander NNP Englanders NNPS Engle NNP Engler NNP Engles NNP Englewood NNP English NNP English-Danish NNP English-Dutch JJ English-Scottish-French NNP English-born JJ English-dialogue JJ English-language JJ English-rights JJ English-speakers NNS English-speaking JJ Englishman NNP Englishmen NNS Englishwoman NNP Englishy JJ Englund NNP Engraph NNP Engraving NNP Engrg NNP Enhance NNP Enhanced NNP Enhancement NNP Enhancements NNP Enholme NNP EniChem NNP Enichem NNP Enid NNP Enimont NNP Enjoy VB Enjoying VBG Enlargement NN Ennis NNP Enoch NNP Enormous JJ Enos NNP Enough JJ Enquirer NNP Enrico NNP Enright NNP Enrique NNP Enron NNP Ensemble NNP Enserch NNP Ensign NNP Enskilda NNP Ensolite NN Ensrud NNP Ente NNP Entenmann NNP Enter VB Entergy NNP Entering NNP Enterprise NNP Enterprises NNPS Entertaining NNP Entertainment NNP Entex NNP Enthoven NNP Enthusiasm NN Enthusiast NNP Enthusiastic JJ Enthusiastically RB Enthusiasts NNS Entirely RB Entitlements NNS Entombment NN Entrance NN Entre NNP Entree NNP Entrekin NNP Entrenched VBN Entrepreneur NN Entrepreneurs NNS Entries NNS Entry NN Entwhistle NNP Enver NNP Envigado NNP Enviro-Gro NNP Environment NNP Environmental NNP Environmentalism NNP Environmentalists NNS Enviropact NNP Enzo NNP Enzor NNP Enzymatic JJ Enzytech NNP Epes NNP Eph NNP Ephesians NNPS Ephesus NNP Ephlin NNP Ephron NNP Epicurean JJ Epicurus NNP Epidemiological JJ Epigraph NN Epilady NNP Epilepsy NNP Epinal NNP Epinalers NNPS Epiphany NNP Episcopal NNP Episcopalians NNPS Episodes NNS Epistles NNPS Epitaph NNP Epp NNP Eppel NNP Eppelmann NNP Eppler NNP Epplers NNP Eppner NNP Epps NNP Eprex NNP Epsilon NNP Epsom NNP Epson NNP Epstein NNP Eq. NN Equal NNP Equality NNP Equalizer NNP Equally RB Equate VB Equations NNS Equator NNP Equestrian NNP Equibank NNP Equifax NNP Equimark NNP Equinox NNP Equipement NNP Equipment NNP Equipped VBN Equitable NNP Equitec NNP Equities NNPS Equity NNP Equity-Income NNP Equivalent NN Equivalents NNS Equus NNP Era NNP Erasing VBG Erasmus NNP Erath NNP Erbamont NNP Erburu NNP Erde NNP Erdman NNP Erdmann NN Erdolversorgungs NNP Erdos NNP Erected VBN Erection NNP Erensel NNP Erfurt NNP Erhart NNP Eric NNP Erich NNP Erickson NNP Ericson NNP Erie NNP Erik NNP Erikson NNP Erin NNP Eriskay NNP Erithmatic NN Eritrea NNP Eritrean JJ Eritreans NNPS Erjun NNP Erle NNP Erlenborn NNP Erlenmeyer NN Erling NNP Erma NNP Ermanno NNP Ernest NNP Ernesto NNP Ernie NNP Ernst NNP Erodes VBZ Eromonga NNP Eros NNP Erosion NN Erotic NNP Err VB Errol NNP Erroll NNP Errors NNS Erskin NNP Erskine NNP Ervin NNP Erwin NNP Esber NNP Escadrille NNP Escalante NNP Escalation NN Escanaba NNP Escape NNP Eschewing VBG Escobar NNP Escort NNP Escorts NNS Escudome NNP Esher NNP Eshleman NNP Eskandarian NNP Eskenazi NNP Eskimo NNP Eskimos NNPS Eskridge NNP Eslinger NNP Esmarch NNP Esnard NNP Esnards NNPS Esopus NNP Espagnol NNP Espana NNP Espanol NNP Especially RB Espectador NNP Espenhain NNP Esperanza NNP Espinosa NNP Esplanade NNP Espre NNP Esprit NNP Espy NNP Esquire NNP Esquivel NNP Esrey NNP Essar NNP Esselte NNP Essen NNP Essentially RB Essex NNP Esso NNP Establish VB Established VBN Establishing VBG Establishment NNP Estancieros NNS Estate NNP Estates NNP Esteban NNP Estee NNP Esteli NNP Estella NNP Estep NNP Estes NNP Esther NNP Estherson NNP Estimate NNP Estimated VBN Estimates NNS Estimating VBG Estonia NNP Estonian JJ Estonian-language JJ Estonians NNPS Estuary NNP Eta NNP Etablissements NNP Etc. NNP Etch-a-Sketch NNP Eternal NNP Eternity NN Etess NNP Ethan NNP Ethane NN Ethel NNP Ethel-Jane NNP Ethernet NNP Ethical NNP Ethicist NN Ethics NNP Ethiopia NNP Ethiopian JJ Ethiopians NNPS Ethocyn NNP Ethyl NNP Etienne-Emile NNP Etruscan JJ Etsuko NNP Etsuro NNP Etsy NNP Ettore NNP Etudes NNP Etzioni NNP Eubank NNP Eubanks NNP Eubie NNP Euclid NNP Eugene NNP Eugenia NNP Euler NNP Euphoria NNP Euralliance NNP Eurasian NNP Euratom NNP Eureka NNP Euripides NNP Euro NNP Euro-Belge NNP Euro-Communist NNP Euro-TV NNP Euro-ashtrays NNS Euro-banners NNS Euro-barbecue NN Euro-beach NN Euro-caps NNS Euro-cards NNS Euro-cigarette NN Euro-consumers NNPS Euro-enthusiasts NNS Euro-factories NNS Euro-housewife NN Euro-jogging JJ Euro-pillows NNS Euro-playing JJ Euro-products NNS Euro-son NN Euro-that NN Euro-this NN Euro-watches NNS EuroBelge NNP EuroTV NNP Eurobond NNP Eurobonds NNS Eurocell NNP Eurocom NNP Eurocommercial JJ Euroconsumer NN Euroconvertible JJ Eurocops NNPS Eurocracy NN Eurocrat NN Eurocrats NNS Eurocrooks NNPS Eurodebentures NNS Eurodebt NNP Eurodollar NN Eurodynamics NNPS Eurofighter NNP Eurofima NNP Euroflics NNPS Euroissues NNS Eurokitsch NN Euromark NN Euromarket NNP Euronotes NNS Europa NNP Europalia NNP Europe NNP Europe-based JJ Europe-wide JJ European JJ European-American NNP European-based JJ European-branch JJ European-made JJ European-minded JJ Europeanish JJ Europeanization NN Europeanized VBN Europeans NNPS Europhoria NN Euroshuttle NNP Eurostat NNP Eurotempo NNP Eurotunnel NNP Eurovision NNP Euroyen NNP Eurydice NNP Eustis NNP Euthanasia NN Euzhan NNP Evadna NNP Evaluating VBG Evaluation NN Evaluations NNS Evan NNP Evangelical JJ Evangelicalism NNP Evangeline NNP Evangelism NNP Evangelista NNP Evans NNP Evans-Black NNP Evanston NNP Evansville NNP Evarsito NNP Eve NNP Evegeni NNP Evelyn NNP Even RB Evenflo NNP Evening NNP Evenings RB Evensen NNP Event NN Events NNS Eventually RB Ever RB Ever-confident JJ Ever-more RB Eveready NNP Everest NNP Everett NNP Everglades NNP Evergreen NNP Everhart NNP Everly NNP Everlys NNS Evershed NNP Every DT Everybody NN Everyman NNP Everyone NN Everything NN Everytime RB Everywhere RB Evian NNP Evidence NN Evidences NNS Evident JJ Evidently RB Evil NNP Evolution NNP Evolving VBG Evren NNP Evry NNP Evzone NNP Ewan NNP Eward NNP Ewe NNP Ewen NNP Ewing NNP Ex-Cub JJ Ex-Im NNP Ex-Oriole NNP Ex-Premier NNP Ex-Presidents NNS Ex-Wells NNP Ex-smokers NNS ExPe NNP Exabyte NNP Exact JJ Exactly RB Exaggerated VBN Examination NN Examiner NNP Examiners NNP Example NN Examples NNS Exboyfriend NN Excalibur NNP Exceed VBD Excel NNP Excell NNP Excellence NN Excellency NNP Excellent JJ Excels NNS Excelsior NNP Except IN Exceptional NNP Exceptions NNS Excerpts NNS Excess JJ Exch NN Exchange NNP Exchange-listed JJ Exchange-rate JJ Exchange-sponsored JJ Exchangeable NNP Exchanges NNS Exchequer NNP Exchnage NNP Excise-tax JJ Excision NN Excited JJ Excitement NN Exclaimed VBD Excluded VBN Excludes VBZ Excluding VBG Exclusion NN Exclusive JJ Excuse VB Excuses NNPS Executed VBD Execution NNP Executioner NN Executions NNS Executive NNP Executive-branch JJ Executives NNS Exegete NNP Exemption NN Exercise NN Exeter NNP Exhausted JJ Exhibit NN Exhibited VBN Exhibition NNP Exhibits NNPS Existence NN Existentialism NNP Existentialists NNS Existing VBG Exit NN Exitosa NNP Exocet NNP Exodus NNP Expand NNP Expanded VBN Expanding VBG Expands VBZ Expansion NN Expect VB Expectations NNS Expected VBN Expecting VBG Expects NNS Expedition NNP Expenditure NNP Expenditures NNS Expense NN Expenses NNS Experience NN Experienced VBN Experiencing VBG Experiment NN Experimental JJ Experimentally RB Experimenting VBG Experiments NNS Experts NNS Explain VB Explained NNP Explaining VBG Explains VBZ Explanations NNS Explicit JJ ExploiTech NNP Explonaft NNP Exploracion NNP Exploration NNP Exploratory JJ Explorer NNP Explosion NN Explosions NNS Expo NNP Exponents NNS Export NNP Export-Import NNP Exporters NNPS Exporting NNP Exportkredit NNP Exports NNS Expos NNPS Exposition NNP Exposure NN Express NNP Express-Buick NNP Expressed VBN Expresses VBZ Expressing VBG Expressionism NNP Expressions NNS Expressway NNP Expressways NNP Extend VB Extended NNP Extending VBG Extension NNP Extensions NNS Extensive JJ Extensor NNP Exterior NNP Exteriors NNS Exterminatin VBG External JJ Extinction NNP Exton NNP Extra NNP Extractor NN Extracts NNS Extraordinary JJ Extrapolation NN Extremadura NNP Extreme JJ Extricating VBG Extruded VBN Exxon NNP Exxon-Valdez JJ Exxon-owned JJ Eye NNP Eyes NNP Eyewear NNP Eyke NNP Ezekiel NNP Ezra NNP F NN F-108 NN F-14 NN F-14s NNS F-15 NNP F-16 NNP F-16s NNPS F-18 NN F-18s NNS F-20 NNP F-20s NNPS F-4 NNP F-A-18 NN F-major NN F-series NNPS F. NNP F.A. NNP F.A.O. NNP F.B. NNP F.B.I. NN F.C NNP F.D. NNP F.D.R. NNP F.E. NNP F.E.L. NNP F.G. NNP F.H. NNP F.J. NNP F.L. NNP F.N. NNP F.O. NNP F.O.O.D. NNP F.R NN F.R. NN F.S.B. NNP F.S.C. NNP F.S.L.I.C NNP F.Supp.235 CD F.W. NNP F100-PW-200 NNP F111 NN F16s NNS F18s NNS FAA NNP FAC NNP FACES VBZ FACING VBG FADA NNP FADE VBP FAI NNP FAILED VBD FAKE JJ FALL NN FALTERS NNP FAMILY NN FAN NN FAR RB FARGO NNP FARM NN FARMER'S NN FARMERS NNS FARMING NNP FASB NNP FAST NNP FAST-FOOD NN FATHER NN FAX NNP FAXM NNP FB NNP FBI NNP FCB\ NNP FCB\/Leber NNP FCC NNP FDA NNP FDA-NIH-industry JJ FDA-approved JJ FDA-defined JJ FDA-regulated JJ FDC NNP FDIC NNP FDR NNP FE NNP FEAR VBP FEARS NNS FED NNP FEDERAL NNP FELA NNP FELLED VBD FELLOWSHIP NN FEMA NNP FEMALES NNS FERC NNP FEWER JJR FFA NNP FFr1 NNP FFr27.68 NN FH-77B NNP FHA NNP FHA-backed JJ FHA-insured JJ FHLBB NNP FHP NNP FIAT NNP FICO NNP FICOs NNS FIDELITY NNP FIG NNP FIGHT NNP FII NNP FINAL JJ FINANCES NNS FINANCIAL NNP FIRM NN FIRMS NNS FIRST NNP FIRST-TIME JJ FIT NNP FITC NNP FIVE CD FK-506 NNP FLAG NN FLARE VBP FLARE-OFF NN FLIGHT NN FLN NNP FLORIDA NNP FLYING VBG FM NNP FM12.6 CD FM21 CD FM9.4 CD FMC NNP FMI NNP FMR NNP FN NNP FNMA NNP FOES NNS FOILED VBD FOMC NNP FOOD NNP FOOTNOTE NNP FOR IN FORCE VBP FORCES NNS FORD NNP FOREAMI NNP FOREIGN JJ FORGN NNP FORMER JJ FORMERLY RB FOUNDER NN FOUR CD FOX NN FPA NNP FPL NNP FRANCHISE NN FRANCISCO'S NNP FRANKENBERRY NNP FRANKFURT NNP FRANKLIN NNP FRAUDS NNS FRE NNP FREDERICK'S NNP FREED VBD FREEZE VB FREIGHTWAYS NNP FRICTION NN FRINGE-BENEFIT JJ FROG-7B NN FROM IN FSLIC NNP FSX NNP FT NNP FT-SE NNP FTC NNP FUCK NN FUND NNP FUNDS NNS FUTURES NNS FXTV NNP F\ NN F\/A18 NNP Fab NNP Fabbri NNP Faber NNP Faberge NNP Fabi NNP Fabian NNP Fable NNP Fabric NN Fabricius NNP Fabrics NNP Fabrri NNP Fabulous NNP Face NNP Facebook NNP Faced VBN Faces NNPS Facetious NNP Facilitatory JJ Facilities NNPS Facility NNP Facing VBG Factions NNS Factor NNP Factor-VIII NNP Factorex NNP Factories NNS Factoring NN Factors NNS Factory NN Factory-to-You NNP Facts NNP Faculty NN Fads NNS Fagan NNP Fagenson NNP Fagershein NNP Faget NNP Fahd NNP Fahey NNP Fahlgren NNP Fahrenheit NNP Faight NNP Fail NNP Failing VBG Fails NNS Failure NN Failures NNS Fain NNP Faint JJ Fair NNP Fair-priced JJ Fairbanks NNP Fairbrothers NNP Fairchild NNP Fairfax NNP Fairfield NNP Fairing NN Fairlawn NNP Fairless NNP Fairly RB Fairmont NNP Fairmount NNP Fairness NNP Fairview NNP Fairy NNP Faith NNP Faithful NN Fake JJ Fakty NNP Falb NNP Falco NNP Falcon NNP Falconbridge NNP Falconer NNP Falconry NNP Falcons NNS Falegnami NNP Falin NNP Falkland NNP Falklands NNP Fall NNP Fall-in NNP Falla NNP Fallen NNP Fallick NNP Falling VBG Fallon NNP Fallout NNP Falls NNP Falmouth NNP False NNP Falstaff NNP Falvey NNP Falwell NNP Falwell-Robertson NNP Falwell-like JJ Famcorp NNP Fame NNP Famed JJ Familia NNP Families NNS Familism NN Family NNP Family-owned JJ Famine NN Famous NNP Famous-Barr NNP Fan NNP Fancy NNP Faneuil NNP Fang NNP Fannie NNP Fanning NNP Fanny NNP Fans NNS Fanshawe NNP Fantasia NNP Fantastic JJ Fantastico NNP Fantasy NNP Fanuc NNP Far NNP Far-reaching JJ Faraday NNP Farberware NNP Fardulli NNP Fare VBP Farentino NNP Fares NNS Farewell NNP Farge NNP Fargo NNP Farina NNP Farley NNP Farm NNP Farm-machine NN Farmaco NNP Farmboy NNP Farmer NNP Farmer-in-the-Dell NNP Farmers NNP Farming VBG Farmingdale NNP Farmington NNP Farmland NNP Farms NNP Farmwife NNP Farnell NNP Farnese NNP Farneses NNPS Farney NNP Farnham NNP Farnum NNP Farnworth NNP Farooquee NNP Farouk NNP Farr NNP Farra NNP Farragut NNP Farrar NNP Farrell NNP Farrells NNPS Farren NNP Farrow NNP Farther RB Farthing NNP Farvel-Topsy NNP Farwell NNP Fas-antigen NN Fascio-Communist JJ Fascism NNP Fascist NNP Fascists NNPS Fashion NNP Fashions NNPS Fasken NNP Faso NNP Fassbinder NNP Fast NNP Fast-food NN Fastenal NNP Faster JJR Fat NNP Fatah NNP Fatal NNP Fatalities NNS Fate NNP Father NNP Father-God NNP Fathers NNPS Fathi NNP Fatima NNP Fatimata NNP Fatman NNP Fats NNP Fatso NN Faulder NNP Faulding NNP Faulk NNP Faulkner NNP Faulknerian JJ Fault NNP Fault-tolerant JJ Fauntleroy NNP Fauntroy NNP Faust NNP Faustian JJ Fausto NNP Faustus NNP Favor VB Favorable JJ Favored JJ Favorite NNP Favorites NNPS Favour NN Favre NNP Fawaz NNP Fawcett NNP Fawell NNP Fawkes NNP Fawn NNP Fawzi NNP Fawzy NNP Fax NNP Faxes NNS Fay NNP Faye NNP Fayette NNP Fayetteville NNP Fazio NNP Fe NNP Fear NN Fear-maddened JJ Feared VBN Fearful JJ Fearing VBG Fearless NNP Fearon NNP Fears NNS Featherbed NN Featherston NNP Feathertop NNP Featherweight NN Feature NNP Features NNPS Feb. NNP February NNP Fed NNP Fed-bashing NN Fed-watching JJ Fedders NNP Federal NNP Federal-Mogul NNP Federal-Tiger NNP Federal-court JJ Federalist NNP Federals NN Federated NNP Federation NNP Federico NNP Feders NNP Feds NNPS Fee NN Feebly RB Feed VB Feedback NN Feeder NN Feeding NNP Feedlots NNS Feeds NNS Feelers NNS Feeley NNP Feeling VBG Feelings NNS Feels VBZ Feenberg NNP Feeney NNP Fees NNS Feess NNP Fegersheim NNP Fehr NNP Fei NNP Feick NNP Feigen NNP Feigenbaum NNP Feiner NNP Feinman NNP Feinstein NNP Feis NNP Fel-Pro NNP Feld NNP Feldberg NNP Feldemuehle NNP Feldene NNP Feldman NNP Feldstein NNP Felec NNP Felice NNP Feliciano NNP Felicity NNP Felipe NNP Felix NNP Fell NNP Fella UH Fellini NNP Fellow NN Fellows NNS Fellowship NNP Fellowships NNS Felons NNS Felsenthal NNP Felsher NNP Felske NNP Felten NNP Feltes NNP Female JJ Females NNPS Femina NNP Feminism NN Feminist NNP Femmes NNP Fence-line JJ Fendi NNP Fending VBG Fendrick NNP Fenerty NNP Feng-hsiung NNP Feniger NNP Fenimore NNP Fenn NNP Fenner NNP Fennessy NNP Fenster NNP Fenton NNP Fenway NNP Fenwick NNP Feodor NNP Feralloys NNP Ferber NNP Ferdinand NNP Ferdinando NNP Ferembal NNP Ferenc NNP Ferencik NNP Fergeson NNP Fergus NNP Ferguson NNP Fergusson NNP Feringa NNP Ferlenghetti NNP Fermate NNP Ferment NN Fernald NNP Fernand NNP Fernandes NNP Fernandez NNP Fernando NNP Fernberger NNP Ferranti NNP Ferranti-led JJ Ferrara NNP Ferrari NNP Ferraro NNP Ferraros NNPS Ferre NNP Ferreira NNP Ferrell NNP Ferrer NNP Ferrero NNP Ferrier NNP Ferris NNP Ferro NNP Ferrofluidics NNP Ferron NNP Ferruzzi NNP Ferry NNP Fertitta NNP Feruzzi NNP Fery NNP Feshbach NNP Festiva NNP Festival NNP Festivals NNS Fetch VB Fete NNP Fetzer NNP Feuchtwanger NNP Feud NN Feuer NNP Feuermann NNP Fever NN Feverishly RB Feversham NNP Few JJ Fewer JJR Fey NNP Feyer NNP Ffortescue NNP Fiala NNP Fialkow NNP Fiap NNP Fiasco NNP Fiat NNP Fiats NNPS Fiber NNP FiberCom NNP FiberWorld NNP Fiberall NNP Fiberglas JJ Fibre NNP Fibreboard NNP Fichte NNP Fiddler NNP Fiddles NNS Fiddlesticks NNS Fidel NNP Fidelity NNP Fidis NNP Fidler NNP Fiechter NNP Fiedler NNP Field NNP Field-Fisher NNP Fieldcrest NNP Fielder NNP Fielding NN Fields NNP Fienberg NNP Fierce JJ Fiering NNP Fiero NNP Fiery JJ Fiesta NNP Fife NNP Fifield NNP Fifteen CD Fifteenth NNP Fifth NNP Fifties NNPS Fifty CD Fifty-fifth NNP Fifty-ninth NNP Fifty-seven CD Fifty-three JJ Fifty-two JJ Fig NN Fig. NN Figaro NNP Figger VB Figgie NNP Fight VB Fighter NNP Fighters NNP Fighting NNP Fights NNS Figlewski NNP Figone NNP Figs. NNS Figura NNP Figure NN Figures NNS Figurines NNS Figuring VBG Fike NNP Fil NNP Fila NNP File NN FileNet NNP Filed VBN Filene NNP Filigreed JJ Filipino NNP Filipinos NNPS Filippo NNP Fill VB Fill-Or-Kill NNP Filling VBG Fillmore NNP Film NNP Filmakers NNPS Filmdom NNP Filmed VBN Filming NN Films NNS Filmstar NNP Filmworks NNP Filofax NNP Filofaxes NNPS Filter NNP Filtered VBN Filtertek NNP Fin-syn JJ Fina NNP Final JJ Final-hour JJ Finalists NNS Finally RB Finals NNS Finan NNP Finance NNP Financial NNP Financial-service NN Financially RB Financials NNPS Financiere NNP Financieros NNP Financiers NNS Financing NNP Financings NNS Financo NNP Finanziaria NNP Finanziario NNP Finberg NNP Find VB Finder NNP Finders NNP Finding VBG Findings NNS Findlay NNP Finds VBZ Fine NNP Finerman NNP Fines NNP Finevest NNP Fing NNP Finger NNP Fingered NNP Fingerprints NNS Fingers NNP Fininvest NNP Finis NNP Finish VB Finished VBN Finishing VBG Fink NNP Finkbiner NNP Finkel NNP Finkelstein NNP Finkelsteins NNPS Finks NNP Finland NNP Finley NNP Finmeccanica NNP Finn NNP Finnair NNP Finnegan NNP Finnerty NNP Finney NNP Finnie NNP Finnish JJ Finns NNPS Finnsburg NNP Finot NNP Finsbury NNP Finsilver NNP Finucane NNP Fio NNP Fiore NNP Fiorello NNP Fiori NNP Fiorina NNP Fiorini NNP Fire NNP Firearms NNP Firebird NNP Fired VBN Fireman NNP Firemen NNS Fires NNP Fireside NNP Fireside\/Simon NNP Firestone NNP Firm NN Firms NNS First NNP First-Born NNP First-half JJ First-hand JJ First-round JJ First-section JJ FirstSouth NNP Firzite NN Fiscal JJ Fiscal-year JJ Fischbach NNP Fischer NNP Fish NNP Fishback NNP Fisher NNP Fisheries NNP Fishermen NNS Fishery NNP Fishing NNP Fishkill NNP Fishman NNP Fisk NNP Fiske NNP Fisons NNP Fistoulari NNP Fists NNS Fit JJ Fitch NNP Fitchburg NNP Fitness NNP Fitting VBG Fittingly RB Fittro NNP Fitts NNP Fitz NNP Fitzgerald NNP Fitzgibbon NNP Fitzhugh NNP Fitzpatrick NNP Fitzpatrick-Davis NNP Fitzroy NNP Fitzsimmons NNP Fitzwater NNP Fitzwilliam NNP Fitzwilliams NNP Five CD Five-Elements NNP Five-O NNP Five-Year NNP Fix VB Fixed VBN Fixed-income JJ Fixed-rate JJ Fixing VBG Fixit NNP Fixture NNP Fixx NNP Fizkultura NNP Fjelstad NNP Fla NNP Fla. NNP Fla.-based JJ Flag NN Flagg NNP Flagler NNP Flags NNS Flaherty NNP Flair NNP Flake NN Flakes NNPS Flameco NNP Flames NNPS Flaming NNP Flamingo NNP Flanagan NNP Flanders NNP Flanked VBN Flannagan NNP Flannagans NNPS Flash NN Flashdance NNP Flashed VBN Flashlight NN Flat JJ Flatiron NN Flatley NNP Flatness NN Flats NNP Flattau NNP Flaum NNP Flav-O-Rich NNP Flavel NNP Flavell NNP Flavio NNP Flavus NNP Flaws NNS Flax NNP Flaxseed NN Flea NNP Fleckenstein NNP Fledermaus NNP Fledgling NN Flee VBP Fleece NNP Fleet NNP Fleet\/Norstar NNP Fleeting JJ Fleetwood NNP Fleischer NNP Fleischman NNP Fleischmann NNP Fleischmanns NNP Fleisher VB Flem NNP Fleming NNP Flemings NNP Flemish NNP Flesh NN Flesher NNP Fletch NNP Fletcher NNP Fleury NNP Flexibility NN Flexible JJ Flexicokers NNS Flexural JJ Flick NN Flier NN Fliers NNPS Flies NNS Flight NNP Flights NNS Flint NNP Flip NNP Flippo NNP Flite-King JJ Floating VBG Floats VBZ Flock NNP Flocks NNS Floey NNP Flom NNP Flood NNP Floodlights NNP Floor NNP Flor NNP Floradora NNP Floral NNP Florence NNP Florentine NNP Flores NNP Floresville NNP Florian NNP Florican-Inverness NNP Florican-My NNP Florida NNP Floridabanc NNP Floridian NN Floridians NNP Florido NNP Florio NNP Flory NNP Floss NNP Flotilla NNP Flotte NNP Flottl NNP Flour NN Flow NNP Flow-Mole NNP Flower NNP Flowering NN Flowers NNPS Floyd NNP Fluctuation NN Fluent JJ Flugdienst NNP Flugel NNP Flugleasing NNP Flumenbaum NNP Flumenophobe NNP Fluor NNP Fluorescence NN Fluorescent JJ Flush JJ Flushing NNP Flushing-Main NNP Flusser NNP Flustered JJ Flute NN Fly VB Flyer NNP Flyer-Castle NNP Flygplanet NNP Flying NNP Flynn NNP FmHA NNP Foamed NNP Foamy NNP Focus NNP Focusing VBG Foe NNP Foerster NNP Fog NN Fogelman NNP Fogelson NNP Fogg NNP Foggia NNP Foggs NNP Foggy NNP Fogle NNP Fogler NNP Foglio NNP Foil NNP Foiled VBN Foiles NNP Fokine NNP Fokker NNP Folcroft NNP Fold VB Folded NNP Folding VBG Foley NNP Folgers NNP Foliage NN Folk NNP Folk-lore NN Folkerts NNP Folklore NN Folks NNS Folkston NNP Follow VB Follow-through JJ Follow-up JJ Followin VBG Following VBG Follows NNP Folly NNP Folmar NNP Folonari NNP Folsom NNP Foncier NNP Fond NNP Fonda NNP Fonds NNP Fonseca NNP Fonstein NNP Fonta NNP Fontainbleau NNP Fontaine NNP Fontainebleau NNP Fontana NNP Fonz NNP Food NNP Food-price JJ Foodmaker NNP Foods NNPS Fooled VBN Fools NNS Foont NNP Foot NNP Football NNP Foote NNP Foothills NNP Footnotes NNS For IN For... : Forand NNP Forbes NNP Forbidden NNP Force NNP Forced VBN Forces NNPS Ford NNP Ford-Kissinger NNP Fordham NNP Fords NNS Forebearing NNP Forecast NNP Forecaster NNP Forecasters NNS Forecasting NN Forecasts NNPS Foreclosed VBN Foreclosure NNP Foreclosures NNS Foreign NNP Foreign-exchange JJ Foreign-registered JJ Foreigners NNS Forellen NNP Foremost RB Forensic NNP Forerunner NNP Foreseeing VBG Foresight NN Foresman NNP Forest NNP Forest-products NNS Forester NNP Foresters NNS Forests NNPS Foret NNP Forever NNP Forfeiture NNP Forge NNP Forget VB Forgive VB Forgiveness NN Forgoing VBG Forgot VBN Forgotten NNP Fork NNP Forked NNP Forks NNS Form NN FormBase NNP Formally RB Forman NNP Format NN Formation NNP Formby NNP Formed VBN Former JJ Formerly RB Formica NNP Formosa NNP Formosan JJ Forms NNPS Formula NN Forney NNP Forrest NNP Forrestal NNP Forrester NNP Forsan FW Forseth NNP Forst NNP Forster NNP Forstmann NNP Forsyth NNP Forsythe NNP Fort NNP Fortas NNP Forte NNP Fortenbaugh NNP Fortescue NNP Fortier NNP Forties NNP Fortified VBN Fortin NNP Fortman NNP Fortney NNP Fortress NNP FortressEurope NN Fortunate JJ Fortunately RB Fortune NNP Forty CD Forty-Four CD Forty-five CD Forty-four CD Forty-nine JJ Forty-one JJ Forty-second JJ Forty-seven JJ Forty-six CD Forty-third JJ Forty-three CD Forum NNP Forward NNP Forwarding NNP Fosback NNP Fosdick NNP Foss NNP Fossan NNP Fosset NNP Fossett NNP Fossey NNP Foster NNP Foster's-brand JJ Fosterite NNP Fosterites NNP Fought VBN Foul NNP Foulds NNP Foundation NNP Founded VBN Founder NN Founders NNPS Founding NNP Foundry NNP Fountain NNP Four CD Four-fifths NNS Fournier NNP Fourteen CD Fourteenth NNP Fourth NNP Fourth-of-July NNP Fourth-quarter JJ Fourtou NNP Fowler NNP Fox NNP Fox-Meyer NNP Fox-Pitt NNP Foxboro NNP Foxmoor NNP Foxx NNP Foy NNP Fra NNP Fraas NNP Frabotta NNP Fraction NNP Fractions NNS Fracturing NNP Fraga NNP Fragile NNP Fragin NNP Fragment NN Fragonard NNP Fragua NNP Frail JJ Framatome NNP Frame NN Framework NNP Framingham NNP Frampton NNP Fran NNP Francais NNP Francaise NNP Francaises NNP France NNP France-Germany NNP France-Presse NNP France. NNP Frances NNP Francesca NNP Francesco NNP Francesville NNP Franchise NNP Franchisee NN Franchisees NNS Franchising NNP Francie NNP Francis NNP Franciscan JJ Franciscans NNP Francisco NNP Francisco-Oakland NNP Francisco-area JJ Francisco-based JJ Franciso NNP Franck NNP Franco NNP Franco-German NNP Franco-Irishman NNP Franco-Japanese NNP Francois NNP Francois-Poncet NNP Francoise NNP Francoisette NNP Francona NNP Franconia NNP Francophone JJ Frank NNP Franke NNP Frankel NNP Frankenberry NNP Frankenstein NNP Frankford NNP Frankfort NNP Frankfurt NNP Frankfurt-based JJ Frankfurter NNP Frankie NNP Franklin NNP Franklin-Trout NNP Frankly RB Franklyn NNP Franks NNPS Franny NNP Frans NNP Frantisek NNP Franyo NNP Franz NNP Fraser NNP Fraternal NNP Fraud NNP Frauds NNPS Fraumeni NNP Frawley NNP Fray NN Frayne NNP Frazee NNP Frazer NNP Frazier NNP Frazzano NNP Fred NNP Freddie NNP Freddy NNP Frederic NNP Frederick NNP Fredericksburg NNP Fredericton NNP Frederik NNP Fredonia NNP Fredric NNP Fredrick NNP Fredrico NNP Fredrik NNP Fredrikshall NNP Free NNP Free-Will NNP Free-marketeers NNS Free-trade JJ Freeberg NNP Freebies NNS Freed VBN Freedman NNP Freedom NNP Freeholder NNP Freeman NNP Freeport NNP Freeport-McMoRan NNP Freeway NNP Freeze NN Freiburghouse NNP Freida NNP Freie NNP Freight NNP Freightways NNP Freind NNP Freinkel NNP Frelinghuysen NNP Fremantle NNP Fremont NNP French JJ French-Canadian NNP French-Canadians NNPS French-English NNP French-Italian JJ French-born JJ French-franc NN French-government-owned JJ French-language JJ French-made JJ French-modeled JJ French-polished JJ French-speaking JJ Frenchman NNP Frenchmen NNPS Frenchwoman NNP Freni NNP Frenzel NNP Frenzy NNP Freon NN Frequency NNP Frequent JJ Frequent-flier JJ Frequently RB Freres NNP Fresca NNP Fresenius NNP Fresh JJ Freshbake NNP Freshman NN Freshmen NNS Freshwater NNP Fresnel NNP Fresno NNP Freston NNP Fret VB Fretting VBG Freud NNP FreudToy NNP Freudenberger NNP Freudian JJ Freund NNP Frey NNP Freya NNP Fri NNP Friar NN Friars NNS Frick NNP Fricke NNP Friday NNP Friday-the-13th JJ Fridays NNPS Fridge NNP Fridman NNP Fried NNP Friedberg NNP Friede NNP Friedenwald NNP Friedman NNP Friedmann NNP Friedreich NNP Friedrich NNP Friedrichs NNP FriedrichsInc. NNP Friend NNP Friendly NNP Friends NNS Fries NNP Friesen NNP Frills NNP Frisbee NNP Frisch NNP Frisco NNP Frist FW Frito NNP Frito-Lay NNP Frits NNP Fritz NNP Fritze NNP Fritzie NNP Fritzsche NNP Froelich NNP Frog-marched JJ Frohock NNP Froissart NNP From IN Fromm NNP Fromstein NNP Frondel NNP Front NNP Front-line JJ Front-runners NNS Frontage NN Frontier NNP Frontieres FW Frontiers NNS Frost NNP Frost-Debby NNP Frostbite NN Frosted NNP Frosts NNPS Frothingham NNP Frothy JJ Frowning VBG Frozen VBN Frucher NNP Fruehauf NNP Fruit NNP Frum NNP Frumil NNP Frustrate VBP Frustrated JJ Frustration NN Fry VB Fryar NNP Ft. NNP Fu NNP Fuchs NNP Fuck VB Fudo NNP Fudomae NNP Fudosan NNP Fuel NNP Fueled VBN Fueling VBG Fueloil NNP Fuentes NNP Fuhrer NNP Fuhrmann NNP Fuji NNP Fuji-apple JJ Fujii NNP Fujimoto NNP Fujis NNPS Fujisankei NNP Fujisawa NNP Fujita NNP Fujitsu NNP Fukuda NNP Fukuoka NNP Fukuyama NNP Fulbright NNP Fulcrum NNP Fuld NNP Fulfills VBZ Fulghum NNP Fulgoni NNP Fulham NNP Fulke NNP Full JJ Full-time JJ Fuller NNP Fullerton NNP Fully RB Fulmar NNP Fulson NNP Fulton NNP Fultz NNP Fulwood NNP Fuming VBG Fumio NN Fun NNP Funari NNP Functionalism NN Functionally RB Functions NNPS Fund NNP Fund-Raisers NNS FundTrust NNP Fundamental JJ Fundamentalists NNS Fundamentally RB Fundamentals NNS Funded VBN Fundidora NNP Funding NNP Funds NNS Funeral NNP Fung NNP Fungi NNP Fungible JJ Funk NNP Funny JJ Funston NNP Fuqua NNP Fur NNP Furey NNP Furhmann NNP Furies NNS Furillo NNP Furious NNP Furiouser RBR Furlaud NNP Furlett NNP Furman NNP Furnace NN Furnaces NNP Furnishes VBZ Furniture NNP Furs NNP Further RB Furthermore RB Furukawa NNP Furuta NNP Fury NNP Furze NNP Fuss VB Fuster NNP Futhermore NN Futotsu FW Futter NNP Future NNP Futures NNS Futures-related JJ Fuzzy JJ Fyffes NNP Fyodor NNP G NN G'ahn VB G-2 NN G-24 NNP G-7 NNP G-R-H NNP G. NNP G.B.S. NN G.D. NNP G.E. NNP G.J. NNP G.L. NNP G.N. NNP G.O. NNP G.O.P. NN G.P. NNP G.S. NNP G.W. NNP G.m.b NNP G7 NNP GA NNP GABLE NNP GAF NNP GAG NNP GALAXY NN GAMBLE NNP GANNETT NNP GAO NNP GAP NNP GAR NNP GARY NNP GAS NNP GASB NNP GATT NNP GBL NNP GD NNP GDL NNP GDP NNP GDR NNP GE NNP GEC NNP GENENTECH NNP GENERAL NNP GENERIC-DRUG NN GERMAN JJ GERMANS NNPS GERMANY NNP GERMANY'S NNP GET VB GE\ NNP GEnie NNP GF NNP GFSA NNP GHKM NNP GHR NNP GHS NNP GI NNP GIMMEE UH GIPPER NN GIS NNP GIVE VBP GL NNP GLASNOST NNP GLI NNP GLITTER NN GLITTERS VBZ GLS NNP GM NNP GM-10 NN GM-10s NNP GM-CSF NNP GM-Jaguar JJ GM-Toyota JJ GMA NNP GMAC NNP GMC NNP GMr NN GNP NNP GNP-based JJ GO VB GOD UH GOLD NN GOLDEN NNP GOLF NN GOOD JJ GOODY NNP GOP NNP GORBACHEV NNP GOULD NNP GOVERNMENT NN GP NNP GPA NNP GQ NNP GR8FLRED CD GRAB NNP GRAINS NNS GRAND JJ GRANTING VBG GRE NNP GREAT NNP GREW VBD GREY NNP GROUP NNP GROUP'S NNP GROVE NNP GROWING VBG GROWS VBZ GROWTH NN GRP NNP GRX NNP GRiD NNP GRiDPad NNP GS NNP GSA NNP GSD&M NNP GSI NNP GSP NNP GSX NNP GT NNP GTE NNP GTG NNP GTI NNP GUIDE NNP GUN NNP Ga NNP Ga. NNP Gaafer NNP Gabe NNP Gabele NNP Gabelli NNP Gabelman NNP Gable NNP Gabler NNP Gables NNP Gabon NNP Gabor NNP Gabriel NNP Gabriela NNP Gabriele NNP Gabrielle NNP Gachinger NNP Gadhafi NNP Gadsden NNP Gadwani NNP Gaechinger NNP Gaelic JJ Gaetan NNP Gaffney NNP Gaga NNP Gagarin NNP Gagliardini NNP Gagne NNP Gaieties NNPS Gail NNP Gaillard NNP Gain NN Gainen NNP Gainers NNP Gaines NNP Gainesville NNP Gaining VBG Gains NNS Gaisman NNP Gaither NNP Gaithersburg NNP Gaja NNP Gajda NNP Gal NNP Gala NNP Galahad NNP Galamian NNP Galan NNP Galant NNP Galanter NNP Galantuomo NNP Galapagos NNP Galata NNP Galatians NNPS Galax NNP Galaxy NN Galbani NNP Galbraith NNP Gale NNP Galecke NNP Galen NNP Galena NNP Galicia NNP Galicians NNPS Galilee NNP Galileo NNP Galina NNP Galindez NNP Galipault NNP Gallagher NNP Galland NNP Gallant NNP Galle NNP Gallen NNP Galleria NNP Gallery NNP Galles NNP Gallet NN Galli NNP Galligan NNP Gallitano NNP Gallitzin NNP Gallium NN Gallo NNP Gallon NNP Gallon-Loren NNP Galloway NNP Gallup NNP Galoob NNP Galophone-Kimberly NNP Galophone-Prissy NNP Galsworthy NNP Galt NNP Galtier NNP Galveston NNP Galveston-Houston NNP Galveston-Port NNP Galvin NNP Galway NNP Gambit NNP Gamble NNP Gambling NN Game NN Game-Boy NN Gamecock NNP Gamel NNP Games NNPS Gaming NNP Gamma NNP Gamper NNP Ganado NNP Gandalf NNP Gander NNP Gandhi NNP Gandois NNP Gandy NNP Ganes NNP Ganessa NNP Gang NNP Ganges NNP Ganis NNP Gann NNP Gannett NNP Gannon NNP Gansevoort NNP Gant NNP Gantos NNP Gantry NNP Gaon NNP Gap NNP Gar-Dene NNP Garamendi NNP Garanti NNP Garbage NNP Garber NNP Garbutt NNP Garcia NNP Garcias NNPS Gardelin NNP Garden NNP Garden-variety NN Gardena NNP Gardening NNP Gardens NNPS Gardiner NNP Gardini NNP Gardner NNP Gardner-Denver NNP Garea NNP Garfield NNP Gargan NNP Gargantuan JJ Gargery NNP Gargle NNP Gari NNP Garibaldi NNP Garin NNP Garine NNP Garish JJ Garland NNP Garman NNP Garment NNP Garments NNS Garn NNP Garner NNP Garnett NNP Garonzik NNP Garpian JJ Garrard NNP Garratt NNP Garret NNP Garrett NNP Garrick NNP Garrick-Aug NNP Garrin NNP Garrison NNP Garrisonian NN Garry NNP Garryowen NNP Garson NNP Garstung NNP Garth NNP Gartner NNP Garvey NNP Garvier NNP Gary NNP Garza NNP Garzarelli NNP Gas NNP Gas-cooled JJ Gas-reactor JJ Gasch NNP Gascony NNP Gases NNS Gasich NNP Gaskin NNP Gaslight NN Gasoline NN Gaspard NNP Gaspee NNP Gasse NNP Gassee NNP Gasset NNP Gassman NNP Gastineau NNP Gaston NNP Gastronomes NNS Gastronomie NNP Gastronomy NNP Gate NNP Gates NNP Gates-Warren NNP Gateway NNP Gather VB Gathered VBN Gatherer NNP Gathering NN Gati NNP Gatlinburg NNP Gato NNP Gatoil NNP Gator JJ Gatos NNP Gatsby NNP Gatsby-in-reverse NN Gatward NNP Gatwick NNP Gaubert NNP Gauchos NNS Gauer NNP Gauged VBN Gauguin NNP Gaul NNP Gauleiter NNP Gaulle NNP Gauloises NNP Gaunt JJ Gauntlett NNP Gauntley NNP Gaussian JJ Gautier NNP Gave VBD Gaveston NNP Gavin NNP Gavrilov NNP Gawdamighty UH Gay NNP Gaydon NNP Gayle NNP Gaylor NNP Gaylord NNP Gaynor NNP Gays NNS Gaza NNP Gazdag NNP Gazeta NNP Gazette NNP Gazettes NNP Gazing VBG Gazinosu NNP Gear NNP Geary NNP Geatish JJ Gebhard NNP Gebrueder NNP Gecker NNP Geddes NNP Geduld NNP Gee UH Geech NNP Geeks NNPS Geely NNP Geer NNP Geertz NNP Geffen NNP Gehl NNP Gehrig NNP Geico NNP Geier NNP Geiger NNP Geingob NNP Geisha NN Geissinger NNP Gel NNP Gelb NNP Gelbart NNP Geld NNP Gelder NNP Geldermann NNP Gell NNP Geller NNP Gellert NNP Gelles NNP Gelly NNP Gelman NNP Gem NNP Geman NNP Gemayel NNP Gemeinschaft FW Gemina NNP Gems NNS Gen NNP Gen-Probe NNP Gen. NNP GenCorp NNP GenProbe NN Gencor NNP Gendron NNP Gene NNP Gene-Princess NNP Gene-Spliced JJ Gene-splicing NN Genel NNP Genelabs NNPS Genentech NNP General NNP Generale NNP Generales NNP Generali NNP Generalissimo NNP Generalizations NNS Generalized NNP Generally RB Generating NNP Generation NNP Generic NNP Generic-Drug JJ Generic-industry JJ Generics NNS Genesee NNP Genesis NNP Genetic NNP Geneticist NNP Genetics NNP Geneva NNP Geneva-based JJ Genevieve NNP Genghis NNP Genie NNP Genigraphics NNP Genius NN Gennaro NNP Geno NNP Genocide NN Genome NNP Genossenschafts NNP Genossenschaftsbank NNP Genova NNP Genscher NNP Gensichen NNP Genson NNP Gentile NNP Gentile-Jewish NNP Gentiles NNPS Gentility NN Gentleman NN Gentlemen NNS Genuine NNP Genzyme NNP Geo NNP Geo. NNP Geocentricism NN Geocryology NNP Geodetic NNP Geoff NNP Geoffrey NNP Geoffrie NNP Geoffrion NNP Geographic NNP Geographical JJ Geolite NN Geological NNP Geologists NNS Geology NNP Geometric NNP Georg NNP Georgano NNP George NNP George-Barden NNP George-Creque NNP Georgene NNP Georges NNP Georgescu NNP Georgeson NNP Georgetown NNP Georgette NNP Georgi NNP Georgia NNP Georgia-Pacific NNP Georgia-based JJ Georgian JJ Georgians NNPS Geos NNS Geothermal NNP Gephardt NNP Gephardtian JJ Geraetetechnik NNP Geraghty NNP Geraghtys NNPS Gerald NNP Geraldine NNP Geraldo NNP Gerard NNP Gerardo NNP Gerber NNP Gerbig NNP Gerbrandt NNP Gerby NNP Gerd NNP Gerdes NNP Geren NNP Gerhard NNP Gericault NNP Gerlinger NNP Germain NNP German JJ German-French JJ German-Italian JJ German-born JJ German-built JJ German-language JJ German-made JJ German-speaking JJ Germania NNP Germanic JJ Germanized VBN Germano-Slavic JJ Germans NNPS Germans. NNS Germantown NNP Germany NNP Germany-based JJ Germanys NNS Germeten NNP Germont NNP Gero NNP Geroge NNP Gerolamo NNP Gerold NNP Gerome NNP Gerosa NNP Gerrard NNP Gerraughty NNP Gerry NNP Gershen NNP Gershman NNP Gershwin NNP Gershwins NNP Gersony NNP Gerstacker NNP Gerstenblatt NNP Gerstner NNP Gertrude NNP Gesamtkunstwerke FW Gesangverein NNP Gesell NNP Gestapo NNP Gestapo-style JJ Geste NNP Gesualdo NNP Get VB Gethsemane NN Getrudis NNP Gets VBZ Getting VBG Gettinger NNP Gettleman NNP Getty NNP Gettysburg NNP Getulio NNP Getz NNP Geva NNP Gevergeyev NNP Gevergeyeva NNP Gevurtz NNP Gewirtz NNP Geza NNP Ghadiali NNP Ghana NNP Ghanaian JJ Ghazel NNP Ghent NNP Gherlein NNP Ghettos NNPS Ghez NNP Ghiberti NNP Gholamreza NNP Ghoreyeb NNP Ghormley NNP Ghose NNP Ghost NN Ghostbusters NNS Giacometti NNP Giacomo NNP Giamatti NNP Giampiero NNP Gian NNP Giancarlo NNP Gianicolo NNP Gianni NNP Giannini NNP Giant NNP Giants NNP Giants-Houston NNP Giaour NN Giardini\/Russell NNP Gibault NNP Gibbon NNP Gibbons NNP Gibbs NNP Gibby NNP Giblen NNP Gibraltar NNP Gibson NNP Giddings NNP Gide NNP Gideon NNP Gidwani NNP Gie NNP Gienow NNP Giffen NNP Gifford NNP Gift NNP Gifting NN Gifts NNS Gigenza NNP Giggey NNP Gignac NNP Gignoux NNP Gigot NNP Giguiere NNP Gil NNP Gilbert NNP Gilbertie NNP Gilberto NNP Gilborn NNP Gilbraltar NNP Gilchrist NNP Gilda NNP Gildas NNP Gilded NNP Gilder NNP Gildersleeve NNP Gilels NNP Giles NNP Gilgore NNP Gilhooley NNP Gilkson NNP Gill NNP Gilleland NNP Gillers NNP Gilles NNP Gillespie NNP Gillett NNP Gillette NNP Gilley NNP Gillian NNP Gillis NNP Gilman NNP Gilmartin NNP Gilmore NNP Gilroy NNP Gilsbar NNP Gilt NNP Gilts NNS Gim- NNP Gimbel NNP Gimenez NNP Gimpy NNP Gin NNP Ginandjar NNP Gingerly RB Ginghams NNS Gingl NNP Gingrich NNP Ginn NNP Ginner NNP Ginnie NNP Ginning NNP Gino NNP Ginsberg NNP Ginsburg NNP Gintel NNP Ginza NN Gioconda NNP Giolito NNP Giordano NNP Giorgetta NNP Giorgio NNP Giorgios NNP Giovanni NNP Giraffe NNP Giraldi NNP Girard NNP Giraud NNP Girl NNP Girls NNP Giroldi NNP Giroux NNP Girozentrale NNP Gisele NNP Giselle NNP Gisors NNP Git VB Gitanes NNP Gitano NNP Gitter NNP Giubbonari NNP Giuffrida NNP Giuliani NNP Giulietta NNP Giulio NNP Giurleo NNP Giuseppe NNP Giustiniani NNP Givaudan NNP Give VB Giveaways NNS Given VBN Givens NNP Givers NNP Gives VBZ Giving VBG Gizenga NNP Glacier NNP Glaciology NNP Glad JJ Gladden NNP Gladdy NNP Gladiator NNP Gladius NNP Gladys NNP Glamorous JJ Glance VB Glantz NNP Glaris NNP Glaser NNP Glasgow NNP Glasnost FW Glasow NNP Glass NNP Glass-Steagall NNP Glassell NNP Glasser NNP Glasses NNS Glasswork NNP Glassworks NNP Glauber NNP Glavin NNP Glaxo NNP Glayre NNP Glaze VB Glazed VBN Glazer NNP Glazer-Fine NNP Glazes NNS Glazier NNP Gleacher NNP Gleason NNP Glee NN Gleeson NNP Glemp NNP Glen NNP Glenbrook NNP Glenda NNP Glendale NNP Glendora NNP Glenham NNP Glenn NNP Glenne NNP Glennon NNP Glenview NNP Glick NNP Glickman NNP Gliedman NNP Glimco NNP Glison NNP Glo NNP Global NNP Globalization NNP Globaliztion NN Globally RB Globe NNP Globe-Democrat NNP Globex NNP Globo NNP Globocnik NNP Glocester NNP Gloeilampenfabrieken NNP Gloom NN Gloomy JJ Gloria NNP Gloriana NNP Glorioso NNP Glorious JJ Glory NN Glossy JJ Gloucester NNP Glove NNP Glover NNP Gloversville NNP Gloves NNP Glow NNP Glowering VBG Gluck NNP Glucksman NNP Glue NN Glumly RB Glycerinated JJ Glynis NNP Gnu-Emacs NNP Go VB Go-Go NN Goa NNP Goals NNPS Gobain NNP Gobbee NNP God NNP God-curst JJ God-forsaken JJ God-given JJ Goddammit UH Goddamn UH Goddard NNP Goddess NNP Godfather NNP Godfrey NNP Godiva NNP Godkin NNP Godot NNP Godown NNP Gods NNP Godspeed NN Godunov NNP Godwin NNP Goebbels NNP Goebel NNP Goering NNP Goes VBZ Goethe NNP Goetz NNP Goffstein NNP Gog NNP Gogh NNP Gogo NNP Gogol NNP Goh NNP Going VBG Goizueta NNP Golan NNP Golar NNP Gold NNP Gold-backed JJ Gold-oriented JJ GoldCard NNP Gold\/Minerals NNP Golda NNP Goldang UH Goldberg NNP Golden NNP Goldenberg NNP Goldenthal NNP Goldfein NNP Goldie NNP Goldin NNP Goldinger NNP Goldline NNP Goldman NNP Goldome NNP Goldscheider NNP Goldschmidt NNP Goldsmith NNP Goldstar NNP Goldstein NNP Goldston NNP Goldwag NNP Goldwater NNP Goldwin NNP Goldwyn NNP Golenbock NNP Golf NNP Golfers NNP Goliath NNP Goliaths NNPS Gollich NNP Gollust NNP Golly UH Golomb NNP Golovanov NNP Goloven NNP Golub NNP Gomel NNP Gomez NNP Gompachi NNP Gon VBG Goncharov NNP Gone VBN Gong NNP Gontran NNP Gonzaga NNP Gonzales NNP Gonzalez NNP Good JJ Good-by UH Good-bye UH Good-faith NN Goodbody NNP Goodby NNP Goodbye NNP Goodchild NNP Goode NNP Goodfellow NNP Goodfriend NNP Gooding NNP Goodis NNP Goodison NNP Goodkind NNP Goodman NNP Goodmorning UH Goodrich NNP Goods NNP Goodson NNP Goodwill NNP Goodwills NNPS Goodwin NNP Goody UH Goodyear NNP Google NNP Goolick NN Goose NNP Gorbachev NNP Gorbachev-era NN Gorboduc NNP Gorby NNP Gorce NNP Gord NNP Gordan NNP Gordin NNP Gordon NNP Gordon\/Pick NNP Gore NNP Gorenstein NNP Gorgeous NNP Gorham NNP Gorilla NNP Gorillas NNP Goriot NNP Gorky NNP Gorman NNP Gorney NNP Gornto NNP Gorshek NNP Gorshin NNP Gorski NNP Gortari NNP Gorton NNP Gortonists NNS Gosbank NNP Gosh UH Gosheim NNP Goshen NNP Gospel NNP Gospel-singer NN Gospelers NNS Gospels NNP Gosplan NNP Gossage NNP Gosset NNP Gossip NN Gossiping NNP Gossips NNS Gossnab NNP Gosson NNP Gostomski NNP Got VBD Gotaas-Larsen NNP Gotham VB Gothic JJ Gothicism NNP Gotlieb NNP Gotschall NNP Gotshal NNP Gott FW Gotta VB Gotterdammerung NNP Gottesfeld NNP Gottesman NNP Gottfried NNP Gottingen NNP Gottlieb NNP Gottschalk NNP Gottshall NNP Goudsmit NNP Gouge VB Gough NNP Gould NNP Goulde NNP Goulding NNP Gouldings NNPS Gouldoid JJ Goupil NNP Gourlay NNP Gourman NNP Gourmet NNP Gouvernement NNP Gov. NNP Goverman NNP Govern VB Governali NNP Governed JJ Governer NNP Government NNP Government-Sponsored NNP Government-blessed JJ Government-mandated JJ Government-owned JJ Governmental NNP Governments NNS Governor NNP Governor-General NNP Governors NNP Govett NNP Govette NNP Govs. NNP Goya NNP Goyette NNP Grab VB Grabbing VBG Grabe NNP Grabowiec NNP Grabski NNP Grace NNP Grace-Sierra NNP Graceful JJ Gracias FW Gracie NNP Graciela NNP Grad NNP Gradco NNP Grade NNP Gradison NNP Gradmann NNP Grads NNS Gradual JJ Gradually RB Graduate NNP Graduate-student NN Graduates NNS Grady NNP Graedel NNP Graeme NNP Graf NNP Graff NNP Grafil NNP Grafin NNP Graft NN Grafton NNP Graham NNP Grahams NNPS Grahamstown NNP Grail NNP Grain NNP Grains NNS Grais NNP Gram JJ Gram-negative JJ Gramercy NNP Gramm NNP Gramm-Rudman NNP Gramm-Rudman-Hollings NNP Grammar NNP Grammophon NNP Grammys NNS Gran NNP Granada NNP Granath NNP Grand NNP Grand-Clement NNP Grande NNP Grande-Bretagne FW Grandeur NN Grandis NNP Grandma NNP Grandmother NNP Grandmothers NNP Grandparent NNP Grandparents NNP Grands NNP Grandsire NNP Grandson NNP Grange NNP Granger NNP Granges NNP Granin NNP Granite NNP Grannell NNP Grannies NNPS Grannon NNP Granny NNP Grano NNP Grant NNP Granted VBN Granther NNP Grantor NNP Grants NNPS Grants-in-aid NNS Granville NNP Grapefruit NNP Grapes NNP Graph NN Graphic NNP Graphics NNP Grappelly NNP Grappely NNP Gras NNP Grass NNP Grass-roots JJ Grasslands NNPS Grassley NNP Grasso NNP Grassy NNP Grateful NNP Gratified JJ Gratt NNP Grattan NNP Graubart NNP Grauer NNP Grauman NNP Gravelle NNP Gravely NNP Graves NNP Gravesend NNP Gravity NN Gray NNP Grayhound NNP Grayson NNP Graziano NNP Grazie NNP Gre't JJ Gre. NNP Greaney NNP Grease NN Greases NNS Greasies NNS Greasy JJ Great NNP Greater NNP Greatest JJS Greatly RB Greatness NNP Grecian JJ Greco NNP Greece NNP Greed NN Greedily RB Greek NNP Greek-Americans NNPS Greek-Canadian JJ Greek-Danish NNP Greek-born JJ Greek-speaking JJ Greekfest NNP Greeks NNPS Green NNP Green-labeled JJ Greenall NNP Greenback NNP Greenbelt NNP Greenberg NNP Greenberger NNP Greene NNP Greene\/Worldwide NNP Greener JJR Greenery NNP Greenfield NNP Greenhill NNP Greenhouse NN Greeniaus NNP Greening NN Greenland NNP Greenleaf NNP Greenmoss NNP Greenness NN Greenock NNP Greenpeace NNP Greens NNPS Greensboro NNP Greenshields NNP Greenspan NNP Greenspon NNP Greenstein NNP Greensville NNP Greentree NNP Greenville NNP Greenwald NNP Greenwich NNP Greenwich-Potowomut NNP Greenwood NNP Greer NNP Greetings NNP Greg NNP Gregg NNP Gregoire NNP Gregorio NNP Gregorius NNP Gregory NNP Greif NNP Greiff NNP Greifswald NNP Greiner NNP Greisler NNP Grenada NNP Grenadian JJ Grenfell NNP Grenier NNP Grenoble NNP Grenville NNP Gresham NNP Gressette NNP Gretchen NNP Grev. NNP Greve NNP Grevile NNP Greville NNP Grevyles NNP Grew VBD Grey NNP Greyhound NNP Greylag NNP Grgich NNP Gribbin NNP Gribin NNP Grid NNP Gridley NNP Grieco NNP Grien NNP Griesa NNP Grievances NNP Griffin NNP Griffin-Byrd NNP Griffith NNP Griffith-Jones NNP Griffith-Joyner NNP Griggs NNP Grigoli NNP Grigori NNP Grigoriy NNP Grigorss NNP Grigory NNP Grigsby NNP Grill NNP Grimaldi NNP Grimes NNP Grimesby NNP Grimm NNP Grindlay NNP Grinevsky NNP Gringo NN Grinned VBD Grinsfelder NNP Grinten NNP Gripen NNP Gripped VBN Grippo NNP Grips NNS Gris NNP Grisebach NNP Griselda NNP Grisha-class JJ Grishaw-Mueller NNP Grisoni NNP Grist NNP Griston NNP Griswold NNP Grits NNP Gritten NNP Grizzlies NNS Gro NNP Gro-Lites NNPS Groat NNP Groben NNP Grobstein NNP Grocer NNP Grocery NNP Grodnik NNP Groep NNP Groff NNP Groggins NNP Grohl NNP Grohowski NNP Grolier NNP Gromov NNP Groom NNP Grooms NNP Groopman NNP Groot NNP Gross NNP Grosse NNP Grosset NNP Grossinger NNP Grossman NNP Grossner NNP Grosvenor NNP Grote NNP Groth NNP Groton NNP Groucho NNP Ground NNP Grounds NNPS Groundwater NNP Group NNP Group-of-Seven NN Group\/Business NNP Groupe NNP Groupement NNP Groups NNS Groused VBD Grove NNP Grove\/Weidenfeld NN Grover NNP Grovers NNP Groves NNP Grow NNP Growers NNPS Growing VBG Grows VBZ Growth NN GrubHub NNP Grubb NNP Gruber NNP Gruberova NNP Grubman NNP Grudges NNS Gruene NNP Gruller NNP Grumble NNP Grumbled VBD Grumman NNP Grunberg NNP Grundfest NNP Grune NNP Grunfeld NNP Grunnfeu NNP Gruntal NNP Grupo NNP Gruppe NNP Grusin NNP Gruss NNP Grzesiak NNP Gtech NNP Guadalajara NNP Guadalcanal NNP Guadalupe NNP Guadalupes NNPS Guadeloupe NNP Guam NNP Guandong NNP Guangdong NNP Guar JJ Guarana NNP Guarantee NN Guaranteed VBN Guaranty NNP Guarascio NNP Guard NNP Guardia NNP Guardian NNP Guardini NNP Guardino NNP Guards NNPS Guardsmen NNPS Guarini NNP Guatemala NNP Guatemalan JJ Guber NNP Guber-Peter NNP Guber-Peters NNP Guber\/Peters NNP Gubers NNP Gucci NNP Guccione NNP Guderian NNP Guenter NNP Guerbet NNP Guerin NNP Guerneville NNP Guerrilla NN Guerrillas NNS Guess NNP Guesstimates NNS Guest NNP Guests NNS Guevara NNP Guffey NNP Guggenheim NNP Guglielmo NNP Guiana NNP Guidance NN Guide NNP Guidelines NNS Guideposts NNPS Guides NNS Guidi NNP Guido NNP Guiftes NNS Guigal NNP Guignol NNP Guild NNP Guildford NNP Guilford NNP Guilford-Martin NNP Guilherme NNP Guilin NNP Guillaume NNP Guillermin NNP Guillermo NNP Guimet NNP Guinea NNP Guinness NNP Guiseppe NNP Guitar NNP Guitarist NNP Guizot NNP Gujarat NN Gulag NNP Gulbuddin NNP Gulch NNP Gulf NNP Gulfstream NNP Gulick NNP Gullah NNP Gulliver NNP Gumbel NNP Gumbel\/Walt NNP Gumi NNP Gumkowski NNP Gummi-Werke NNP Gump NNP Gumpel NNP Gumport NNP Gums NNS Gumucio NNP Gun NNP Gunder NNP Gundle NNP Gundy NNP Gunfire NN Gunlocke NNP Gunmen NNS Gunnar NNP Gunner NNP Gunny NNP Guns NNS Gunter NNP Gunther NNP Gunthrop-Warren NNP Gunton NNP Guofeng NNP Guppy NNP Gupta NNP Gur NNP Guralnick NNP Gurion NNP Gurkhas NNP Gurla NNP Gurria NNP Gursel NNP Gurtz NNP Gurus NNS Gus NNP Gustaf NNP Gustafson NNP Gustafsson NNP Gustav NNP Gustave NNP Gustavo NNP Gustavus NNP Guste NNP Gute FW Gutenberghus NNP Guterman NNP Gutermann NNP Gutfeld NNP Gutfreund NNP Gutfreund-Postel NNP Gutfreunds NNPS Guth NNP Guthman NNP Guthrie NNP Guttmacher NNP Guttman NNP Guttman-type JJ Gutwein NNP Gutzon NNP Guy NNP Guyana NNP Guyon NNP Guys NNS Guzewich NNP Guzman NNP Guzzi NNP Gwen NNP Gwendolyn NNP Gwyn NNP Gyi NNP Gyllensten NNP Gymnasium NNP Gynecologists NNS Gyp NNP Gypsum NNP Gypsy NN Gyrocompass NN Gyula NNP H NNP H&M NNP H&Q NNP H&R NNP H'all DT H-2 NNP H-P NNP H. NNP H.A. NNP H.C. NNP H.E. NNP H.F. NNP H.G. NNP H.H. NNP H.J. NNP H.K. NNP H.L. NNP H.M. NNP H.M.S. NNP H.M.S.S NNP H.M.S.S. NNP H.N. NNP H.P.R. NNP H.R. NNP H.S. NNP H.T. NNP H.V. NNP H.W. NNP H/NNP.A. NN H2Owner NNP HA UH HAD VBD HAHAHA UH HAL NNP HALE NNP HALT NNP HANDICAPPED VBN HANNIFIN NNP HANOVER NNP HAPPY JJ HARD JJ HAS VBZ HASTINGS NNP HATER NN HATS NNS HAVE VB HAWLEY NNP HBJ NNP HBO NNP HCA NNP HCC NNP HCF NNP HCFA NNP HCFCs NNS HCS NNP HD NNP HDI NNP HDM NNP HDTV NN HDTV-screen JJ HDTVs NNS HE PRP HEADED VBD HEALTH NN HEALTH-CARE NN HEALTHDYNE NNP HEALTHY JJ HEARS VBZ HEAVY JJ HEFTY NNP HEI NNP HELD VBD HELPS VBZ HENRI NNP HENRY NNP HERE'S VB HERITAGE NNP HERO NN HERS NNP HEUBLEIN NNP HEWLETT-PACKARD NNP HEXCEL NNP HEXX NNP HEYNOW NNP HF NNP HFC NNP HG NNP HHS NNP HI NNP HIAA NNP HIB NNP HIGH NNP HIGH-SCHOOL NN HIGHER JJR HIGHEST JJS HILLS NNP HIRING NN HIS NNP HISPANIC JJ HIV NNP HIV-1 NNP HIV-infected JJ HIV-related JJ HIV\ NNP HIV\/AIDS JJ HK NNP HK$ $ HLR NNP HLTs NNS HM NNP HMA NNP HMOs NNP HMS NNP HMSS NNP HN NNP HNSX NNP HOBBY NN HOCKEY NN HOFI NNP HOLD VB HOLDING NNP HOLDINGS NNPS HOLIDAY NNP HOLLYWOOD NNP HOME NNP HOME-SALE JJ HOMEOWNERS NNS HOMESTAKE NNP HOMESTEAD NNP HONECKER NNP HOPE VBP HOPES NNS HOSPITALS NNS HOT JJ HOTEL NNP HOTELS NNPS HOUSE NNP HOUSTON NNP HOUSTON-CALGARY NNP HP NNP HPB NNP HRB NNP HRE NNP HRH NNP HRT NNP HUCKSTER'S NN HUD NNP HUD-backed JJ HUD-related JJ HUD-subsidized JJ HUD-supervised JJ HUDSON NNP HUGE JJ HUGO NNP HUGO'S NNP HUH NNP HUNGARY NNP HUNGARY'S NNP HUNTING NN HUNTLEY NNP HURRICANE NNP HUSBANDS NNS HUTTON NNP HYATT NNP Ha NNP Haack NNP Haaek NNP Haag NNP Haagen NNP Haagen-Dazs NNP Haake NNP Haan NNP Haarlem NNP Haas NNP Haase NNP Haavelmo NNP Habeas FW Haber NNP Haberle NNP Habib NNP Habicht NNP Habitat NNP Habla NNP Habomai NNP Habsburg NNP Hacche NNP Hachette NNP Hachiya NNP Hachiyas NNPS Hachuel NNP Hacienda NNP Hack NNP Hackel NNP Hackensack NNP Hackett NNP Hackettstown NNP Hacking VBG Hackman NNP Hackmann NNP Hackney NNP Hacksaw NNP Hackstaff NNP Had VBD Hadassah NNP Haddad NNP Haddix NNP Haden NNP Hadera NNP Hadhazy NNP Hadley NNP Hadrian NNP Hadson NNP Haementeria FW Haestier NNP Hafer NNP Haferkamp NNP Hafetz NNP Hafez NNP Hafif NNP Hafiz NNP Hafner NNP Hage NNP Hagen NNP Hager NNP Hagerty NNP Haggard NNP Hagner NNP Hagood NNP Hagoshrim NNP Hague NNP Hagura NNP Haha UH Hahaha UH Hahn NNP Hahnemann NNP Haig NNP Haight NNP Haigler NNP Haijac NNP Hail NNP Haile NNP Hainan NNP Haines NNP Hair NN Haislip NNP Haislmaier NNP Haiti NNP Haitian JJ Hajak NNP Hajime NNP Hakim NNP Hakko NNP Hakuhodo NNP Hal NNP Halas NNP Halcion NNP Halda NNP Haldeman NNP Hale NNP Halebian NNP Half NN Half-man JJ Half-time JJ Half-year JJ Halfback NNP Halfway RB Haliburton NNP Halis NNP Halkett NNP Hall NNP Hall-Mills NNP Hallador NNP Hallbauer NNP Halle NNP Halleck NNP Hallelujah NNP Hallett NNP Halliburton NNP Hallingby NNP Hallman NNP Hallmark NNP Halloran NNP Halloween NNP Hallowell NNP Halls NNP Hallucigenia NNP Hallwood NNP Halma NNP Halo NNP Halperin NNP Halpern NNP Halprin NNP Hals NNP Halsey NNP Halsmuseum NNP Halstead NNP Halsted NNP Halting VBG Halva-Neubauer NNP Ham NNP Hama NNP Hama-style JJ Hamakua NN Hambrecht NNP Hambric NNP Hambros NNP Hamburg NNP Hamburger NN Hamburgers NNP Hamer NNP Hamey NNP Hamilton NNP Hamilton-Dorgan NNP Hamilton-oriented JJ Hamiltonian JJ Hamiltonians NNPS Hamish NNP Hamlet NNP Hamlin NNP Hamm NNP Hammacher NNP Hammack NNP Hammacks NNP Hammarskjold NNP Hammer NNP Hammer.`` `` Hammers VBZ Hammerschmidt NNP Hammersla NNP Hammersmith NNP Hammerstein NNP Hammerton NNP Hammett NNP Hammond NNP Hammons NNP Hampshire NNP Hampster NNP Hampton NNP Hamrick NNP Han NNP Hanao NNP Hanaspur NNP Hanauer NNP Hanch NNP Hancock NNP Hand NN Hand-holding NN Handbook NN Handel NNP Handels NNP Handelsbank NNP Handelsbanken NNP Handelsman NNP Handguns NNS Handicapped NNP Handing VBG Handle VB Handled VBN Handler NNP Handlers NNP Handley NNP Handling VBG Handmade NNP Handmaid NNP Hands NNP Hands-off JJ Hands-on JJ Handsome JJ Handsomest JJS Handstands NNS Handy NNP Handyman NNP Handzlik NNP Hanes NNP Haney NNP Hanford NNP Hanfsaengl NNP Hanft NNP Hang NNP Hanging VBG Hangman NNP Hani NNP Hanifen NNP Hank NNP Hanks NNP Hanley NNP Hanlon NNP Hann NNP Hannah NNP Hannam NNP Hannes NNP Hannibal NNP Hannifin NNP Hannon NNP Hannover NNP Hanoi NNP Hanoi-backed JJ Hanover NNP Hanover-Bertie NNP Hanover-Ceyway NNP Hanover-Chalidale NNP Hanover-Justitia NNP Hanover-Lucy NNP Hanover-Mauri NNP Hanover-Misty NNP Hanover-Pebble NNP Hanover-Precious NNP Hanover-Sally NNP Hanover-Supermarket NNP Hanoverian NNP Hans NNP Hans-Dietrich NNP Hans-Peter NNP Hans-Ulrich NNP HansGeorg NNP Hansen NNP Hanshin NNP Hansmann NNP Hanson NNP Hanukkah NNP Hanwa NNP Haole FW Hap NNP Hapgood NNP Hapoalim NNP Happened VBD Happens VBZ Happily RB Happiness NN Happy NNP Hapsburg NNP Haqvin NNP Har-Lev NNP Hara NNP Harapiak NNP Harassed JJ Harassment NN Harbanse NNP Harbert NNP Harbison NNP Harbor NNP Harbor\/Save NNP Harbors NNPS Harbour NNP Harbridge NNP Harburg NNP Harch NNP Harco NNP Harcourt NNP Hard NNP Hard-Hearted NNP Hard-Line JJ Hard-hitting JJ Hard-surface JJ Hardart NNP Hardball NNP Hardee NNP Hardest JJS Hardiman NNP Harding NNP Hardings NNPS Hardis NNP Hardly RB Hardscrabble NNP Hardshell NNP Hardware NNP Hardwick NNP Hardwicke NNP Hardwicke-Etter NNP Hardy NNP Hare NNP Harel NNP Harford NNP Hargett NNP Hargitay NNP Hargrave NNP Hargrove NNP Hark NNP Harken NNP Harkess NNP Harkin NNP Harkins NNP Harkinson NNP Harlan NNP Harlan-Hickory NNP Harlan-Marcia NNP Harland NNP Harlem NNP Harlequins NNPS Harley NNP Harley-Davidson NNP Harlin NNP Harlingen NNP Harlow NNP Harm NNP Harman NNP Harmas NNP Harmful JJ Harmless JJ Harmon NNP Harmonia NNP Harmonizing NNP Harmony NNP Harms NNP Harnack NNP Harnessing VBG Harnick NNP Harnischfeger NNP Haro NNP Harold NNP Harpener NNP Harper NNP Harperner NNP Harpers NNP Harpo NNP Harpoon NNP Harrah NNP Harrell NNP Harrier NNP Harriers NNPS Harriet NNP Harrigan NNP Harriman NNP Harrington NNP Harris NNP Harrisburg NNP Harrison NNP Harriton NNP Harrity NNP Harro UH Harrold NNP Harrow NNP Harrows NNPS Harry NNP Harsco NNP Hart NNP Hart-Scott NNP Hart-Scott-Rodino NNP Harte-Hanks NNP Hartfield-Zodys NNP Hartford NNP Hartford-based JJ Hartford\/Springfield NNP Hartigan NNP Hartley NNP Hartley-Leonard NNP Hartlib NNP Hartman NNP Hartmarx NNP Hartnett NNP Hartselle NNP Hartsfield NNP Hartt NNP Hartung NNP Hartweger NNP Hartwell NNP Harty NNP Hartz NNP Hartzog NNP Haruki NNP Haruo NNP Haruyuki NNP Harvard NNP Harve NNP Harvest NNP Harvester NNP Harvesting NN Harvey NNP Harveys NNPS Harvie NNP Harwood NNP Has VBZ Hasbro NNP Hasbrouck NNP Hasbrouk NNP Haselhoff NNP Hasenauer NNP Hash NNP Hashers NNS Hashidate NNP Hashimoto NNP Hashing NN Hasidic JJ Haskayne NNP Haskell NNP Haskin NNP Haskins NNP Hassan NNP Hasse NNP Hasseltine NNP Hassenberg NNP Hassenfeld NNP Hassenfelt NNP Hassey NNP Haste NN Hastening VBG Hastert NNP Hastily RB Hasting NNP Hastings NNP Hastings-on-Hudson NNP Hat NNP Hatakeyama NNP Hatch NNP Hatched VBN Hatchet NNP Hatchett NNP Hatching NNP Hatfield NNP Hathaway NNP Hathcock NNP Hating VBG Hatless JJ Hatred NN Hatteras NNP Hatters NNP Hattie NNP Hattiesburg NNP Hatton NNP Hattori NNP Hauer NNP Haugh NNP Haughey NNP Haughton NNP Hauling VBG Haumd NNP Haun NNP Hauptman NNP Haupts NNP Hauser NNP Hausman NNP Haussmann NNP Haut NNP Haut-Brion NNP Havana NNP Have VBP Havel NNP Haven NNP Havens NNP Haverfield NNP Haverhill NNP Havilland NNP Having VBG Havisham NNP Haw UH Hawaii NNP Hawaiian NNP Hawaiian-Americans NNPS Hawaiian\/Japanese JJ Hawes NNP Hawesville NNP Hawk NNP Hawke NNP Hawker NNP Hawkes NNP Hawking NNP Hawkins NNP Hawkinses NNPS Hawks NNPS Hawksley NNP Hawksworth NNP Hawley NNP Hawn NNP Haworth NNP Hawthorne NNP Hay NNP Hayasaka NNP Hayden NNP Haydn NNP Haydon NNP Hayek NNP Hayes NNP Hayeses NNPS Haying NN Hayne NNP Haynes NNP Haynie NNP Hays NNP Hayter NNP Hayward NNP Haywood NNP Hazard NNP Hazardous JJ Hazards NNS Hazel NNP Hazell NNP Hazeltine NNP Hazelwood NNP Hazlett NNP Hazlitt NNP Hazy NNP Hazzard NNP He PRP He's VBZ Head NNP Headed VBN Heading VBG Headland NNP Headley NNP Headline NNP Headlines NNS Headly NNP Headquarters NNP Headrests NNS Heads NNS Heady NNP Healey NNP Health NNP Health-Chem NNP Health-care JJ Health-insurance NN HealthAmerica NNP HealthCare NNP HealthVest NNP Healthcare NNP Healthco NNP Healthdyne NNP Healthier JJR Healthsource NNP Healthvest NNP Healthy JJ Healy NNP Hear VB Heard NNP Hearing NNP Hearings NNS Hearn NNP Hearst NNP Heart NNP Heart-measuring JJ Heartburn NNP Heartland NNP Hearts NNPS Heartwise NNP Heat NN Heath NNP Heather NNP Heatherington NNP Heathrow NNP Heating NN Heatwole NNP Heave VB Heaven NNP Heavenly NNP Heavily RB Heavy NNP Heavy-coated JJ Heber NNP Hebert NNP Heberto NNP Hebraic JJ Hebrew NNP Hebrews NNPS Hebron NNP Hecht NNP Heck NNP Heckman NNP Hecla NNP Hector NNP Hedda NNP Hedding NNP Hedge NNP Hedges NNP Hedison NNP Hedman NNP Hedquist NNP Hedrick NNP Hee UH Heebner NNP Heed VB Heeding VBG Heel-Beryl NNP Heel-Betty NNP Heel-Holiday NNP Heel-Kaola NNP Heel-Lotus NNP Heel-Miracle NNP Heel-Terka NNP Heels NNS Heem NNP Heenan NNP Heerden NNP Hees NNP Heffer NNP Heffernan NNP Heffner NNP Heflin NNP Hefner NNP Hefter NNP Hegel NNP Hegelian NNP Heidegger NNP Heidelberg NNP Heideman NNP Heidenstam NNP Heidi NNP Heidrick NNP Heifetz NNP Heigh-ho UH Height NN Heightened JJ Heights NNP Heikes NNP Heiko NNP Heilbron NNP Heileman NNP Heilman NNP Heimbold NNP Heimers NNP Hein NNP Heinbockel NNP Heine NNP Heineken NNP Heinemann NNP Heinhold NNP Heinkel NNP Heinrich NNP Heintze NNP Heinz NNP Heinze NNP Heinzes NNPS Heisbourg NNP Heisch NNP Heiser NNP Heitman NNP Heitschmidt NNP Heiwa NNP Heiwado NNP Hekhmatyar NNP Helaba NNP Helane NNP Held VBN Heldring NNP Helen NNP Helena NNP Helene NNP Helfman NNP Helga NNP Helibor NN Helicopter NNP Helicopters NNP Helion NNP Helionetics NNP Heliopolis NNP Helix NNP Hell UH Hellene NNP Hellenic NNP Heller NNP Heller\ NNP Hellfire NNP Helliesen NNP Hellinger NNP Hellisen NNP Hellman NNP Hello UH Hells NNP Helm NNP Helmerich NNP Helmet NN Helms NNP Helmsley NNP Helmsley-Spear NNP HelmsleySpear NNP Helmut NNP Helmuth NNP Help VB Help-wanted JJ Helped VBN Helper NNP Helpern NNP Helping VBG Helpless NNP Helpline NNP Helps VBZ Helsinki NNP Helsinki-based JJ Helton NNP Helva NNP Hemant NNP Hemel NNP Hemenway NNP Hemingway NNP Hemisphere NNP Hemispheric NNP Hemmed VBN Hemmer NNP Hemming NNP Hemorrhage NNP Hempel NNP Hemphill NNP Hempstead NNP Hemus NNP Hemweg NNP Hen NN Hence RB Henceforth RB Henderson NNP Hendersonville NNP Hendl NNP Hendricks NNP Hendrik NNP Hendry NNP Heng-Shan NNP Hengeler NNP Hengesbach NNP Hengst NNP Henh UH Henley NNP Hennefeld NNP Hennessey NNP Hennessy NNP Henney NNP Henning NNP Henri NNP Henrich NNP Henrietta NNP Henrik NNP Henritze NNP Henry NNP Hens NNS Henson NNP Hentoff NNP Henze NNP Heorot NNP Hepatitis NNP Hephzibah NNP Hepker NNP Her PRP$ Heraclitus NNP Herald NNP Herald-American NNP Herald-Examiner NNP Herald-Post NNP Herald-Tribune NNP Herb NNP Herber NNP Herberet NNP Herbert NNP Herbig NNP Hercule NNP Herculean JJ Hercules NNP Herder NNP Herdman NNP Here RB Hereby RB Heredity NN Hereford NNP Heresy NNP Heretic NN Heretofore RB Herford NNP Herger NNP Hergesheimer NNP Hering NNP Heritage NNP Herman NNP Hermann NNP Hermanovski NNP Hermione NNP Hermitage NNP Hernandez NNP Hernando NNP Hero NNP Herod NNP Heroic NNP Herold NNP Heron NNP Herr NNP Herrera NNP Herrick NNP Herridge NNP Herrin-Murphysboro-West NNP Herring NNP Herrington NNP Herrman NNP Herrmann NNP Herron NNP Herry NNP Hers JJ Hersant NNP Herschel NNP Herscu NNP Hersey NNP Hersh NNP Hershel NNP Hershey NNP Hershhenson NNP Hershiser NNP Herslow NNP Hersly NNP Herter NNP Hertz NNP Herwick NNP Herwig NNP Herzenberg NNP Herzfeld NNP Herzlinger NNP Herzog NNP Hesburgh NNP Hesiometer NN Hesperus NNP Hess NNP Hessan NNP Hesse NNP Hesse-Darmstadt NNP Hessian JJ Hessians NNS Hessische NNP Hester NNP Heston NNP Hetman NNP Hettie NNP Hettinger NNP Hetty NNP Heublein NNP Heumann NNP Heusen NNP Heuvelmans NNP Hewett NNP Hewitt NNP Hewlett NNP Hewlett-Packard NNP Hewlett-Woodmere NNP Hewlitt NNP Hexen FW Hey UH Heyden NNP Heydrich NNP Heyford NNP Heylin NNP Heyman NNP Heymann NNP Heymeyer NNP Heyward NNP Heywood NNP Hez NNP Hi UH Hi-Country NNP HiPro NNP Hiatt NNP Hiawatha NNP Hibbard NNP Hibben NNP Hibernia NNP Hibler NNP Hibor NNP Hichens NNP Hickey NNP Hickman NNP Hickok NNP Hickory NNP Hicks NNP Hid NNP Hidden VBN Hideaki NNP Hideous NNP Hiding VBG Hieber NNP Hieronymus NNP Higgins NNP High NNP High-Grade NNP High-Tech JJ High-Yield NNP High-definition JJ High-end JJ High-gain JJ High-grade JJ High-level JJ High-priced JJ High-ranking JJ High-speed JJ High-tech JJ High-technologies NNS High-tension JJ High-yield JJ High-yielding JJ Higher JJR Higher-income JJR Highest JJS Highfield NNP Highland NNP Highlander NNP Highlands NNP Highlights NNS Highly RB Highness NNP Highway NNP Highways NNS Hijet NNP Hiker NN Hilary NNP Hilboldt NNP Hildebrandt NNP Hildegard NNP Hilder NNP Hildy NNP Hilger NNP Hilkert NNP Hill NNP Hillary NNP Hillcrest NNP Hillel NNP Hiller NNP Hillerich NNP Hillhaven NNP Hilliard NNP Hillis NNP Hillman NNP Hills NNP Hills-Hollywood JJ Hillsboro NNP Hillsborough NNP Hillsdale NNP Hillsdown NNP Hillstrom NNP Hillyard NNP Hillyer NNP Hilo NNP Hilprecht NNP Hilton NNP Hiltons NNPS Hiltunen NNP Him PRP Himalayan JJ Himalayas NNPS Hime NNP Himebaugh NNP Himmler NNP Himont NNP Himself PRP Hinchliff NNP Hinckley NNP Hindelong NNP Hindemith NN Hindenburg NNP Hindes NNP Hindle NNP Hindoo NNP Hindu NNP Hinduish JJ Hinduism NNP Hindus NNP Hine NNP Hines NNP Hingham NNP Hingorani NNP Hinkle NNP Hinman NNP Hino NNP Hinsdale NNP Hint NN Hinton NNP Hints NNS Hintz NNP Hinzack NNP Hip NN Hip-pocket JJ Hippie NNP Hippocrates NNP Hippodrome NNP Hippophagique NNP Hiram NNP Hirano NNP Hired JJ Hires NNP Hirey NNP Hiring VBG Hiroaki NNP Hirohito NNP Hironaka NNP Hiroshi NNP Hiroshima NNP Hiroyuki NNP Hirsch NNP Hirschey NNP Hirschfeld NNP Hirschman NNP Hirudo FW Hirzy NNP His PRP$ Hisao NNP Hisaya NNP Hisham NNP Hismanal NNP Hispanic JJ Hispanic-market JJ Hispanics NNPS Hispano NNP Hispanoil NNP Hiss NNP Histadrut NNP Histochemistry NNP Historian NN Historians NNS Historical NNP Historically RB Histories NNP History NN Histrionix NNP Hit VBN Hitachi NNP Hitch NNP Hitchcock NNP Hitching VBG Hitler NNP Hitlers NNPS Hits NNS Hitter NN Hitting VBG Hittner NNP Hive NNP Hixson NNP Hmm NN Hmmm UH Hmong JJ Hmpf UH Hnilica NNP Ho NNP Hoa NNP Hoa-whup UH Hoag NNP Hoagy NNP Hoak NNP Hoaps NNP Hoare NNP Hobart NNP Hobbes NNP Hobday NNP Hoboken NNP Hobson NNP Hoc NNP Hochiminh NNP Hochman NNP Hock NNP Hockaday NNP Hocke NNP Hockett NNP Hockey NNP Hockney NNP Hodel NNP Hodge NNP Hodgepodge NN Hodges NNP Hodgkin NNP Hodgson NNP Hodosh NNP Hodson NNP Hoe VB Hoe-Down NNP Hoechst NNP Hoelterhoff NNP Hoelzer NNP Hoemke NNP Hoenemeyer NNP Hoenlein NNP Hoeve NNP Hoexum NNP Hof NNP Hoff NNP Hoffa NNP Hoffer NNP Hoffman NNP Hoffmann-La NNP Hoffmann-LaRoche NNP Hofstad NNP Hofstra NNP Hog NN Hogan NNP Hoge NNP Hogg NNP Hogs NNS Hogue NNP Hogwash NN Hohlbein NNP Hoijer NNP Hokan NNP Hokey JJ Hokkaido NNP Hokuriku NNP Holabird NNP Holbrook NNP Holch NNP Holcomb NNP Holcombe NNP Hold VB Holden NNP Holderbank NNP Holderlin NNP Holders NNS Holding NNP Holdings NNP Holds NNP Hole NNP Holen NNP Holes NNS Holewinski NNP Holgerson NNP Holguin NNP Holiday NNP Holidays NNS Holien NNP Holies NNPS Holiness NN Holla UH Holland NNP Hollandale NNP Hollander NNP Holler NNP Holleran NNP Holley NNP Holliday NNP Holliger NNP Hollinger NNP Hollings NNP Hollingshead NNP Hollingsworth NNP Hollins NNP Hollis NNP Hollister NNP Holliston NNP Holloway NNP Hollowell NNP Hollsworth NNP Holly NNP Hollywood NNP Holman NNP Holmberg NNP Holmes NNP Holocaust NNP Holstein NNP Holston NNP Holt NNP Holty NNP Holtz NNP Holtzman NNP Holy NNP Holynskyj NNP Holyoke NNP Holz NNP Holzfaster NNP Holzman NNP Homart NNP Hombre NNP Hombrecher NNP Home NNP Home-keeping JJ Home-made JJ HomeCare NNP HomeFed NNP Homebrew NNP Homebuilders NNPS Homecoming NN Homeland NN Homeless NNP Homemade NNP Homemakers NNP Homemaster JJ Homeowner NNP Homeowners NNP Homer NNP Homeric NNP Homerists NNS Homeroom NNP Homerun NN Homes NNP Homestake NNP Homestead NNP Homewood NNP Homework NN Homicide NNP Homma NNP Homo NN Homosexuals NNS Homozygous JJ Hon NNP Hon'ble NNP Hon. NNP HonFed NNP Honan NNP Honda NNP Hondas NNPS Hondius NNP Hondo NNP Honduran JJ Hondurans NNS Honduras NNP Hone NNP Honecker NNP Honest UH Honestly RB Honey NNP Honeybee NNP Honeysuckle NNP Honeywell NNP Honfed NNP Hong NNP Hongkong NNP Honiss NNP Honjo NNP Honolulu NNP Honolulu-based JJ Honor NNP Honorable NNP Honored VBN Honors NNP Honotassa NNP Honshu NNP Hooch NNP Hood NNP Hoof NNP Hooghli NNP Hoogli NNP Hook NNP Hooked VBD Hooker NNP Hooks NNP Hooper NNP Hoopla NNP Hooray UH Hoosier NNP Hoot NNP Hoover NNP Hope NNP Hoped-for JJ Hopedale NNP Hopefully RB Hopei NNP Hopes NNS Hopi NNP Hoping VBG Hopis NNPS Hopkins NNP Hopkinsian NNP Hopley NNP Hoppe NNP Hopson NNP Hopwood NNP Horace NNP Horatio NNP Hord NNP Hordern NNP Hori NNP Horicon NNP Horizon NNP Horizons NNP Hormats NNP Hormel NNP Horn NNP Hornaday NNP Hornbeck NNP Horne NNP Horner NNP Hornet NNP Hornets NNPS Horns NNS Hornung NNP Horowitz NNP Horrigan NNP Horror NNP Horry NNP Horse NNP Horsehead NNP Horsely NNP Horseman NN Horses NNS Horsham NNP Horst NNP Horstman NNP Horta NNP Horten NNP Horticultural NNP Horton NNP Horwath NNP Horwitz NNP Hosaka NNP Hose NNP Hosea NNP Hoses NNS Hoskyns NNP Hosni NNP Hosogane NNP Hosokawa NNP Hosomi NNP Hospice NNP Hospital NNP Hospital-Cornell NNP Hospitality NNP Hospitalization NN Hospitals NNS Host NNP Hostage NNP Hostaria NNP Hostess NNP Hostetter NNP Hostile JJ Hosting VBG Hot NNP Hotei NNP Hotel NNP Hotel-casino NN Hotelecopy NNP Hotels NNPS Hotham NNP Hotline NNP Houdaille NNP Houdini NNP Hough NNP Houghton NNP Houk NNP Houlian NNP Hound NNP Hounds NNPS Hourly JJ Hours NNS House NNP House-Senate NNP House-floor JJ House-passed JJ House. NNP Housed VBN Household NNP Households NNS Housekeeping NN Houses NNS Housewares NNPS Housewives NNS Housing NNP Housings NNS Housman NNP Houston NNP Houston-Dallas JJ Houston-Galveston NNP Houston-Montgomery NNP Houston-area JJ Houston-based JJ Houten NNP Houtz NNP Hovarter NNP Hovdingar FW Hovercraft NNP Hovis NNP Hovnanian NNP How WRB How's NNS How-2 NNP Howard NNP Howda WRB Howdy UH Howe NNP Howell NNP However RB Howick NNP Howie NNP Howl NNP Howley NNP Howmet NNP Howorth NNP Howry NNP Howsabout RB Howsam NNP Howser NNP Howson-Algraphy NNP Howzit NN Hoxa NNP Hoxan NNP Hoy NNP Hoylake NNP Hoylake\ JJ Hoyle NNP Hoyt NNP Hoyte NNP Hoyvald NNP Hrothgar NNP Hsieh NNP Hsu NNP Hu NNP Hua NNP Huai NNP Hualien NNP Huang-ti NNP Huaqiong NNP Huard NNP Hub NNP Hubacher NNP Hubay NNP Hubba UH Hubbard NNP Hubbell NNP Hubble NNP Hubel NNP Huber NNP Hubermann NNP Hubert NNP Hubie NNP Huck NNP Hucksters NNP Hudbay NNP Huddle NN Hudnut NNP Hudson NNP Hue NN Hueglin NNP Huerta NNP Huey NNP Huff NNP Huffman NNP Huge JJ Hugely RB Huggies NNPS Huggins NNP Hugh NNP Hughes NNP Hughey NNP Hugo NNP Hugoton NNP Huhmun NNP Huichol NNP Huitotoes NNS Hulbert NNP Hulings NNP Hulks NNS Hull NNP Hulse NNP Hultberg NNP Human NNP Human-rights NNS Humana NNP Humanism NNP Humanist NNP Humanities NNP Humanity NNP Humberto NNP Humble NNP Humboldt NNP Hume NNP Humidity NN Humiliation NN Humility NNP Hummerstone NNP Humor NN Hump NNP Humphrey NNP Humphreys NNP Humphries NNP Humpty NNP Humulin NNP Hun NNP Hund FW Hundred CD Hundreds NNS Hung NNP Hungarian JJ Hungarian-born NNP Hungarians NNPS Hungary NNP Hungary-Suez NNP Hungerfords NNP Hungry JJ Hunkerish JJ Hunsucker NNP Hunt NNP Hunter NNP Hunterdon NNP Hunters NNPS Hunting NN Huntington NNP Huntingtons NNPS Huntley NNP Huntley-Brinkley NNP Huntsman NNP Huntsville NNP Huntz NNP Huo-Shan NNP Huppert NNP Hurd NNP Huricane NNP Hurley NNP Hurok NNP Huron NNP Hurrah UH Hurray NNP Hurrays NNP Hurrican NNP Hurricane NNP Hurricanes NNPS Hurry VB Hurst NNP Hurt NNP Hurtado NNP Hurter NNP Hurts VBZ Hurwitt NNP Hurwitz NNP Husak NNP Husbandry NN Hush NN Husk NNP Husker NNP Huskers NNPS Huskins NNP Husky NNP Hussein NNP Hussman NNP Hustead NNP Hustle VB Hustler NN Huston NNP Hut NNP Hutchings NNP Hutchins NNP Hutchinson NNP Hutchison NNP Hutton NNP Huwa NNP Hux NNP Huxley NNP Huxtable NNP Huy NNP Hwa-Shan NNP Hwan NNP Hwang NNP Hyannis NNP Hyatt NNP Hyatt-Clark NNP Hybrid NNP Hybritech NNP Hyde NNP Hyde-to-Jekyll JJ Hydra-matic JJ Hydraulic NNP Hydro NNP Hydro-Electric NNP Hydro-Quebec NNP Hydrochlorothiazides NNS Hydrogen NN Hydroxazine NN Hydroxides NNS Hyena NN Hygene NNP Hygiene NNP Hyman NNP Hymen NN Hymn NN Hymowitz NNP Hyndman NNP Hyon-hui NNP HyperCard NNP Hyperlite NN Hypnosis NN Hypocrisy NN Hypothalamic JJ Hypotheekkas NNP Hypotheses NNPS Hypothesis NN Hypothesizing VBG Hyun NNP Hyundai NNP I PRP I'd MD I'll MD I'm VBP I'm-coming-down-your-throat JJ I've VBP I-5 NNP I-75 NN I-880 NN I-E NNP I. NNP I... : I.A. NN I.A.P/NNP.A. NN I.B.M. NNP I.C.H NNP I.C.H. NNP I.D. NN I.E.P. NNP I.L. NN I.M. NNP I.M.F. NNP I.N.D. NNP I.P. NNP I.Q. NNP I.R.S NNP I.R.S. NNP I.S. NNP I.W. NNP IAFP NNP IATA NNP IBC NNP IBCA NNP IBC\ NNP IBC\/Donoghue NN IBEW NNP IBJ NNP IBM NNP IBM-based JJ IBM-bashing NN IBM-compatible JJ IBM-oriented JJ IBM-remarketer JJ IBM\ NNP IBRD NNP IBT NNP IC NNP ICA NNP ICAO NNP ICBM NNP ICBMs NNPS ICC NNP ICCO NNP ICE NNP ICG NNP ICI NNP ICL-GE NNP ICM NNP ICN NNP ICS NNP IDA NNP IDB NNP IDD NNP IDEC NNP IDS NNP IDs NNS IF IN IFA NNP IFAR NNP IFC NNP IFI NNP IFIL NNP IFO NNP IG NNP IGS NNP IH. NNP II NNP IIGS NNP III NNP IIT NNP IIci NNP IIcx NNP IIs NNPS IJAL NNP IL-2 NNP IL-4 NN ILA NNP ILLINOIS NNP IMA NNP IMEDE NNP IMELDA NNP IMF NNP IMF-World NNP IMF-approved JJ IMF-guided JJ IMO NNP IMREG NNP IMS NNP IMSAI NNP IN IN INA NNP INB NNP INC NNP INC. NNP INCOME NN INCREASING VBG IND NNP INDEX NN INDIAN JJ INDUSTRIES NNPS INFLATION NN INFORMATION NNP INGERSOLL-RAND NNP INMAC NNP INPS NNP INQUIRY NN INRA NNP INS NNP INSEAD NNP INSTITUTE NNP INSURANCE NNP INSURERS NNS INT-1 CD INTEL NNP INTENSIVE JJ INTER-TEL NNP INTERBANK NNP INTEREST NN INTEREST-RATE NN INTERMARK NNP INTERNATIONAL NNP INTERPUBLIC NNP INTERVOICE NNP INVESTIGATION NNP INVESTMENT NNP INVESTMENTS NNPS INVESTORS NNS IOC NNP IOCS NN IOCSIXF NN IOCSIXG NN IOS NNP IOU NNP IOUs NNS IOWA NNP IPM NNP IPO NNP IPOs NNPS IPTAY NNP IQ NNP IRA NNP IRA-Plus NN IRAN NNP IRAs NNS IRI NNP IRNA NNP IRONY NN IRS NNP IRS-HHS JJ IRSAC NNP IS VBZ ISC NNP ISC\/Bunker NNP ISI NNP ISN'T VBZ ISO NNP ISRAEL NNP ISSUE NN ISSUES NNS ISTAT NNP IT PRP IT'S VBZ ITC NNP ITEL NNP ITG NNP ITO NNP ITS PRP$ ITT NNP IUD NNP IV NNP IV-drug-free JJ IVF NNP IX CD IXL NNP I\ NNP Iaciofano NNP Iacocca NNP Iain NNP Ian NNP Iard NNP Ibaraki NNP Ibbotson NNP Iberia NNP Iberian NNP Ibias NNP Ibn NNP Ibos NNP Ibrahim NNP Ibsen NNP Ica NN Icahn NNP Icahns NNP Ice NNP Iceland NNP Icelandic NNP Icelandic-speaking JJ Ich FW Ichi NNP Ichiro NNP Icterus FW Id NN Ida NNP Idaho NNP Idaho-based JJ Idal NNP Idea FW Ideal NNP Idealist NN Ideally RB Ideas NNS Idec NNP Identification NNP Identifying VBG Ideologues NNS Idex NNP Idiot NN Idje NNP Idle JJ Idol NNP Idols NNS Idris NNP Idrissa NNP Idrocarburi NNP Ierulli NNP If IN Ifint NNP Ifni NNP Ifo NNP IgG NNP Igaras NNP Igbo NNP Igdaloff NNP Iglehart NNP Ignacio NNP Ignatius NNP Ignazio NNP Ignition NN Ignorance NN Ignore VB Ignoring VBG Igor NNP Iguana NNP Ihmsen NNP Ihor NNP Iijima NNP Ike NNP Ikegai NNP Ikegai-Goss NNP Iken NNP Ikle NNP Il FW Ila NNP Ilford NNP Iliad NNP Ilka NNP Ilkka NNP Ill NNP Ill-considered JJ Ill. NNP Ill.-based JJ Ille NNP Illeman NNP Illick NNP Illingworth NNP Illinois NNP Illinois-based JJ Illiterate JJ Illuminating NNP Illusion NNP Illustrated NNP Illustration NNP Illustrations NNS Ilminster NNP Ilona NNP Ilotycin NNP Ilva NNP Ilyushin NN Ilyushins NNPS Im VBP Image NN Image-processing NN Images NNP Imaginary NNP Imagine VB Imaging NNP Imai NNP Imam NNP Imasco NNP Imasdounian NNP Imboden NNP Imbrium NNP Imelda NNP Imhoff NNP Imitation NN Imma VBP Immaculate NNP Immanuel NNP Immediate NNP Immediately RB Immigrant JJ Immigration NNP Immoderate NNP Immortal NNP Immune NNP Immunetech NNP Immunex NNP ImmunoGen NNP Imo NNP Impact NNP Impartiality NN Impasse NNP Impatiently RB Impco NNP Impediments NNP Imperial NNP Imperiales NNPS Imperials NNPS Impersonal JJ Impetus NN Implementation NN Implements NNS Implores VBZ Import NN Importance NN Important JJ Imported NNP Importers NNP Imports NNS Impose VB Imposed VBN Imposition NN Impossible JJ Impressed VBN Impressionism NN Impressionist JJ Impressionists NNPS Impressions NNS Impressive JJ Imprimis NNP Imprisoned VBN Improper JJ Improprieties NNS Improve VB Improved VBN Improvement NNP Improvements NNP Improves VBZ Improving VBG Imre NNP Imreg NNP Imrene NNP In IN InCide NNP Inability NN Inacio NNP Inada NNP Inadequate JJ Inamori NNP Inasmuch RB Inaugural NNP Inaugurates VBZ Inauguration NNP Inc NNP Inc. NNP Inca NNP Incapable JJ Incarnation NNP Incentives NNS Incest NN Incident NN Incidentally RB Incidents NNS Incinerator NNP Incline NNP Include VB Included VBN Includes VBZ Including VBG Inco NNP Income NNP Inconsistent JJ Incorporated NNP Incorrect JJ Increase VB Increased VBN Increases NNS Increasing VBG Increasingly RB Incredibly RB Incredulous JJ Incrementally RB Incumbent NNP Incurably RB Ind NNP Ind. NNP Ind.-based JJ Ind.-investment NN Indebted JJ Indecon NNP Indeed RB Indefinite JJ Indelicato NNP Indemnity NNP Indentical JJ Independence NNP Independent NNP Independents NNPS Inderbinen NNP Indeterminate NNP Index NNP Index-arbitrage NN Index-linked JJ Index-related JJ Indexed JJ Indexes NNS Indexing NN India NNP India-Pakistan NNP India-born JJ Indian NNP Indian-summer JJ Indiana NNP Indiana-Ohio NNP Indianapolis NNP Indianapolis-based JJ Indians NNPS Indicated VBD Indicating VBG Indication NN Indications NNS Indicator NN Indicators NNP Indicted VBN Indies NNPS Indigenes NNP Indigestion NN Indignantly RB Indigo NNP Indio NNP Indira NNP Indirect JJ Indirectly RB Individual JJ Individuals NNS Indo-China NNP Indo-German NNP IndoSuez NNP Indochina NNP Indochinese JJ Indocin NNP Indonesia NNP Indonesian JJ Indonesians NNPS Indoor JJ Indosuez NNP Indulgence NNP Indulgers NNS Industri NNP Industria NNP Industrial NNP Industriale NNP Industriali NNP Industrialistes NNP Industrials NNP Industrias NNP Industrie NNP Industriel FW Industrielle NNP Industriels NNPS Industries NNPS Industries-developed NNP Industrikredit NNP Industry NN Industrywide JJ Ineffective JJ Inefficient JJ Inefficient-Market NNP Inevitably RB Inexpensive JJ Inexplicably RB Inez NNP Infamous NNP Infant JJ Infantry NNP Infants NNS Infection NN Infectious JJ Inferential NNP Inferiority NN Inferno NN Infertility NNP Infighting NN Infinite JJ Infiniti NNP Infirmary NNP Inflammatory JJ Inflate VB Inflation NN Inflation-adjusted JJ Inflationary JJ Inflow NN Inflows NNS Influenced NNP Influential JJ InfoCorp NNP InfoCorp. NNP Infocorp. NNP Inform NNP Informal JJ Information NNP Informed VBN Informix NNP Infotab NNP Infotechnology NNP Infrared JJ Infrequently RB Infusion NN Ing NNP Ingalls NNP Ingbar NNP Ingeniera NNP Ingersoll NNP Ingham NNP Ingleside NNP Inglewood NNP Ingo NNP Ingot NN Ingram NNP Ingrassia NNP Ingrid NNP Inhalation NNP Inherently RB Inheritance NN Inheriting VBG Inhouse JJ Inisel NNP Initial JJ Initially RB Initiating VBG Initiation NN Initiative NNP Inject VB Injection NNP Inju NNP Injun NNP Injuns NNPS Injury NNP Inland NNP Inlet NNP Inmac NNP Inman NNP Inmate NNP Inmates NNS Inn NNP Inna NNP Inner NNP Innes NNP Innesfree NNP Inning NN Innis-Maggiore-Olson NNP Innocent JJ Innocenti NNP Innopac NNP Innovation NNP Innovative JJ Inns NNPS Innuendos NNS Innumerable JJ Inorganic JJ Inoue NNP Inouye NNP Inpatient NN Inpex NNP Input NN Inquirer NNP Inquiry NNP Inquisition NNP Inquisitor-General NNP Inquisitors NNS Insam NNP Inscribed VBN Insect NN Insects NNS Insecures NNPS Inside IN Insider NNP Insiders NNS Insight NNP Insights NNPS Insilco NNP Insinuations NNS Insisting VBG Insitutional JJ Insofar RB Insomnia NN Inspect VB Inspection NNP Inspections NNP Inspector NNP Inspectorate NNP Inspectorate-Adia NNP Inspectors NNS Inspects VBZ Inspire NNP Inspired VBN Inspiring VBG Insta-Care NNP Install VB Installation NN Installed VBN Installing VBG Instances NNS Instant JJ Instantaneously RB Instantly RB Instead RB Instinctively RB Institue NNP Institut NNP Institute NNP Institutes NNPS Institutio NNP Institution NNP Institutional JJ Institutional-type JJ Institutionalization NN Institutions NNS Instituto NNP Institutue NNP Instructions NNS Instructor NNP Instructors NNS Instrument NNP Instrumental NNP Instruments NNPS Insulate VB Insurance NNP Insurance-industry NN Insurance-reform NN Insurance-related JJ Insurances NNPS Insureres NNS Insurers NNS Insurgent JJ Insuring VBG Insurrecto FW Intair NNP Intan NNP Intangible JJ Intangibles NNS Intar NNP Intech NNP Intecknings NNP Intecom NNP Integra NNP Integra-A NNP Integraph NNP Integrated NNP Integration NN Integrator NNP Intek NNP Intel NNP Intellectual NNP Intelligence NNP Intelligent NNP Intelogic NNP Intelsat NNP Intense JJ Intensification NN Intent NN Inter NNP Inter-American NNP Inter-Canadian NNP Inter-City NNP Inter-american NNP InterMarket NNP InterMedia NNP InterNorth NNP InterVoice NNP Interactive NNP Interagency NNP Interair NNP Interama NNP Interbank NNP Intercable NNP Intercede VB Intercepting VBG Intercity JJ Interco NNP Intercollegiate NNP Intercontinental NNP Interest NN Interest-rate JJ Interested VBN Interesting JJ Interestingly RB Interface NNP Interfaith JJ Interference NNP Interfering VBG Interferon NNP Interfinance NNP Interfinancial NNP Interfunding NNP Intergovernmental NNP Intergraph NNP Intergroup NNP Interhash NNP Interhome NNP Interim JJ Interior NNP Interiors NNS Interlake NNP Interleaf NNP Interleukin-3 NN Interlink NNP Interlochen NNP Interlocking VBG Interlude NNP Intermarco NNP Intermark NNP Intermarriage NN Intermec NNP Intermediate NNP Intermediates NNPS Intermoda NNP Internaional NNP Internal NNP International NNP Internationale NNP Internationalist NNP Internatonal NNP Internet NNP Interpersonal JJ Interpoint NNP Interpore NNP Interpretation NNP Interprovincial NNP Interpublic NNP Interruptions NNS Interscience NNP Interspec NNP Interspersed VBN Interstate NNP Interstate\/Johnson NNP Intertan NNP Intertech NNP Intertrade NNP Intervenes VBZ Intervention NN Interview NNP Interviewed VBN Interviewing NN Interviews NNS Interviu NNP Intervoice NNP Interwoven JJ Intimations NNS Intl NNP Into IN Intolerable JJ Intouch NNP Intourist NNP Intra-European JJ Intrapreneurship NN Intrepid NNP Intriguing JJ Introduce VB Introduced VBN Introduces VBZ Introducing VBG Introduction NN Intuition NN Inuit NNP Invacare NNP Invalid NNP Invariably RB Invasion NNP Inventions NNS Inventor NNP Inventories NNS Inventors NNS Inventory NN Invercalt NNP Invercon NNP Inverness NNP InvesTech NNP Invest VB Invest\ NNP Investcorp NNP Investigating VBG Investigation NNP Investigations NNS Investigators NNS Investing VBG Investment NNP Investment-Grade NNP Investment-grade JJ Investments NNPS Investor NNP Investors NNS Invictus NNP Invisible NNP Invitation NNP Invitations NNS Invite NNP Invoking VBG Involved VBN Involving VBG Inward NNP Inwood NNP Inx NNP Io NNP Iodinated VBN Iodination NN Ion NNP Ione NNP Ionic JJ Ionizing VBG Iosola NNP Iowa NNP Iowa-based JJ Ipswich NNP Ira NNP Iraj NNP Iran NNP Iran-Contra NNP Iran-Iraq NNP IranU.S NNP Iran\ NNP Iranian JJ Iranian-backed JJ Iranians NNPS Iraq NNP Iraqi JJ Iraqis NNPS Iraqw NNP Irec NNP Ireland NNP Irelands NNP Irenaeus NNP Irene NNP Irian NNP Irimajiri NNP Irina NNP Iris NNP Irises NNP Irish JJ Irish-Soviet JJ Irish-made JJ Irishman NN Irishmen NNPS Irma NNP Iron NNP Ironic JJ Ironically RB Ironpants NNP Ironside NNP Ironweed NN Iroquois NNP Irradiation NN Irrawaddy NNP Irretrievably RB Irrigation NN Irv NN Irvin NNP Irvine NNP Irving NNP Irwin NNP Is VBZ Isaac NNP Isaacs NNP Isaacson NNP Isaam NNP Isabel NNP Isabell NNP Isabella NNP Isabelle NNP Isacsson NNP Isadora NNP Isadore NNP Isaiah NNP Isaly NNP Isao NNP Isetan NNP Isfahan NNP Isgur NNP Isham NNP Ishida NNP Ishiguro NNP Ishihara NNP Ishii NNP Ishtar NNP Isikoff NNP Isis NNP Islam NNP Islamabad NNP Islamic NNP Island NNP Island-based JJ Islander NNP Islanders NNPS Islandia NN Islands NNPS Isle NNP Isler NNP Isles NNP Ismail NNP Ismaili NNP Ismet NNP Isoda NNP Isodine NNP Isola NNP Isolated JJ Isolating VBG Isolde FW Isosceles NNP Isotechnologies NNPS Isquith NNP Israel NNP Israeli JJ Israeli-Palestinian JJ Israeli-born JJ Israeli-occupied JJ Israeli\/Palestinian JJ Israelis NNPS Israelite NNP Israelites NNPS Issak NNP Issam NNP Isselbacher NNP Issuance NN Issue NN Issuers NNS Issues NNS Issuing VBG Istanbul NNP Istat NNP Istel NNP Istel-type JJ Isthmus NN Istiqlal NNP Istiqlal-sponsored JJ Istituto NNP Istvan NNP Isuzu NNP It PRP It's NNP It-wit NN Itagaki NNP Italia NNP Italian JJ Italian-American JJ Italian-based JJ Italian-cut JJ Italian-led JJ Italian-made JJ Italian-style JJ Italiana NNP Italianate JJ Italians NNPS Italics NNS Italo NNP Italo-American NNP Italtel NN Italy NNP Itasca NNP Itch VB Itching VBG Itel NNP Item-Categories NNPS Items NNS Ithaca NNP Ithacan NNP Ito NNP Ito-Yokado NNP Itoh NNP Itoiz NNP Its PRP$ Itself PRP Itsuo NNP Ittleson NNP Iturup NNP Itzhak NNP Ivan NNP Iveco NNP Ivern NNP Iverson NNP Ives NNP Ivey NNP Ivies NNPS Ivory NNP Ivy NNP Iwai NNP Iwatare NNP Iwo NNP Izaak NNP Izquierda NNP Izvestia NNP J NNP J&B NNP J&C NNP J&J NNP J&L NNP J'ai FW J-2 NNP J. NNP J.A. NNP J.B. NNP J.C. NNP J.D. NNP J.D.H. NNP J.E. NNP J.F. NNP J.G. NNP J.H. NNP J.I. NNP J.J NNP J.J. NNP J.J.G.M. NNP J.K. NNP J.L. NNP J.M. NNP J.MBB NNP J.N. NNP J.NTT NNP J.P NNP J.P. NNP J.R. NNP J.T. NNP J.V NNP J.V. NNP J.W. NNP J.X. NNP J.Y. NNP J/NNP.A. NN J/NNP.A.C. NNP J/NNP.A.W. NNP J/NNP.G.L. NNP J/NNP.I. JJ J/NNP.J/NNP.A. NN JA NNP JAC NNP JACKPOT NNP JACUZZI NNP JAGRY NNP JAILED VBN JAL NNP JAMES NNP JAPAN NNP JAPAN'S NNP JAPANESE JJ JAS NNP JAUNTS NNS JCKC NNP JCP NNP JEDEC NN JERSEY NNP JERSEY'S NNP JFK NNP JH NNP JIM NNP JKD NNP JMB NNP JNR NNP JOB NN JOIN VB JOINS VBZ JOINT JJ JOKE NN JONES NNP JP NNP JPI NNP JROE NNP JSP NNP JSP-supported JJ JT8D-200 NN JUDGE NN JUDGE'S NN JUDGES NNS JUDICIAL JJ JUDICIARY NNP JUICE NN JUMBO JJ JUMPING NNP JUNK NN JURORS NNS JURY NN JUST RB JVC NNP JVC\/Victor NNP JWP NNP JYJ NN|SYM JYM NN|SYM Jaap NNP Jabe NNP Jacchia NNP Jachmann NNP Jacinto NNP Jack NNP Jack-an-Apes NN Jack-of-all-trades NN Jackals NNS Jackets NNS Jacki NNP Jackie NNP Jackman NNP Jackpot NNP Jackson NNP Jackson-Cross NNP Jackson-Vanick JJ Jacksonian NNP Jacksons NNPS Jacksonville NNP Jackstadt NNP Jacky NNP Jaclyn NNP Jacob NNP Jacobean JJ Jacobite NNP Jacobius NNP Jacoboski NNP Jacobs NNP Jacobsen NNP Jacobson NNP Jacoby NNP Jacopo NNP Jacqueline NNP Jacquelyn NN Jacques NNP Jacques-Francois NNP Jacquette NNP Jacuzzi NNP Jacuzzis NNS Jadwiga NNP Jaeger NNP Jaffe NNP Jaffray NNP Jagan NNP Jager NNP Jaggers NNP Jagt NNP Jaguar NNP Jaguar-GM NNP Jaguars NNPS Jahn NNP Jahr FW Jai NNP Jail NNP Jaime NNP Jakarta NNP Jake NNP Jakes NNP Jalaalwalikraam NNP Jalalabad NNP Jam NNP Jamaica NNP Jamaican JJ James NNP James-the-Less NNP Jameses NNP Jameson NNP Jamestown NNP Jamie NNP Jamieson NNP Jamiesson NNP Jan NNP Jan. NNP Jana NNP Janachowski NNP Jane NNP Jane\ NNP Janeiro NNP Janes NNPS Janesville NNP Janet NNP Janice NNP Janis NNP Janissaries NNS Janitsch NNP Janizsewski NNP Janlori NNP Jannequin NNP Janney NNP Jannsen NNP Janofsky NNP Jansen NNP Jansenist NNP Jansky NNP Janson NNP Janssen NNP Jansz. NNP January NNP January-August NNP January-June JJ January-March NNP January-to-August NNP Janus NNP Janus-faced JJ Jap NNP Japan NNP Japan-U.S NNP Japan-U.S. JJ Japan-made JJ Japanese JJ Japanese-American JJ Japanese-Americans NNPS Japanese-South NNP Japanese-based JJ Japanese-financed JJ Japanese-language JJ Japanese-made JJ Japanese-managed JJ Japanese-owned JJ Japanese-style JJ Japanese-supplied JJ Japanese-type JJ Japanese\/Chinese JJ Japs NNPS Jaques NNP Jardin NNP Jardine NNP Jarmusch NNP Jaross NNP Jarrell NNP Jarrett NNP Jarrodsville NNP Jars NNS Jartran NNP Jarvik NNP Jarvis NNP Jas NNP Jascha NNP Jase NNP Jasmine NNP Jason NNP Jasper NNP Jastrow NNP Jath NNP Java NNP Javanese JJ Javert NNP Javier NNP Jawaharlal NNP Jaworski NNP Jaws NNPS Jay NNP Jaya NNP Jayark NNP Jaycee NNP Jaycees NNPS Jays NNPS Jazz NNP Jean NNP Jean-Claude NNP Jean-Honore NNP Jean-Jacques NNP Jean-Louis NNP Jean-Luc NNP Jean-Marie NNP Jean-Michel NNP Jean-Pascal NNP Jean-Paul NNP Jean-Pierre NNP Jean-Rene NNP Jeancourt-Galignani NNP Jeane NNP Jeanene NNP Jeanette NNP Jeanne NNP Jeannie NNP Jeans NNPS Jeb NNP Jed NNP Jee-sus UH Jeep NN Jeep-Eagle NNP Jeep-brand JJ Jeep-like JJ Jeep\ NNP Jeep\/Eagle NNP Jeepers UH Jeeps NNS Jeff NNP Jefferies NNP Jefferson NNP Jeffersonian JJ Jeffersonians NNPS Jeffersons NNPS Jeffery NNP Jeffrey NNP Jeffry NNP Jehovah NNP Jekyll NNP Jelenic NNP Jelinski NNP Jelke NNP Jell-O NNP Jellinek NNP Jellison NNP Jelly NNP Jellyby NNP Jemela NNP Jemima NNP Jen NNP JenMar NNP Jena NNP Jenco NNP Jenkins NNP Jenkinson NNP Jenks NNP Jenner NNP Jenni NNP Jennie NNP Jennifer NNP Jenning NNP Jennings NNP Jennison NNP Jenny NNP Jenrette NNP Jens NNP Jens-Uwe NNP Jensen NNP Jeopardize VB Jeopardy NNP Jepson NNP Jerald NNP Jerebohm NNP Jerebohms NNP Jerell NNP Jeremiah NNP Jeremy NNP Jerez NNP Jergens NNP Jeri NNP Jericho NNP Jerky NNP Jeroboam NN Jeroboams NNPS Jerome NNP Jerr-Dan NNP Jerral NNP Jerrico NNP Jerritts NNP Jerrold NNP Jerry NNP Jersey NNP Jersey-Salem NNP Jersey-based JJ Jerseyite NNP Jerusalem NNP Jervase NNP Jervis NNP Jesperson NNP Jess NNP Jesse NNP Jessey NNP Jessica NNP Jessie NNP Jessy NNP Jessye NNP Jesuit NNP Jesuits NNPS Jesus NNP Jet NNP Jets NNP Jetta NNP Jetway NNP Jeux FW Jew NNP Jew-as-enemy NN Jew-baiter NN Jew-haters NNS Jewboy NN Jewel NNP Jewelers NNPS Jewelery NNP Jewell NNP Jewelry NN Jewett NNP Jewish JJ Jewish-Gentile NNP Jewishness NN Jewry NNP Jews NNPS Jeyes NNP Jiang NNP Jiangsu NNP Jianying NNP Jiaqi NNP Jibril NNP Jidge NNP Jif NNP Jiffy NNP Jiffy-Couch-a-Bed NNP Jihad NNP Jihong NNP Jill NNP Jim NNP Jima NNP Jimbo NNP Jimenez NNP Jimmie NNP Jimmy NNP Jin NNP Jin-Shung NNP Jindo NNP Jingoism NN Jingsheng NNP Jinny NNP Jinshajiang NNP Jiotto NNP Jiri NNP Jist RB Jittery JJ Jno NNP Jo NNP JoAnn NNP Joachim NNP Joan NNP Joann NNP Joanna NNP Joanne NNP Joannie NNP Joao NNP Joaquin NNP Job NNP Job-Bias JJ Joban NNP Jobs NNP Jobson NNP Jocelyn NNP Jock NNP Jockey NNP Jodi NNP Jody NNP Joe NNP Joel NNP Joerg NNP Joes NNS Joey NNP Joffre NNP Joffrey NNP Jogjakarta NN Johan NNP Johann NNP Johanna NNP Johannesburg NNP Johansen NNP Johanson NNP Johansson NNP John NNP John-Henry NNP John-and-Linda NNP Johnnie NNP Johnny NNP Johns NNP Johns-Manville NNP Johnson NNP Johnson-Merck NNP Johnson-era NN Johnston NNP Johnstone NNP Johnstown NNP Johsen NNP Join VB Joined VBN Joiners NNPS Joining VBG Joint NNP Joint-research JJ Joint-venture JJ Joker NNP Jokes NNS Joking VBG Jolas NNP Jolivet NNP Jolla NNP Jolliffe NNP Jolly JJ Jolt NNP Jon NNP Jonas NNP Jonathan NNP Jones NNP Jones-Imboden NNP Jones-Irwin NNP Jonesborough NNP Joneses NNPS Jong NNP Joni NNP Jonni NNP Jonquieres NNP Joon NNP Joplin NN Jorda NNP Jordan NNP Jordan\/Zalaznick NNP Jordanian JJ Jordon NNP Jordonelle NNP Jorge NNP Jorio NNP Jorndt NNP Jos NNP Jose NNP Jose-Maria NNP Josef NNP Joseph NNP Joseph-Daniel NNP Josephine NNP Josephson NNP Josephthal NNP Josephus NNP Josh NNP Joshi NNP Joshua NNP Joshual NNP Josiah NNP Jossy NNP Jotaro NNP Jour NNP Journal NNP Journal-American NNP Journal-Bulletin NNP Journal\ NNP Journal\/Europe NNP Journal\/NBC NNP Journalism NN Journalist NNP Journalists NNS Journals NNPS Journey NNP Journeys NNS Jouvet NNP Jovanovich NNP Jovanovich\/Bruccoli NNP Jovi NNP Joviality NN Jovian JJ Joy NNP Joyce NNP Joynt NNP Joyo NNP Jozef NNP Jr NNP Jr. NNP Juan NNP Juanita NNP Juarez NNP Juarez-area NN Jubal NNP Judah NNP Judaism NNP Judas NNP Judd-Boston NNP Jude NNP Judea NNP Judeo-Christian JJ Judge NNP Judges NNS Judging VBG Judgment NNP Judgments NNS Judi NNP Judicial NNP Judiciary NNP Judie NNP Judith NNP Judson NNP Judsons NNPS Judy NNP Juergen NNP Juet NNP Juge NNP Jugend NNP Juice NN Juilliard NNP Jujo NNP Jukes NNP Jules NNP Julia NNP Julian NNP Juliano NNP Juliber NNP Julie NNP Juliet NNP Juliette NNP Julio NNP Julius NNP July NNP July-September JJ Jump NN Jumping VBG Juncal NNP Junction NNP June NNP June-to-September NNP June. NN Juneau NNP Jung NNP Junge NNP Jungho NNP Jungian NNP Jungle NNP Junid NNP Junior JJ Juniors NNS Junius NNP Junk NN Junk-Bond NN Junk-bond JJ Junk-fund NN Junk-holders NNS Junk-portfolio NN Junkerdom NNP Junkers NNPS Junkholders NNS Junkins NNP Junor NNP Junsheng NNP Jupiter NNP Jupiter-bound JJ Juras NNP Jurgen NNP Jurisdiction NNP Jurisprudence NN Jurists NNP Jurong NNP Jurors NNP Jury NNP Jussel NNP Just RB Justice NNP Justices NNPS Justin NNP Justine NNP Justinian NNP Justino NNP Jute NN Jutish JJ Jutting VBG Juvenile NNP Jyoti NNP K NNP K'ang-si FW K-9 NNP K-H NNP K-resin NN K. NNP K.B. NNP K.C. NN K.G. NNP K.J.P. NNP K.L. NNP KAISER NNP KAL NNP KANEB NNP KARL NNP KB NNP KC NNP KC-10 NNP KC-135 NNP KC-135s NNS KCRA NNP KCS NNP KCs NNS KEARNEY NNP KEEPING VBG KEISHI NNP KETV NNP KEY JJ KFAC-FM NNP KFC NNP KGB NNP KGF NNP KHAD\/WAD NN KICKING VBG KID NNP KIM NNP KIPPUR NNP KISSINGER NNP KK NNP KKK NNP KKR NNP KLA NNP KLERK NNP KLM NNP KLM-Northwest NNP KLM-controlled JJ KLUC NNP KLUC-FM NNP KMW NNP KN NNP KNOW VB KOBE NNP KODAK NNP KOFY NNP KOFY-FM NNP KOREAN JJ KPMG NNP KQED NNP KRAFT NNP KRAFT'S NNP KRC NNP KRENZ NNP KRON NNP KSAN NNP KSI NNP KTXL NNP KUHN NNP KV NNP KVA NNP KVDA NNP KWU NNP Kabalevsky NNP Kabel NNP Kaboom NN Kabul NNP Kacy NNP Kadane NNP Kaddish NNP Kaddurah-Daouk NNP Kader NNP Kadonada NNP Kafaroff NNP Kafka NNP Kafkaesque JJ Kagakushi NNP Kagan NNP Kaganovich NNP Kageyama NNP Kahan NNP Kahiltna NNP Kahler NNP Kahler-Craft NNP Kahn NNP Kahwaty NNP Kai NNP Kai-shek NNP Kaifu NNP Kailin NNP Kaina NNP Kaiparowits NNP Kaiser NNP Kaisers NNPS Kaisha NNP Kaitaia NNP Kaixi NNP Kajar NNP Kajima NNP Kakadu NN Kakita NNP Kakuei NNP Kakumaru NNP Kakutani NNP Kal NNP Kalamazoo NNP Kaldahl NNP Kalentiev NNP Kalevi NNP Kali VBP Kalikow NNP Kalin NNP Kaliniak NNP Kalinowski NNP Kalipharma NNP Kalison NNP Kalman NNP Kalmuk NNP Kalmus NNP Kalonji NNP Kaltschmitt NNP Kalyagin NNP Kalyani NNP Kamal NNP Kaman NNP Kamchatka NNP Kamehameha NNP Kamel NNP Kamemura NNP Kamens NNP Kamieniec NNP Kamin NNP Kaminski NNP Kaminsky NNP Kamloops NNP Kamm NNP Kamp NNP Kampen NNP Kan NNP Kan. NNP Kan.-based JJ Kanab NNP Kanaday NNP Kanan NNP Kandahar NNP Kandemir NNP Kandinsky NNP Kandu NNP Kane NNP Kaneb NNP Kanebo NN Kanegafuchi NNP Kang NNP KangaROOS NNP Kangaroo NN Kangas NNP Kangyo NNP Kanin NNP Kanjorski NNP Kankakee NNP Kann NNP Kanner NNP Kano NNP Kanoff NNP Kanon NNP Kans. NNP Kansai NNP Kansallis NNP Kansan NNP Kansas NNP Kansas-Nebraska NNP Kanska NNP Kant NNP Kanter NNP Kanto NNP Kantorei NNP Kao NNP Kaolin NNP Kapadia NNP Kaplan NNP Kapnek NNP Kapoor NNP Kappa NNP Kappil NNP Kara NNP Karacan NNP Karalis NNP Karamazov NNP Karan NNP Karangelen NNP Karate NN Karatz NNP Karcher NNP Karcher-Everly NNP Karches NNP Kare NNP Karel NNP Karen NNP Karene NNP Karet NNP Karim NNP Karin NNP Karipo NNP Karkazis NNP Karl NNP Karl-Birger NNP Karlheinz NNP Karlis NNP Karlsruhe NNP Karnak NNP Karnes NNP Karns NNP Karnsund NNP Karo NNP Karol NN Karolinerna NNP Karolinska NNP Karos NNP Karp NNP Karpa NNP Karpov NNP Karre NNP Karshilama NNP Karsner NNP Karstadt NNP Kartalia NNP Kartasasmita NNP Kary NNP Kas NNP Kasai NNP Kasavubu NNP Kasen NNP Kashing NNP Kashpirovsky NNP Kasiva NNP Kaskaskia NNP Kasler NNP Kasparov NNP Kasper NNP Kasriel NNP Kass NNP Kass-Pedone NNP Kassal NNP Kassan NNP Kassar NNP Kassebaum NNP Kassem NNP Kasten NNP Kaster NNP Katanga NNP Katangan JJ Katangans NNPS Katcher NNP Kate NNP Katharina NNP Katharine NNP Kathe NNP Katherine NNP Kathie NNP Kathleen NNP Kathryn NNP Kathy NNP Katie NNP Katims NNP Katmandu NNP Kato NNP Katonah NNP Katow NNP Katsanos NNP Katsive NNP Katsuya NNP Kattus NNP Katutura NNP Katy NNP Katya NNP Katz NNP Katzenjammer NNP Katzenstein NNP Kauffeld NNP Kauffmann NNP Kaufhaus NNP Kaufhof NNP Kaufman NNP Kaufmann NNP Kaufnabb NNP Kaul NNP Kaulentis NNP Kavanagh NNP Kawasaki NNP Kawasaki-Rikuso NNP Kawecki NNP Kay NNP Kay-Bee NNP Kayabashi NNP Kayabashi-san NNP Kaydon NNP Kaye NNP Kayne NNP Kaysersberg NNP Kayton NNP Kaza NNP Kazakh NNP Kazakhstan NNP Kazan NNP Kazikaev NNP Kazis NNP Kazuhiko NNP Kazuo NNP Kazushige NNP Kchessinska NNP Ke NNP Kean NNP Keane NNP Keansburg NNP Kearney NNP Kearns NNP Kearny NNP Kearton NNP Keath NNP Keating NNP Keatingland NNP Keats NNP Keck NNP Kedgeree NN Kedzie NNP Kee-reist UH Keebler NNP Keeeerist UH Keefe NNP Keegan NNP Keehn NNP Keeler NNP Keeling NNP Keen NNP Keenan NNP Keene NNP Keeny NNP Keep VB Keepers NNS Keeping VBG Keeps VBZ Keerist UH Keeshond NN Keffer NNP Keg NNP Kegham NNP Kegler NNP Kehl NNP Keidanren NNP Keihin NNP Keilin NNP Keillor NNP Keio NNP Keith NNP Keiyo NNP Keizai NNP Keizaikai NNP Keizer NNP Kekisheva NNP Kel NNP Kell NNP Kellar NNP Kellaway NNP Kelleher NNP Keller NNP Kelley NNP Kelli NNP Kellmer NNP Kellner NNP Kellogg NNP Kellogg-Briand NNP Kellum NNP Kellwood NNP Kelly NNP Kelly\ NNP Kelly\/David NNP Kelman NNP Kelsey NNP Kelsey-Hayes NNP Kelseyville NNP Kelton NNP Kelts NNP Kemble NNP Kemchenjunga NNP Kemm NNP Kemp NNP Kempe NNP Kemper NNP Kempinski NNP Kempner NNP Kemps NNP Ken NNP Kenan NNP Kendall NNP Kendrick NNP Keng NNP Kenilworth NNP Kenji NNP Kenlake NNP Kenmare NNP Kenmore NNP Kennametal NNP Kennan NNP Kennard NNP Kennedy NNP Kennedy'joie NN Kennedy-Waxman NNP Kennedy-wordsmith NNP Kennedyesque JJ Kennel NNP Kennelly NNP Kenner NNP Kenneth NNP Kennett NNP Kennewick NNP Kenney NNP Kennington NNP Kennon NNP Kenny NNP Kenosha NNP Kensetsu NNP Kensington NNP Kent NNP Kentfield NNP Kenton NNP Kentuck NNP Kentucky NNP Kenworthy NNP Kenya NNP Kenyan JJ Kenyans NNPS Kenyon NNP Kenzo NNP Keo NNP Keogh NNP Keough NNP Kepler NNP Kerby NNP Kercheval NNP Kerensky NNP Kerich NNP Kerkorian NNP Kerkorian-owned JJ Kerlone NNP Kermit NNP Kern NNP Kernel NNP Kerner NNP Kerosene NN Kerouac NNP Kerr NNP Kerr-McGee NNP Kerr-Mills NNP KerrMcGee NNP Kerrey NNP Kerrville NNP Kerry NNP Kerschner NNP Kershbaum NNP Kersley NNP Kerson NNP Kerstin NNP Keschl NNP Keshtmand NNP Kessler NNP Kestner NNP Keswick NNP Ketchikan NNP Ketchum NNP Ketelsen NNP Keteyian NNP Keul NNP Kevah NNP Kevin NNP Kevlar NNP Key NNP Keye\/Donna\/Pearlstein NN Keyes NNP Keynes NNP Keynesian JJ Keynesians NNPS Keynotes NNS Keys NNP Keystone NNP Kezar NNP Kezziah NNP Khaju NNP Khalifa NNP Khan NNP Khare NNP Khartoum NNP Khasi NNP Kheel NNP Khin NNP Khivrich NNP Khmer NNP Khomeini NNP Khomeni NNP Khost NNP Khouja NNP Khrush NNP Khrushchev NNP Khrushchevs NNPS Khustndinov NNP Kia NNP Kiam NNP Kian NNP Kiang NNP Kiarti NNP Kibbutz NNP Kibbutzim NNS Kibbutzniks NNS Kid NNP Kid-Isoletta NNP Kidd NNP Kidder NNP Kiddie NNP Kidnaper NN Kidnapper NN Kids NNP Kieffer NNP Kiefferm NNP Kiel NNP Kiep NNP Kieran NNP Kieslowski NNP Kiev NNP Kihei NNP Kika NNP Kiki NNP Kikiyus NNPS Kikkoman NNP Kiko NNP Kikuyu NNP Kildare NNP Kilduff NNP Kiley NNP Kilhour NNP Kililngsworth NNP Kill VB Killebrew NNP Killeen NNP Killelea NNP Killen NNP Killer NNP Killers NNPS Killing NN Killingsworth NNP Killington NNP Killion NNP Killips NNP Killory NNP Killow NNP Killpath NNP Kilpatrick NNP Kilty NNP Kim NNP Kimba NNP Kimball NNP Kimbark NNP Kimbell-Diamond NNP Kimberly NNP Kimberly-Clark NNP Kimbolton NNP Kimbrough NNP Kimco NNP Kimihide NNP Kimmel NNP Kimmell NNP Kimmelman NNP Kimpton NNP Kims NNPS Kimsong NNP Kincannon NNP Kind NN Kinda RB Kinder-Care NNP KinderCare NNP Kindergarten NN Kindertotenlieder FW King NNP Kingan NNP Kingdom NNP Kingdom-based JJ Kingdome NNP Kingfisher NNP Kingman NNP Kingpin NN Kings NNP Kingsbridge NNP Kingsepp NNP Kingsford NNP Kingsley NNP Kingston NNP Kingstown NNP Kingsville NNP Kingwood NNP Kinji NNP Kinkaid NNP Kinnard NNP Kinnear NNP Kinnett NNP Kinnevik NNP Kinney NNP Kinnock NNP Kinsell NNP Kinsey NNP Kinsley NNP Kiowa NNP Kip NNP Kipling NNP Kipp NNP Kippur NNP Kira NNP Kiran NNP Kirby NNP Kirchberger NNP Kirghiz NNP Kirgizia NNP Kirin NNP Kirk NNP Kirkendall NNP Kirkland NNP Kirkpatrick NNP Kirkwood NNP Kirnan NNP Kirov NNP Kirsch NNP Kirschbaum NNP Kirschner NNP Kiryat NNP Kis NNP Kisen NNP Kisha FW Kishimoto NNP Kiss VB Kissak NNP Kisscorni NNP Kissick NNP Kissin NNP Kissing VBG Kissinger NNP Kit NN Kita NNP Kitada NNP Kitamura NNP Kitaro NNP Kitcat NNP Kitchen NNP Kitchin NNP Kitti NNP Kittler NNP Kittredge NNP Kitty NNP Kivu NNP Kiwanis NNP Kiyoi NNP Kiyotaka NNP Kiz NNP Kizzie NNP Klamath NNP Klan NNP Klansmen NNPS Klass NNP Klatman NNP Klatsky NNP Klauber NNP Klauer NNP Klaus NNP Klauser NNP Klawitter NNP Kleber NNP Kleenex NNP Klees NNP Kleiber NNP Kleiman NNP Klein NNP Kleinaitis NNP Kleiner NNP Kleinman NNP Kleinwort NNP Kleissas NNP Kleist NNP Klejna NNP Klemperer NNP Klerk NNP Klesken NNP Klette NNP Kligman NNP Klimpl NNP Klimt NNP Kline NNP Klineberg NNP Klinger NNP Klinico NNP Klinsky NNP Klipstein NNP Kloeckner NNP Kloman NNP Klondike NNP Kloner NNP Klopfenstein NNP Kloske NNP Kloves NNP Kluckhohn NNP Kluge NNP Klugt NNP Klute NNP Klux NNP Knapek NNP Knapp NNP Knappertsbusch NNP Knauer NNP Knead VB Kneale NNP Knecht NNP Knee NN Kneeling VBG Knesset NNP Knickerbocker NNP Knife NNP Knife-grinder NNP Knight NNP Knight-Ridder NNP Knightes NNP Knightfall NNP Knights NNP Knightsbridge NNP Knill NNP Knit VB Knitwear NNP Knock VB Knogo NNP Knoll NNP Knopf NNP Knorr NNP Knots NNP Know VB Know-Nothing JJ Know-nothings NNS Knowing VBG Knowledge NN KnowledgeWare NNP Knowledgeable JJ Knowledgeware NNP Knowlton NNP Known VBN Knows VBZ Knox NNP Knox-like JJ Knoxville NNP Knudsen NNP Knudson NNP Knuettel NNP Knupp NNP Knute NNP Knutz NNP Ko NNP Koa NNP Kobacker NNP Kobayashi NNP Kobe NNP Kobrand NNP Koch NNP Kochan NNP Kochanek NNP Kochaneks NNPS Kochis NNP Kochitov NNP Kochola NNP Kodak NNP Kodaks NNPS Kodama NNP Kodansha NNP Kodiak NNP Kodyke NNP Koehler NNP Koenig NNP Koenigsberg NNP Koepf NNP Koeppel NNP Koerner NNP Kofanes NNS Kofcoh NNP Koffman NNP Kogan NNP Kogyo NNP Koh NNP Kohi FW Kohl NNP Kohlberg NNP Kohler NNP Kohnstamm NNP Kohnstamm-negative JJ Kohnstamm-positive JJ Kohrs NNP Kohut NNP Koito NNP Koizumi NNP Koji NNP Kok NNP Kokoschka NNP Kokubu NNP Kokusai NNP Kolakowski NNP Kolb NNP Kolber NNP Kolberg NNP Kolff NNP Kollmorgen NNP Kolman NNP Kolpakova NNP Kolsrud NNP Kolstad NNP Komatsu NNP Kombo NNP Komleva NNP Komori NNP Kompakt NNP Komsomol NNP Komsomolskaya NNP Komurasaki NNP Kon NNP Kona NNP Kondo NNP Kondratas NNP Kong NNP Kong-based JJ Kong-dollar NN Kongsberg NNP Konheim NNP Konigsberg NNP Konikow NNP Koninklijke NNP Konishi NNP Konitz NNP Konner NNP Konopnicki NNP Konowitch NNP Konrad NNP Konstantin NNP Kontrollbank NNP Konzerthaus NNP Kooks NNPS Kool-Aid NNP Kooning NNP Koop NNP Koopman NNP Koor NNP Kooten NNP Kopcke NNP Kopp NNP Koppel NNP Koppers NNP Kopstein NNP Koran NNP Korando NNP Korbich NNP Korbin NNP Korda NNP Korea NNP Korea-basher NN Koreagate NNP Korean JJ Korean-American JJ Korean-Americans NNPS Korean-U.S. NNP Koreans NNPS Korff NNP Kori NNP Korman NNP Korn NNP Korn\/Ferry NNP Kornbluth NNP Kornevey NNP Korneyev NNP Korneyeva NNP Kornfield NNP Korngold NNP Kornick NNP Kornreich NNP Korobytsin NNP Korobytsins NNS Korotich NNP Korowin NNP Korps NNP Korra NNP Kors NNP Kortunov NNP Kory NNP Kos NNP Kosan NNP Kosar NNP Koshare NNP Koshland NNP Koskotas NNP Kosonen NNP Kosovo NNP Kossuth NNP Kostelanetz NNP Kotman NNP Kotobuki NNP Kots NNP Kouji NNP Koussevitzky NNP Kovacic NNP Kowa NNP Kowalski NNP Koyata NNP Koyo NNP Kozak NNP Kozinski NNP Kozintsev NNP Kozloff NNP Kozuo NNP Kraemer NN Kraft NNP Krakatoa NNP Krakow NNP Krakowiak NNP Kramer NNP Krampe NNP Krane NNP Krapels NNP Krapp NNP Krasnik NNP Krasnow NNP Krasnoyarsk NNP Krat NNP Krause NNP Krauss NNP Krauss-Maffei NNP Krauts NNS Kravis NNP Kravitz NNP Krebs NNP Kredietbank NNP Kreditanstalt NNP Kreditkasse NNP Kreisler NNP Kremlin NNP Krenz NNP Krepon NNP Kresa NNP Kress NNP Kretchmer NNP Kreuter NNP Kreutzer NNP Krick NNP Krieger NNP Krim NNP Krims NNPS Kringle NNP Krisher NNP Krishna NNP Krishnaists NNS Krishnamurthy NNP Krishnaswami NNP Krispies NNPS Kriss NNP Krist UH Kristallstrukturen FW Kristen NNP Kristiansen NNP Kristin NNP Kristine NNP Kristol NNP Kriz NNP Kroc NNP Kroczek NNP Kroening NNP Kroger NNP Krogers NNPS Krohley NNP Krohn NNP Kroll NNP Kroller-Muller NNP Kromy NNP Kron NNP Kronenberger NNP Kronish NNP Kropp NNP Krueger NNP Krug NNP Kruger NNP Kruk NNP Krumpp NNP Krupa NNP Krupp NNP Krutch NNP Krutchensky NNP Krys NNP Krysalis NNP Krystallographie NNP Kryuchkov NNP Krzysztof NNP Krzywy-Rog NNP Ku NNP Kuala NNP Kuan NNP Kubek NNP Kucharski NNP Kudlow NNP Kuehler NNP Kuehn NNP Kueneke NNP Kuhlke NNP Kuhlman NNP Kuhn NNP Kuhns NNP Kuiper NNP Kulani NNP Kulongoski NNP Kulturbund NNP Kum NNP Kumagai NNP Kumagai-Gumi NNP Kumble NNP Kume NNP Kummerfeld NNP Kunashir NNP Kung NN Kuniji NNP Kunkel NNP Kunste NNP Kunz NNP Kunze NNP Kuomintang NNP Kuparuk NNP Kupcinet NNP Kupelian NNP Kuperberg NNP Kupor NNP Kurabo NNP Kuraray NNP Kurd NNP Kurdish JJ Kurds NNPS Kurigalzu NNP Kurile NNP Kuriles NNP Kurlak NNP Kurland NNP Kurlander NNP Kurnit NNP Kurosaki NNP Kursk NNP Kurt NNP Kurtanjek NNP Kurth NNP Kurtwood NNP Kurtz NNP Kurtzig NNP Kurzweil NNP Kuse NNP Kuser NNP Kushkin NNP Kushnick NNP Kuster NNP Kutak NNP Kutney NNP Kuttner NNP Kutz NNP Kutzke NNP Kuvin NNP KuwAm NNP Kuwait NNP Kuwaiti JJ Kwaishinsha NNP Kwame NNP Kwan NNP Kwang NNP Kwango NNP Kwasha NNP Kweisi NNP Kwek NNP Kwik NNP Kwon NNP Kwong NNP Ky NNP Ky. NNP Ky.-based JJ Kyi NNP Kylberg NNP Kyle NNP Kymberly NNP Kyne NNP Kynikos NNP Kyo NNP Kyo-zan NN Kyocera NNP Kyodo NNP Kyong NNP Kyoto NNP Kyowa NNP Kysor NNP Kyu NNP Kyushu NNP Kyzyl NNP L NNP L&N NNP L'Arcade NNP L'Astree NNP L'Heureux NNP L'Imperiale NNP L'Institut NN L'Oreal NNP L'Turu NNP L'Union NNP L'Unita NNP L'incoronazione FW L'orchestre NNP L-1011 NNP L-5-vinyl-2-thio-oxazolidone NN L-P NNP L-shaped JJ L. NNP L.A NNP L.A. NNP L.B. NNP L.C. NNP L.E. NNP L.F. NNP L.H. NNP L.J. NNP L.L. NNP L.M. NNP L.P NNP L.P. NNP L.P.V NNP L.R. NNP L.S.U. NNP L.T. NNP LA NNP LABOR NNP LABORATORIES NNP LAC NNP LAMBERT NNP LAN NNP LAND NNP LANDOR NNP LARGEST JJS LASHED VBD LAST JJ LATE JJ LATE-BREAKING JJ LATEST JJS LAW NN LAWMAKERS NNS LAWSON NNP LAWYER NN LAWYERS NNS LAYOFFS NNS LBJ NNP LBO NNP LBO-related JJ LBOs NNS LD NN LD056 NN LD060 NN LDC NNP LDCs NNPS LDI NNP LDP NNP LDS NNP LEADER NN LEADERS NNS LEAVE NN LEAVING VBG LEBANESE JJ LEHMAN NNP LENSES NNS LETTER NN LEVERAGED VBN LEVINE NNP LIBERTY NNP LIBOR NNP LICENSE NN LIES VBZ LIFETIME NNP LIKE IN LIL NNP LIMB NN LIMITED JJ LIN NNP LIN-BellSouth JJ LINCOLN NNP LINK-UP NN LINTAS NNP LISA NNP LIT NNP LITORIGIN NN LIVE JJ LIVERPOOL NNP LIVESTOCK NNP LJH NNP LJN NNP LLerena NNP LM NNP LMAO UH LMBO UH LME NNP LMEYER NNP LMFAO UH LOAN NNP LOBBIES VBZ LOBSTERS NNS LOC NNP LOCKHEED NNP LOGIC NNP LOL UH LONDON NNP LONG-TERM JJ LONGS NNP LOOKING VBG LOOM VBZ LOS NNP LOSES VBZ LOSSES NNS LOSS\ NN LOT NNP LOTUS NNP LOUIS NNP LOVE VB LOW RB LOWER JJR LP NNP LPL NNP LS NNP LS400 NNP LSC NNP LSI NNP LSO NNP LSU NNP LSX NNP LTCB NNP LTD NNP LTV NNP LUTHER NNP LUXURY NN LVI NNP LVMH NNP LX NNP LXI NNP LXi NNP LYNCH NNP LYONs NNS La NNP La-la-landers NNS La. NNP LaBella NNP LaBerge NNP LaBonte NNP LaBoon NNP LaBow NNP LaCroix NNP LaFalce NNP LaGow NNP LaGrange NNP LaGuardia NNP LaLonde NNP LaMacchia NNP LaMantia NNP LaMore NNP LaMothe NNP LaRiviere NNP LaRosa NNP LaSalle NNP LaWare NNP LaWarre NNP Lab NNP Laban NNP Laband NNP Labans NNP Labaton NNP Labatt NNP Labe NNP Labeling VBG Labor NNP Laboratories NNPS Laboratorium NNP Laboratory NNP Laboring VBG Labothe NNP Labouisse NNP Labour NNP Labovitz NNP Labow NNP Labrador NNP Labs NNPS Lac NNP Lacey NNP Lachica NNP Lack NN Lackey NNP Lacking VBG Lackland NNP Lackluster JJ Lacroix NNP Lacy NNP Lada NNP Ladas NNP Ladbroke NNP Ladd NNP Ladehoff NNP Ladenburg NNP Ladgham NNP Ladies NNP Ladislav NNP Lady NNP Laenderbank NNP Lafarge NNP Lafayette NNP Lafe NNP Laff NNP Lafite-Rothschild NNP Lafontant NNP Lag NN Lagerlof NNP Lagnado NNP Lagonda NNP Lagoon NNP Lagrange NNP Lags VBZ Laguerre NNP Laguna NNP Lahan NNP Lahus NNP Lai NNP Laicos NNP Laidig NNP Laidlaw NNP Laima NNP Laing NNP Laird NNP Lake NNP Lakeland NNP Laker NNP Lakers NNP Lakes NNPS Lakeshore NNP Lakewood NNP Lakshmipura NNP Lal NNP Lalaurie NNP Lalauries NNPS Lama NNP Lamalie NNP Lamar NNP Lamarche NNP Lamb NNP Lambarene NNP Lambda NNP Lamberjack NNP Lambert NNP Lamberth NNP Lambeth NNP Lamborghini NNP Lamentation NNP Lamle NNP Lamm NNP Lamma NNP Lammermoor NNP Lamon NNP Lamos NNP Lampe NNP Lamphere NNP Lampoon NNP Lamson NNP Lamy NNP Lamy-Lutti NNP Lana NNP Lancashire NNP Lancaster NNP Lance NNP Lancet NNP Lancia NNP Lancome NNP Lancret NNP Land NNP Land-O-Sun NNP Land-Rover NNP Land-based JJ Landa NNP Landau NNP Lande NNP Lander NNP Landerbank NNP Landers NNP Landesbank NNP Landesbank-Girozentrale NNP Landesco NNP Landesrentenbank NNP Landfill NN Landing NNP Landini NNP Landis NNP Landmark NNP Landon NNP Landonne NNP Landor NNP Landover NNP Landowners NNS Landrieu NNP Landrum-Griffin NNP Landry NNP Lands NNPS Landscape NNP Lane NNP Lanes NNS Lanese NNP Lanesmanship NN Lanesville NNP Lang NNP Langbo NNP Langeland NNP Langendorf NNP Langer NNP Langevin NNP Langford NNP Langhorne NNP Langley NNP Langner NNP Langsdorf NNP Langstaff NNP Langton NNP Language NN Languages NNP Lanham NNP Lanier NNP Lanin NNP Lanka NNP Lankford NNP Lannon NNP Lanny NNP Lansbury NNP Lansing NNP Lanston NNP Lante NNP Lantos NNP Lantz NNP Lanvin NNP Lanvin-owned JJ Lanyi NNP Lanza NNP Lanzhou NNP Lao NNP Lao-tse NNP Laodicean JJ Laos NNP Laotian JJ Laotians NNS Lap NNP Lapham NNP Laphroaig NNP Lapides NNP Lapin FW Laplace NNP Lapointe NNP Laporte NNP Lapp NNP Lappenberg NNP Lappenburg-Kemble NNP Lapps NNPS Laptev NNP Laptop NN Laptops NNS Lara NNP Laramie NNP Larchmont NNP Laredo NNP Large JJ Large-deposit JJ Large-package JJ Large-screen JJ Largely RB Larger JJR Largo NNP Larimer NNP Larisa NNP Larish NNP Lark NNP Larkin NNP Larkins NNP Larkspur NNP Laro NNP Larry NNP Lars NNP Lars-Erik NNP Larsen NNP Larson NNP Larsson NNP Las NNP Lascar NNP Lascivious NNP Lasco NNP Laser NNP LaserTripter NNP LaserWriter NNP Lasers NNS Laserscope NNP Lashof NNP Lasker NNP Lasmo NNP Lasorda NNP Lass NNP Lassie NNP Lassila NNP Lassus NNP Lasswitz NNP Last JJ Lastly RB Laswick NNP Laszlo NNP Latchford NNP Late RB Late-night JJ Lateiner NNP Lately RB Later RB Lateral NNP Lateran NNP Latest JJS Latest-quarter JJ Latham NNP Lathouris NNP Latin NNP Latino JJ Latinovich NNP Latour NNP Latowski NNP Latter NN Latter-day JJ Lattice NNP Lattimer NNP Latvia NNP Latvian JJ Latvians NNPS Lauber NNP Lauchli NNP Laudably RB Laude NNP Lauder NNP Lauderdale NNP Lauderhill NNP Laue NNP Lauer NNP Laufenberg NNP Laugh NNP Laughing NNP Laughlin NNP Launch NN Launched VBN Launches VBZ Launching VBG Launder NNP Launder-Ometer NNP Laundered VBN Laura NNP Laurance NNP Laurel NNP Lauren NNP Laurence NNP Laurene NNP Laurent NNP Laurentian NNP Laurentiis NNP Laurents NNP Lauri NNP Laurie NNP Lauritsen NNP Lauritz NNP Lauro NNP Lausanne NNP Lautenbach NNP Lautenberg NNP Lautner NNP Laux NNP Laval NNP Lavallade NNP Lavaro NN Lavato NNP Lavaughn NNP Lavelle NNP Laventhol NNP Laverne\ JJ Laverty NNP Lavery NNP Lavidge NNP Lavin NNP Lavity NNP Lavoisier NNP Lavoro NNP Law NNP Law-enforcement JJ Lawford NNP Lawful JJ Lawless NNP Lawmakers NNS Lawmaking JJ Lawn NNP Lawn-Boy NNP Lawrence NNP Lawrenceville NNP Lawrenson NNP Laws NNS Lawson NNP Lawson-Walters NNP Lawsuit NNP Lawsuits NNS Lawton NNP Lawyer NNP Lawyers NNS Lay NNP Laying VBG Layman NNP Layout NN Layton NNP Lazar NNP Lazard NNP Lazare NNP Lazarus NNP Lazy NNP Lazybones NNP Lazzaroni NNP Lazzeri NNP Le NNP LeBaron NNP LeBoutillier NNP LeBow NNP LeBron NNP LeBrun NNP LeCarre NNP LeCave NNP LeClair NNP LeCompte NNP LeFevre NNP LeFrere NNP LeGere NNP LeMans NNP LeMasters NNP LeMay NNP LePatner NNP LeRoy NNP LeSabre NNP LeSourd NNP LeVecke NNP Lea NNP Leach NNP Lead JJ Leadbetter NNP Leader NNP Leaders NNS Leadership NN Leading VBG Leads VBZ Leaf NN League NNP League-sponsored JJ Leaguers NNP Leagues NNPS Leahy NNP Leale NNP Leamington NNP Lean NNP Leaning VBG Leap NNP Leaping VBG Lear NNP Learn VB Learned NNP Learning NNP Leary NNP Leasco NNP Lease NNP Leaseway NNP Leasing NNP Leason NNP Least JJS Least-cost JJ Leasure NN Leath NNP Leather NNP Leatherman NNP Leatherneck NNP Leave VB Leavenworth NNP Leaves NNS Leaving VBG Leavitt NNP Lebanese JJ Lebanese-controlled JJ Lebanon NNP Lebans NNP Leben NNP Leber NNP Leblanc NNP Leblang NNP Lebo NNP Lebow NNP Lebron NNP LecTec NNP Lech NNP Leche NNP Lecheria NNP Lecky NNP Lectec NNP Lecture NNP Lecturer NNP Lectures NNPS Led VBN Lederberg NNP Lederer NNP Lederle NNP Ledford NNP Ledge NN Ledger NNP Ledoux NNP Ledyard NNP Lee NNP Lee-based JJ Leech NNP Leeches NNS Leeds NNP Leemans NNP Leery JJ Lees NNP Leesona NNP Leesona-Holt NNP Leet NNP Leeward NNP Leeza NNP Lefcourt NNP Lefebvre NNP Lefevre NNP Lefferts NNP Left NNP Left-Wing NNP Left-stream JJ Leftist JJ Leftovers NNP Lefty NNP Leg NNP Legal NNP Legalization NN Legalizing VBG Legally RB Legend NNP Legends NNPS Legent NNP Leger NNP Legers NNPS Legg NNP Leggett NNP Legion NNP Legionnaire NNP Legislating VBG Legislation NN Legislative NNP Legislators NNS Legislature NNP Legislatures NNS Legitimate JJ Legittino NNP Lego NNP Legs NNS Lehar NNP Lehder NNP Lehigh NNP Lehman NNP Lehman\/American NNP Lehmann NNP Lehmans NNPS Lehn NNP Lehne NNP Lehner NNP Lehtinen NNP Leibler NNP Leibowitz NNP Leiby NNP Leica NNP Leichtman NNP Leiden NN Leigh NNP Leigh-Pemberton NNP Leighfield NNP Leighton NNP Leila NNP Leinberger NNP Leinoff NNP Leinonen NNP Leipzig NNP Leish NNP Leisire NNP Leisure NNP Leisurely RB Leitz NNP Leixlip NNP Lek NNP Lekberg NNP Leland NNP Leleiohaku NNP Lelogeais NNP Lemanowicz NNP Lemans NNP Leming NNP Lemma NN Lemme VB Lemmon NNP Lemon NNP Lemont NNP Lempesis NNP Lemuel NNP Len NNP Lena NNP Lenaghan NNP Lencioni NNP Lend VB Lender NNP Lenders NNS Lending NN Lendrum NNP Leng NNP Length NN Lengthening VBG Lengwin NNP Leni NNP Lenin NNP Leningrad NNP Leningrad-Kirov NNP Leninism-Marxism NNP Leninist NNP Leninskoye NNP Lennie NNP Lennon NNP Lennox NNP Lenny NNP Leno NNP Lenobel NNP Lens NNP Lent NNP Lentjes NNP Lenwood NNP Leny NNP Lenygon NNP Leo NNP Leobardo NNP Leominster NNP Leon NNP Leona NNP Leonard NNP Leonardo NNP Leonato NNP Leone NNP Leonel NNP Leong NNP Leonid NNP Leonidas NNP Leonore NNP Leontief NNP Leopard NNP Leopold NNP Leopoldville NNP Lep NNP Lepercq NNP Leperq NNP Leponex NNP Leppard NNP Lerach NNP Lerman NNP Lermer NNP Lerner NNP Leroy NNP Les NNP Lesbian NNP Lescaut NNP Lescaze NNP Lesch-Nyhan NNP Leschly NNP Leser NNP Leshem NNP Lesk NNP Lesko NNP Lesley NNP Lesley-Anne NNP Leslie NNP Lespinasse NNP Less RBR Less-than-truckload JJ Lessening VBG Lesser NNP Lessing NNP Lessner NNP Lesson NN Lessons NNS Lester NNP Lestoil NNP Lesutis NNP Leszek NNP Let VB Let's VB Letch NNP Lethal NNP Lethcoe NNP Letitia NNP Lets VB Lett NNP Letter NNP Letterman NNP Letters NNS Letting VBG Leu NNP Leubert NNP Leucadia NNP Leuffer NNP Leukemia NNP Leumi NNP Leuzzi NNP Lev NNP Leval NNP Levamisole NN Level NNP Leven NNP Levenson NNP Leventhal NNP Lever NNP Leverage NN Leveraged JJ Leverett NNP Leverkuhn NNP Leverkusen NNP Levert NNP Levesque NNP Levi NNP Levin NNP Levina NNP Levine NNP Levinger NNP Levinson NNP Levitt NNP Levittown NNP Levki NNP Levy NNP Lew NNP Lewala NNP Lewco NNP Lewellen NNP Lewelleyn NNP Lewellyn NNP Lewin NNP Lewinton NNP Lewis NNP Lewisohn NNP Lewiston NNP Lewtas NNP Lex NNP Lexington NNP Lexington-based JJ Lexus NNP Leyden NN Leyland NNP Leyse NNP Leyte NNP Leyva NNP Lezovich NNP Li NNP Li'l JJ Liability NN Liaison NNP Liaisons NNS Liang NNP Liar NN Libel NNP Liber NNP Libera FW Liberace NNP Liberal NNP Liberal-Radical NNP Liberalism NN Liberals NNPS Liberated VBN Liberating VBG Liberation NNP Liberia NNPS Liberian JJ Liberman NNP Liberties NNPS Libertines NNS Liberty NNP Liberty-and-Union NN Libor NNP Librarians NNS Library NNP Librium NNP Libya NNP Libyan JJ Libyans NNPS License NN Licenses NNP Licht NNP Lichtblau NNP Lichtenstein NNP Licks NNP Liddell NNP Liddle NNP Lidex NNP Lidgerwood NNP Lido NNP Lidov NNP Lids NNS Lie NNP Lieb NNP Liebenow NNP Lieber NNP Lieberman NNP Lieberthal NNP Liebler NNP Liebowitz NNP Liechtenstein NNP Lied NNP Lien NN Lieppe NNP Lies NN Lieut NN Lieutenant NNP Lieutenant-Colonel NNP Lieutenant-Governor NNP Life NNP Life-preservers NNS LifeSavers NNPS LifeSpan NNP Lifeboat NNP Lifeco NNP Lifecodes NNPS Lifeguard NN Lifeguards NNS Lifestyle NNP Lifestyles NNPS Lifetime NNP Liffe NNP Lifland NNP Lifson NNP Lift VB Lifting VBG Ligachev NNP Ligget NNP Liggett NNP Light NNP Lighted VBN Lighter JJR Lightfoot NNP Lighthouse NNP Lighting NNP Lightly RB Lightning NN Lights NNS Lightstone NNP Lightweight JJ Ligne NNP Liipfert NNP Like IN Likely JJ Likening VBG Likewise RB Likins NNP Likud NNP Lil NNP Lila NNP Lilac NNP Lili NNP Lilian NNP Lilien NNP Liliputian NNP Lillard NNP Lille NNP Lillehammer NNP Lilley NNP Lillian NNP Lilliputian JJ Lillo NNP Lilly NNP Lily NNP Lim NNP Lima NNP Liman NNP Limbo NNP Lime NNP Limerick NNP Liming NNP Limit VB Limitation NNP Limitations NNS Limited NNP Limiting VBG Limits NNPS Lin NNP Linage NN Lincoln NNP Lincoln-Douglas NNP Lincoln-Mercury NNP Lincoln-Mercury-Merkur NNP Lincolnshire NNP Lind NNP Lind-Waldock NNP Linda NNP Lindamood NNP Lindbergh NN Lindemann NNP Lindemanns NNPS Linden NNP Lindens NNPS Linder NNP Lindner NNP Lindsay NNP Lindsey NNP Lindskog NNP Lindy NNP Lindzen NNP Line NNP Line-item JJ Linear NNP Liner NNP Lines NNPS Lines-Trans NNP Linger NNP Lingering JJ Lingo NN Linguistic JJ Linguists NNS Lingus NNP Linh NNP Link NNP Linked VBN Linker NNP Linking VBG Links NNP Linsenberg NNP Linsert NNP Linsey NNP Linsley NNP Lint NNP Lintas NNP Lintas:Campbell-Ewald NNP Lintas:New NNP Linter NNP Lintner NNP Linus NNP Linville NNP Linvure NNP Linwick NNP Linwood NNP Linz NNP Lion NNP Lionel NNP Lions NNP Lionville NNP Lior NNP Lipchitz NNP Lipman NNP Lipner NNP Lipowa NNP Lippens NNP Lipper NNP Lippi NNP Lippincott NNP Lippman NNP Lippmann NNP Lipps NNP Lips NNS Lipshie NNP Lipsky NNP Lipson NNP Lipstein NNP Liptak NNP Lipton NNP Liqueur NNP Liquid NNP Liquidating NNP Liquidation NNP Liquidity NN Liquor NNP Liriano NNP Liro NNP Lisa NNP Lisbeth NNP Lisbon NNP Lish NNP Lisle NNP Liss NNP Lissa NNP List NNP Listed VBN Listen VB Listeners NNS Listenin NN Listening NN Lister NNP Listerine NNP Liston NNP Lita NNP Litchfield NNP Lite NNP Liter NN Literacy NN Literal JJ Literally RB Literary NNP Literature NNP Literaturnaya NNP Lithe JJ Lithell NNP Lithograph NNP Lithox NNP Lithuanian JJ Lithuanians NNPS Litigants NNS Litigation NNP Litman\/Gregory NNP Litowski NNP Litta NNP Littau NNP Littell NNP Little NNP Littleboy NNP Littlefield NNP Littlepage NNP Littleton NNP Littman NNP Litton NNP Litvack NNP Litvinchuk NNP Litz NNP Liu NNP Live NNP Live-In NN Lived VBD Livermore NNP Liverpool NNP Liverpudlians NNPS Livery JJ Lives NNS Livestock NN Living NNP Livingston NNP Livshitz NNP Liz NNP Liza NNP Lizhi NNP Lizt NNP Lizzie NNP Lizzy NNP Llewellyn NNP Llosa NNP Lloyd NNP Lloyds NNP Lmao UH Lo NNP Lo-Jack NNP LoSpam NNP Load NN Loan NNP Loan-loss JJ Loans NNS Loantech NNP Loathing NN Lobar NNP Lobby NNP Lobbying NN Lobbyist NN Lobbyists NNS Lobl NNP Lobo NNP Lobsenz NNP Lobster NN Lobularity NN Local JJ Localism NN Locally RB Locate VB Located VBN Location NNP Lock NNP Lock-Up NN Locke NNP Locked VBN Locker NNP Locker-room NN Lockerbie NNP Lockhart NNP Lockheed NNP Lockian JJ Lockies NNPS Locking VBG Lockman NNP Locks NNP Lockwood NNP Loco NNP Locust NN Lodestar NNP Lodge NNP Lodging NN Lodley NNP Lodowick NNP Loeb NNP Loen NNP Loeser NNP Loesser NNP Loevner NNP Loew NNP Loewe NNP Loewenson NNP Loewenstern NNP Loewi NNP Loews NNP Loewy NNP Loftier JJR Loftus NNP Logan NNP Loggia NNP Logging NN Logic NNP Logica NNP Logically RB Logistics NNP Logsdon NNP Lohman NNP Lohmans NNP Loire NNP Lois NNP Lojack NNP Lok NNP Lokey NNP Lol UH Lola NNP Lolita NNP Lollipops NNS Lolly NNP Lolotte NNP Loma NNP Loman NNP Lomas NNP Lomax NNP Lomb NNP Lombard NNP Lombarde NNP Lombardi NNP Lombardo NNP Lompoc NNP Lond. NNP Londe NNP London NNP London-based JJ London-bred JJ Londonderry NNP Londoner NN Londono NNP Londontowne NNP Lone NNP Loneliness NNP Lonesome JJ Loney NNP Long NNP Long-Term NNP Long-debated JJ Long-distance NN Long-haul JJ Long-lived JJ Long-range JJ Long-term JJ Longer JJR Longer-term JJ Longest NNP Longevity NN Longfellow NNP Longhorn NNP Longhorns NNP Longinotti NNPS Longley NNP Longman NNP Longmont NNP Longshoremen NNS Longstreet NNP Longtime JJ Longue NNP Longview NNP Longwood NNP Lonnie NNP Lonrho NNP Lonsdale NNP Lonski NNP Look VB Looked VBD Looking VBG Lookit VB Lookout NNP Looks VBZ Looky VB Loom NNP Loomans NNP Looming VBG Loomis NNP Loon NNP Loop NNP Loopholes NNS Loose NNP Loosli NNP Lopatnikoff NNP Loper NNP Lopez NNP Lopid NNP Lopukhov NNP Lora NNP Lorain NNP Loraine NNP Loral NNP Loran NNP Lorca NNP Lord NNP Lorde NNP Lords NNPS Lordstown NNP Lorelei NNPS Loren NNP Lorena NNP Lorentz NNP Lorenz NNP Lorenzo NNP Lorex NNP Lori NNP Lorillard NNP Lorimar NNP Lorin NNP Lorincze NNP Lorinda NNP Loring NNP Lorlyn NNP Lorna NNP Lorne NNP Lorrain NNP Lorraine NNP Lortie NNP Los NNP Losec NNP Loser JJ Losers NNS Loses VBZ Losing VBG Loss NN Losses NNS Lost JJ Lot NN Lothario NN Lothson NNP Lotos NNP Lots NNS Lott NNP Lotte NNP Lotteries NNS Lottery NNP Lottie NNP Lotus NNP Lou NNP Louchheim NNP Loud JJ Loudermilk NNP Loudon NNP Loudspeakers NNS Louella NNP Loughlin NNP Loughman NNP Louis NNP Louis-Dreyfus NNP Louis-based JJ Louisa NNP Louise NNP Louisiana NNP Louisiana-Pacific NNP Louisianan NN Louisiane NNP Louisville NNP Lounge NNP Lourie NNP Lousie NNP Lousiness NN Lousy JJ Louvre NNP Love NNP Lovejoy NNP Lovelace NNP Loveless NNP Lovell NNP Lovely NNP Lovenberg NNP Lover NNP Lovering NNP Lovers NNPS Loves VBZ Lovett NNP Loveways NNP Lovie UH Loving NNP Lovingly RB Lovingood NNP Lovington NNP Low NNP Low-Income NNP Low-flying JJ Low-interest-rate JJ Low-paying JJ Lowe NNP Lowell NNP Lowenstein NNP Lowenthal NNP Lower JJR Lower-than-expected JJ Lowery NNP Lown NNP Lowndes NNP Lowry NNP Loy NNP Loyal JJ Loyalist JJ Loyalties NNS Loyalty NN Loyola NNP Lt. NNP Ltd NNP Ltd. NNP Ltee NNP Lu NNP Luang NNP Lubar NNP Lubars NNP Lubberlanders NNS Lubbock NNP Lube NNP Lubell NNP Luber NNP Lubkin NNP Lublin NNP Lubowski NNP Lubriderm NNP Lubrizol NNP Lubyanka NNP Luc NNP Lucas NNP Lucassen NNP Lucca NNP Luce NNP Lucerne NNP Luci NNP Lucia NNP Lucian NNP Luciano NNP Lucie NNP Lucien NNP Lucifer NNP Lucille NNP Lucinda NNP Lucio NNP Lucisano NNP Lucite NNP Lucius NNP Luck NNP Luckily RB Lucky NNP Lucky-Goldstar NNP Lucretia NNP Lucretius NNP Lucullan JJ Lucy NNP Ludcke NNP Ludden NNP Ludie NNP Ludlow NNPS Ludlum NNP Ludmilla NNP Ludwick NNP Ludwig NNP Ludwigshafen NNP Ludwin NNP Luechtefeld NNP Lueger NNP Luehrs NNP Luerssen NNP Luette NNP Lufkin NNP Luft NNP Luftfahrt NNP Lufthansa NNP Luftwaffe NNP Lugar NNP Luger NNP Lugosi NNP Luigi NNS Luis NNP Luisa NNP Luise NNP Lujan NNP Lukas NNP Lukassen NNP Luke NNP Lukens NNP Lukman NNP Luksik NNP Lukuklu NNP Lullaby NN Lullwater NNP Lully NNP Lumber NNP Lumbera NNP Lumex NNP Lumia NNP Lumiere NNP Lumina NNP Lummus NNP Lumpe NNP Lumped VBN Lumpur NNP Lumsden NNP Lumumba NNP Luna NNP Lunch NN Luncheon NNP Lund NNP Lunday NNP Lundberg NNP Lundeen NNP Lundy NNP Luneburg NNP Lung NNP Lung-cancer NN Lunge NNP Lupatkin NNP Lupe NNP Lupel NNP Lupo NNP Lupton NNP Lura NNP Luray NNP Lurcat NNP Lure VBP Lureen NNP Lurgi NNP Lurie NNP Lusaka NNP Lusignan NNP Lusser NNP Lust NNP Lustgarten NNP Luth NNP Luther NNP Lutheran NNP Luthringshausen NNP Luthuli NNP Lutsenko NNP Lutte NNP Lutz NNP Luvs NNPS Lux FW Luxco NNP Luxembourg NNP Luxembourg-based JJ Luxembourg-registered JJ Luxemburg NNP Luxor NNP Luxuries NNP Luxurious JJ Luxury NN Luz NNP Luzon NNP Lvov NNP Lvovna NNP Lyaki NNP Lybrand NNP Lyceum NNP Lycidas NNP Lycra NNP Lydall NNP Lydia NNP Lyford NNP Lying VBG Lyle NNP Lyman NNP Lyme NNP Lyme-disease JJ Lymington NNP Lyn NNP Lynch NNP Lynch-led JJ Lynchburg NNP Lynde NNP Lynden NNP Lyndhurst NNP Lyndon NNP Lynes NNP Lyneses NNP Lynford NNP Lynn NNP Lynne NNP Lynnwood NNP Lynx NNP Lyon NNP Lyondell NNP Lyonnais NNP Lyons NNP Lyphomed NNP Lyric NNP Lyrics NNS Lys NNP Lysle NNP Lysol NNP Lyster NNP Lyttleton NNP Lytton NNP Lyubov NNP M NNP M$ $ M&A NNP M&H NNP M&Ms NNS M'Bow NNP M-1 NNP M-19 NN M-4 NNP M-CSF NNP M-K NNP M-Whatever NNP M-m-m UH M. NNP M.A. NNP M.B.A. NNP M.B.A.s NNPS M.C. NNP M.D NNP M.D. NNP M.D.-speak JJ M.D.C NNP M.D.C. NNP M.D.s NNS M.E. NNP M.Ed NNP M.G. NNP M.I.M. NNP M.I.T.-trained JJ M.J. NNP M.L. NNP M.P. NNP M.R. NNP M.S. NNP M.T. NNP M.W. NNP M2 CD M3 CD M30 NNP M4 NNP M8.7sp NNP MAC NNP MACHINES NNP MACMILLAN NNP MACPOST NNP MACY NNP MADD NNP MAGURNO NNP MAI NNP MAILINGS NNS MAINTENANCE NNP MAITRE'D NNP MAJOR JJ MAKE VB MAKERS NNS MAKES VBZ MAKING VBG MALAISE NNP MAN NNP MANAGEMENT NNP MANAGER NN MANAGERS NNS MANEUVERS NNS MANHATTAN NNP MANUALS NNS MANUFACTURERS NNPS MANUFACTURING NNP MANY JJ MAPCO NNP MARCHED VBD MARCOS NNP MARCUS NNP MARGIN NN MARK NNP MARKET NNP MARKETING NN MARKS NNS MARYLAND NNP MAT NNP MATERIALS NNP MATTEL NNP MAY MD MB NNP MB-339 NNP MBA NN MBAs NNS MBB NNP MBE NNP MBI NNP MBIA NNP MBK NNP MBOs NNPS MC NNP MC68030 NNP MC88200 NNP MCA NNP MCC NNP MCI NNP MCV NNP MCorp NNP MD-11 NNP MD-80 NN MD-80-series NN MD-80s NNS MD-81 NN MD-82s NNPS MD-90 NN MD-90s NNS MD11 NNP MD90 NN MDC NNP MDL-1 NN MDT NNP ME PRP MEA NNP MEASUREX NNP MEATS NNPS MEDIA NNP MEDICINE NNP MEDUSA NNP MEI NNP MEMOS NNS MEN NNS MERCHANTS NNPS MERGER NN MERGING VBG MERRILL NNP MET VBD METALS NNS MEXICAN JJ MEXICO NNP MF NNP MFA NNP MFS NNP MG NNP MGM NNP MGM-UA NNP MGM\ NNP MGM\/UA NNP MH-60K NN MHz NNS MICRO NNP MICROPOLIS NNP MICROSYSTEMS NNP MIDDLEMAN NN MIDLANTIC NNP MIG-1 JJ MIG-1\ JJ MIG-2 JJ MIG-2\ NN MIGHT MD MILEAGE NN MINIMUM-WAGE NN MINING NNP MINISTER NN MINISTER'S NN MINOR JJ MINORITY NN MIPS NNP MIPS-based JJ MIPs NNP MISFIRE NN MISUSE NNP MIServer NNP MIT NNP MITI NNP MJ NNP MK-Ferguson NNP MKI NNP MLD NNP MLPI NNP MLR NNP MLSS NN MLX NNP MMC NNP MMG NNP MMI NNP MMS NNP MNB NNP MNC NNP MO NNP MOB NNP MOHAWK NNP MONEY NN MONITORED VBD MONTHLY JJ MORE JJR MORGAN NNP MORTGAGE NNP MOST JJS MOTOR NNP MOTORISTS NNS MOTORS NNP MOVE NN MOVED VBD MOVES VBZ MP NNP MPD NNP MPH NNP MPI NNP MPl NNP MPs NNS MR NNP MRA NNP MRC NNP MRCA NNP MRI NNP MRI-type JJ MS NNP MS-DOS NNP MSD-200 NNP MSP NNP MSU NNP MSX NNP MSX-run JJ MTCR NNP MTM NNP MTU NNP MTV NNP MUBARAK'S NNP MUMBO NN MUNICIPALS NNS MURDER NN MUST MD MUST-SIGN JJ MUTUAL JJ MV40000 NN MVL NNP MVP NNP MVestment NNP MX NNP MX-6 NNP MX-6s NNPS MX-missile NN MY DT MYERSON NNP MYSTERY NNP M\*A\*S\*H NNP M\/A-Com NNP M\/I NNP Ma NNP Ma'am NNP Maack NNP Maalox NNP Maanen NNP Mabellini NNP Mabon NNP Mac NNP Mac-Laren NNP Mac-Reynolds NNP MacAllister NNP MacAndrews NNP MacArthur NNP MacArthur-Helen NNP MacDonald NNP MacDougall NNP MacDowell NNP MacFarlanes NNP MacGregor NNP MacGregors NNPS MacGyver NNP MacInnis NNP MacIsaacs NNP MacKinnon NNP MacLean NNP MacLeishes NNPS MacLellan NNP MacMillan NNP MacNamara NNP MacNeil-Lehrer NNP MacNeil\ NNP MacNeil\/Lehrer NNP MacPhail NNP MacPherson NNP MacReady NNP MacSharry NNP MacWeek NNP MacWhorter NNP Macao NNP Macare NNP Macari NNP Macaroni NNP Macassar NNP Macaulay NNP Macbeth NNP Maccabee NNP Maccabeus NNP Maccaquano NNP Maccario NNP Macchiarola NNP Mace NNP Macedon NNP Macel NNP Macfadden NNP Macfarlane NNP Mach NN Mach't FW Machado NNP Machelle NNP Macheski NNP Machiavelli NNP Machiavellian JJ Machida NNP Machiguenga NNP Machiguengas NNS Machine NNP Machine-tool JJ Machine-vision JJ Machineries NNP Machinery NNP Machines NNPS Machinist NNP Machinist-union NNP Machinists NNS Macho FW Machold NNP Machon NNP Machos FW Macintosh NNP Mack NNP Mackenzie NNP Mackey NNP Mackinac NNP Mackinack NNP Macklin NNP Macksey NNP Maclaine NNP Maclean NNP Macmillan NNP Macmillan\ NNP Macmillan\/McGraw NNP Macmillan\/McGraw-Hill NNP Macneff NNP Macomber NNP Macon NNP Macquarie NNP MacroChem NNP Macrodantin NNP Macropathological NNP Macropathology NN Macrophages NNS Macwhyte NNP Macy NNP Mad NNP Madagascar NNP Madam NNP Madama NNP Madame NNP Madaripur NNP Maddalena NNP Madden NNP Maddie NNP Madding NNP Maddox NNP Maddry NNP Made VBN Madeira NNP Madeleine NNP Madelon NNP Mademoiselle NNP Madison NNP Madonna NNP Madre NNP Madrid NNP Madrid-based JJ Madrigal NNP Madsen NNP Madson NNP Mae NNP Mae-backed JJ Maecker NNP Maeda NNP Maersk NNP Maestro NNP Maeterlinck NNP Maffei NNP Mafia NNP Mafia-tainted JJ Mag NNP Magadan NNP Magarity NNP Magarrell NNP Magazine NNP Magazines NNS Magdalena NNP Magdalene NNP Maged NNP Magee NNP Magellan NNP Mager NNP Maggart NNP Maggetto NNP Maggie NNP Maggot NNP Magi NNP Magic NNP Magleby NNP Magma NNP Magna NNP Magnascreen NNP Magnatek NNP Magnavox NNP Magnet NNP Magnetic JJ Magnetics NNPS Magnetism NNP Magnier NNP Magnificent JJ Magnin NNP Magnolias NNS Magnum NN Magnums NNS Magnus NNP Magnusson NNP Magog NNP Magoon NNP Magoun NNP Magpie NNP Magruder NNP Magten NNP Maguire NNP Maguires NNPS Magurno NNP Magwitch NNP Mahagonny NNP Mahal NNP Mahal-flavor NNP Mahan NNP Maharashtra NNP Mahathir NNP Mahatma NNP Mahayana NNP Mahayanist NN Mahe NNP Maher NNP Mahfouz NNP Mahler NNP Mahmoud NNP Mahoganny NNP Mahone NNP Mahoney NNP Mahran NNP Mahwah NNP Mahzeer NNP Mai NNP Maid NNP Maiden NNP Maidenform NNP Maidens NNPS Maier NNP Mail NNP Mail-Order JJ Mail-order NN Mailer NNP Mailing NNP Mailings NNS Mailloux NNP Mailson NNP Main NNP Main-d'Oeuvre NNP Maine NNP Mainland NNP Mainliner-Highland NNP Mainly RB Mainstay NN Mainstream NN Maintain VBP Maintaining VBG Maintenance NNP Mainz NNP Maiorana NNP Mais FW Maitland NNP Maitres NNP Maize NNP Maize-Products NNPS Maj. NNP Majdan-Tartarski NNP Majdanek NNP Majestic NNP Majesties NNPS Majesty NNP Major NNP Major-League NNP Majority NNP Makato NNP Make VB Makepeace NNP Maker NN Makers NNPS Makes VBZ Makin NNP Makinac NNP Making VBG Makoto NNP Makro NNP Maksoud NNP Makwah NNP Mal NNP Malabar NNP Malacca NNP Malamud NNP Malapai NNP Malapi NNP Malaria NN Malato NNP Malawi NNP Malay NNP Malay-based JJ Malays NNP Malaysia NNP Malaysian JJ Malaysian-based JJ Malcolm NNP Malcom NNP Malden NNP Maldutis NNP Male JJ Malec NNP Malek NNP Malenkov NNP Males NNPS Malesherbes NNP Mali NNP Malia NNP Malibu NNP Malignant NN Malik NNP Malin NNP Malinovsky NNP Malizia NNP Malknecht NNP Malkovich NNP Mall NNP Mallet-Prevost NNP Mallinckrodt NNP Mallory NNP Malloy NNP Malmesbury NNP Malmo NNP Malmros NNP Malmud NNP Malocclusion NN Malone NNP Maloney NNP Maloof NNP Malott NNP Malpass NNP Malpede NNP Malpractice NN Malraux NNP Malson NNP Malt NNP Malta NNP Maltese NNP Maluf NNP Malvenius NNP Malvern NNP Mama NNP Mamaroneck NNP Mambelli NNP Mambo NNP Mame NNP Mamma NNP Mammograms NNS Man NN Man-Made JJ Mana NNP Manac NNP Manafort NNP Managed VBN Management NNP Management\ JJ Manager NNP Managerial JJ Managers NNS Managing NNP Managua NNP Manaifatturiera NNP Manalapan NNP Manas NNP Manassas NNP Manchester NNP Mancini NNP Mancuso NNP Mandarin NNP Mandate NN Mandel NNP Mandela NNP Mandelbaum NNP Mandell NNP Manderbach NNP Manderscheid NNP Mandhata NNP Mandina NNP Mandle NNP Mando NNP Mandolin NNP Mandom NNP Mandresh NNP Mandy NNP Maneret NNP Manet NNP Maneuvers NNS Manfred NNP Manganese NNP Mangano NNP Manger NNP Manges NNP Mangino NNP Manhattan NNP Manhattan-based JJ Maniago NNP Manic NNP Manifatture NNP Maniffature NNP Manigat NNP Manila NNP Manila-based JJ Manin NNP Manion NNP Manitoba NNP Manitoba-based JJ Manjucri NNP Mankiewicz NNP Mankind NNP Manko NNP Mankowski NNP Manley NNP Manlove NNP Manly NNP Mann NNP Manned NNP Mannerhouse NNP Manners NNP Mannesmann NNP Mannheim NNP Manning NNP Manningham NNP Mannington NNP Mannix NNP Manny NNP Manon NNP Manoplax NNP Manor NNP Manos NNP Manpower NNP Mansfield NNP Mansion NNP Manske NNP Manson NNP Mantegna NNP Mantha NNP Manthey NNP Mantle NNP Mantua NNP Manu NNP Manual JJ Manuel NNP Manuela NNP Manufacture NN Manufactured JJ Manufacturer NNP Manufacturers NNPS Manufacturing NNP Manuscript NNP Manute NNP Manville NNP Many JJ Manya NNP Manzanec NNP Manzanola NNP Manzella NNP Manzi NNP Manzoni NNP Mao NNP Maoist JJ Maoist-style JJ Maoists NNPS Map NNP Mapco NNP Maple NNP Maplecrest NNP Mapplethorpe NNP Maquet NNP Maquila NN Maquilas NNP Mar NNP Mar. NNP MarCor NNP Mara NNP Marantz NNP Marathon NNP Marble NNP Marc NNP Marcel NNP Marcella NNP Marcello NNP Marcellus NNP March NNP Marchand NNP Marche NNP Marchers NNPS Marches NNPS Marchese NNP Marching NNP Marcia NNP Marciano NNP Marcile NNP Marcilio NNP Marcius NNP Marckesano NNP Marcmann NNP Marco NNP Marcom NNP Marconi NNP Marcor NNP Marcos NNP Marcoses NNPS Marcus NNP Marcy NNP Marder NNP Mardi NNP Mardis NNP Mardon NNP Mare NNP Mareb NNP Mareham NNP Marella NNP Marenzio NNP Marer NNP Margaret NNP Margaretville NN Margarito NNP Margaux NNP Marge NNP Margenau NNP Margeotes NNP Margery NNP Margie NNP Margin NN Marginal JJ Margins NNS Margler NNP Margo NNP Margolin NNP Margolis NNP Margret NNP Marguerite NNP Margulies NNP Maria NNP Mariam NNP Marian NNP Mariana NNP Mariano NNP Marico NNP Maricopa NNP Marie NNP Marie-Louise NNP Mariel NNP Marietta NNP Marijuana NN Marilee NNP Marilyn NNP Marin NNP Marina NNP Marinaro NNP Marinas NNS Marine NNP Mariners NNPS Marines NNPS Marino NNP Marinvest NNP Mario NNP Marion NNP Mariotta NNP Maris NNP Marist NNP Maritain NNP Maritime NNP Marjorie NNP Mark NNP Markel NNP Markese NNP Market NNP Market-If-Touched NNP Market-based JJ Market-if-touched JJ Market-leader NN Market-research NN Marketed VBN Marketers NNS Marketing NNP Marketplace NNP Markets NNPS Markey NNP Markham NNP Markoe NNP Markovic NNP Markovitz NNP Markowitz NNP Markrud NNP Marks NNP Marksmanship NN Markus NNP Marla NNP Marlboro NNP Marlboros NNPS Marlborough NNP Marlene NNP Marley NNP Marlin NNP Marlo NNP Marlon NNP Marlow NNP Marlowe NNP Marlys NNP Marmalstein NNP Marmara NNP Marmee NNP Marmi NNP Marmon NNP Marne NNP Marne-la-Vallee NNP Marni NNP Maroc NNP Marocaine NNP Maronite JJ Maronites NNPS Marous NNP Maroy NNP Marques NNP Marquess NNP Marquet NNP Marquette NNP Marquez NNP Marquis NNP Marr NNP Marra NNP Marrakesh NNP Marriage NNP Marrie NNP Married VBN Marrill NNP Marriott NNP Marron NNP Marrow-Tech NNP Marry NNP Mars NNP Marsam NNP Marschalk NNP Marsden NNP Marseillaise NNP Marseilles NNP Marsh NNP Marsha NNP Marshal NNP Marshall NNP Marshalls NNP Marshes NNP Marsicano NNP Marsico NNP Marskmen NNP Marston NNP Mart NNP Martek NNP Martens NNP Martex NNP Martha NNP Marthe NNP Martian NNP Martians NNP Martin NNP Martin-type JJ Martinair NNP Martineau NNP Martinelli NNP Martinez NNP Martini NN Martinique NNP Martinsburg NNP Martinsek NNP Martinsville NNP Martoche NNP Marty NNP Martyn NNP Martyrs NNP Marubeni NNP Marulanda NNP Marum NNP Marunouchi NNP Marushita NNP Maruwa NNP Maruzen NNP Marv NNP Marvellee NNP Marvelon NNP Marvelous JJ Marver NNP Marvin NNP Marvis NNP Marwick NNP Marx NNP Marxism NNP Marxist JJ Marxist-Leninist JJ Marxist-dominated JJ Marxist-leaning NNP Marxists NNPS Mary NNP Maryann NNP Maryanne NNP Maryinsky NN Maryland NNP Marylanders NNPS Marysville NNP Maryville NNP Masaaki NNP Masada NNP Masahiko NNP Masahiro NNP Masaki-Schatz NNP Masami NNP Masaryk NNP Masato NNP Mascarita NNP Mascotte NNP Maser NNP Maserati NNP Masillon NNP Masius NNP Mask NNP Masket NNP Masks VBZ Maslyukov NNP Masnadieri NNP Mason NNP Masonic NNP Masonry NNP Masons NNPS Masque NNP Mass NNP Mass. NNP Mass.-based JJ MassMutual NNP Mass\/Amherst NNP Massa NNP Massachusetts NNP Massachussets NNP Massacre NNP Massacres NNS Massage NN Masse NNP Massell NNP Massenet NNP Massey NNP Massey-Ferguson NNP Massicotte NNP Massimi NNP Massimo NNP Massive JJ Masson NNP Masssachusetts NNP Master NNP MasterCard NNP MasterCards NNS Mastergate NNP Mastering VBG Masterpiece NNP Masterpieces NNPS Masters NNP Masterson NNP Masterworks NNPS Mastro NNP Masu NNP Masuda NNP Masur NNP Matagorda NNP Matais NNP Matamoras NNP Matamoros NNP Matanky NNP Match NNP Matchbook-sized JJ Matchbox NNP Matchett NNP Matching VBG Mateo NNP Mater NNP Material NNP Materialism NN Materials NNPS Mateyo NNP Math NNP Mathavious NNP Mathematical JJ Mathematically RB Mathematics NNP Mather NNP Matheson NNP Mathews NNP Mathewson NNP Mathias NNP Mathilde NNP Mathis NNP Mathues NNP Matilda NNP Matisse NNP Matisses NNPS Matlock NNP Matlowsky NNP Matos NNP Matra NNP Matra-Harris NNP Matrimonial NNP Matritech NNP Matrix NNP Matsing NNP Matson NNP Matsu NNP Matsuda NNP Matsui NNP Matsunaga NNP Matsuo NNP Matsushita NNP Matsushita-made JJ Matsushita-owned JJ Matsuura NNP Matt NNP Mattathias NNP Mattausch NNP Mattei NNP Mattel NNP Matter NN Matters NNP Mattes NNP Matteson NNP Matthew NNP Matthews NNP Matthias NNP Matthies NNP Mattia NNP Mattie NNP Mattis NNP Mattison NNP Mattone NNP Mattox NNP Mattress NNP Mattsson NNP Matunuck NNP Maturities NNS Maturity NN Matuschka NNP Matz NNP Mauch NNP Maude NNP Maugham NNP Maughan NNP Maui NNP Mauldin NNP Maumee NNP Maung NNP Maura NNP Maureen NNP Maurer NNP Maurice NNP Maurier NNP Maurine NNP Mauritania NNP Maurits NNP Maury NNP Mauve-colored JJ Mavis NNP Mawr NNP Max NNP Maxell NNP Maxentius NNP Maxhuette NNP Maxicare NNP Maxim NNP Maxima NNP Maximilian NNP Maximizing VBG Maximum NNP Maxine NNP Maxtor NNP Maxus NNP Maxwell NNP Maxxam NNP May NNP May\ NNP Maya FW Mayan JJ Mayans NNS Maybe RB Maybelline NNP Mayberry NNP Mayer NNP Mayfair NNP Mayfield NNP Mayflower NNP Mayhap RB Mayland NNP Maynard NNP Mayne NNP Maynor NNP Mayo NNP Mayor NNP Mayor-elect NNP Mayor-nominate NNP Mayoral JJ Mayors NNS Mays NNP Maytag NNP Mayumi NNP Maywood NNP Mazda NNP Mazeroski NNP Mazilo NNP Mazowiecki NNP Mazowsze NNP Mazza NNP Mazzera NNP Mazzone NNP Mazzoni NNP Mazzorana NNP Mc NNP McAbee NNP McAfee NNP McAlester NNP McAlinden NNP McAlister NNP McAllen NNP McAllister NNP McAlpine NNP McArthur NNP McArtor NNP McAuley NNP McAuliffe NNP McAvity NNP McBee NNP McBride NNP McCabe NNP McCafferty NNP McCaffrey NNP McCain NNP McCall NNP McCamant NNP McCammon NNP McCann NNP McCann-Erickson NNP McCann-Erikson NNP McCanna NNP McCarran NNP McCarran-Ferguson NNP McCarthy NNP McCarthy-era JJ McCarthyite JJ McCartin NNP McCartney NNP McCarty NNP McCarver NNP McCaskey NNP McCaskill NNP McCaughan NNP McCaughey NNP McCauley NNP McCauliffe NNP McCaw NNP McCay NNP McChesney NNP McChicken NNP McClatchy NNP McClave NNP McClellan NNP McClelland NNP McClements NNP McCleod NNP McClintick NNP McClintock NNP McCloy NNP McClure NNP McCluskey NNP McColl NNP McCollum NNP McColm NNP McCombs NNP McCone NNP McConnell NNP McCord NNP McCormack NNP McCormick NNP McCovey NNP McCoy NNP McCracken NNP McCrady NNP McCraw NNP McCrory NNP McCullers NNP McCulley NNP McCullough NNP McCurdy NNP McCurry NNP McCutchen NNP McDLT NNP McDade NNP McDaniel NNP McDermid NNP McDermott NNP McDonald NNP McDonalds NNP McDonnell NNP McDonough NNP McDougall NNP McDowell NNP McDuffie NNP McEachern NNP McElroy NNP McElvaney NNP McElyee NNP McEnaney NNP McEnany NNP McEnroe NNP McFadden NNP McFall NNP McFarlan NNP McFarland NNP McFee NNP McFeeley NNP McFeely RB McGann NNP McGee NNP McGehee NNP McGeorge NNP McGhie NNP McGill NNP McGillicuddy NNP McGillivray NNP McGinley NNP McGinty NNP McGlade NNP McGlothlin NNP McGlynn NNP McGonagle NNP McGovern NNP McGowan NNP McGrath NNP McGraw NNP McGraw-Hill NNP McGregor NNP McGrevin NNP McGroarty NNP McGruder NNP McGuane NNP McGuigan NNP McGuire NNP McGuirk NNP McGurk NNP McGwire NNP McHenry NNP McInerney NNP McInnes NNP McInroy NNP McIntosh NNP McIntyre NNP McIver NNP McKENZIE NNP McKay NNP McKee NNP McKeever NNP McKellar NNP McKenna NNP McKennon NNP McKenzie NNP McKeon NNP McKeown NNP McKesson NNP McKibben NNP McKid NNP McKim NNP McKinley NNP McKinleyville NNP McKinney NNP McKinnon NNP McKinsey NNP McKinzie NNP McKnight NNP McKusick NNP McLauchlan NNP McLauchlin NNP McLaughlin NNP McLean NNP McLelland NNP McLemore NNP McLendon NNP McLendon-Ebony NNP McLennan NNP McLeod NNP McLish NNP McLoughlin NNP McLuhan NNP McMahon NNP McManus NNP McMaster NNP McMeel NNP McMillen NNP McMillin NNP McMoRan NNP McMullan NNP McMullin NNP McN NNP McNabb NNP McNair NNP McNally NNP McNamar NNP McNamara NNP McNamee NNP McNaughton NNP McNeal NNP McNealy NNP McNear NNP McNeil NNP McNeill NNP McNerney NNP McNichols NNP McPherson NNP McQueen NNP McQuillan NNP McQuown NNP McRae NNP McRaney NNP McRoberts NNP McShane NNP McSorley NNP McToxics NNP McVay NNP McVities NNP McWhinney NNP McWilliams NNP Mcdonald NNP Md NNP Md. NNP Me PRP Me'a NNP Me-210 NNP Mead NNP Meaden NNP Meador NNP Meadow NNP Meadowland NNP Meadows NNP Meager JJ Meagher NNP Meals NNP Mean VB Meana NNP Meaney NNP Meaning NN Meaningful JJ Meanings NNS Means NNP Meantime RB Meanwhile RB Meanwile RB Mears NNP Measure NN Measured VBN Measurement NNP Measurements NNS Measures NNS Measuring VBG Meat NNP Meatheads NNS Meats NNS Mecaniques NNP Mecca NNP Mechanics NNP Mechanicsburg NNP Mechanisms NNPS Mechanix NNP Mechanized VBN Mecholyl NNP Mecklenberg NNP Med-Chemical NNP MedChem NNP Medal NNP Medco NNP Medea NNP Medecine NNP Medellin NNP Medfield NNP Medford NNP Medgyessy NNP Medi-Mail NNP MediVision NNP Media NNP Media-buying NN Medialink NNP Median JJ Mediation NNP Medibank NNP Medicaid NNP Medicaid-covered JJ Medicaid-paid JJ Medical NNP Medical-instrument JJ Medical-supply JJ Medicale NNP Medicare NNP Medicare-approved JJ Medicare-catastrophic-care JJ Medicare-eligible JJ Medici NNPS Medicine NNP Medicines NNP Medicis NNPS Medicus NNP Medieval NNP Mediobanca NNP Meditations NNPS Mediterranean NNP Mediterranean-inspired JJ Mediumistic JJ Medlin NNP Medmenham NNP Mednis NNP Medstone NNP Medtronic NNP Medtronics NNP Medusa NN Medvedev NNP Meech NNP Meehan NNP Meek NNP Meeker NNP Meekison NNP Meese NNP Meet VB Meeting VBG Meetings NNS Meets NNP Meg NNP MegEcon NNP Mega JJ Mega-hits NNS Megamarketing NN Megane NNP Megargel NNP Megarians NNPS Megat NNP Megdal NNP Meggs NNP Meharry NNP Mehitabel NNP Mehl NNP Mehrens NNP Mehta NNP Meidinger NNP Meigher NNP Meils NNP Meinckian NNP Meinders NNP Meineke NNP Meinung FW Meir NNP Meisenheimer NNP Meissner NNP Meister NNP Meistersinger NNP Mekong NNP Mel NNP Melamed NNP Melamine JJ Melancholy JJ Melanesian NNP Melanie NNP Melanto NNP Melbourne NNP Melbourne-based JJ Melcher NNP Melies NNP Melinda NNP Melisande NNP Melissa NNP Mellal NNP Mellanby NNP Mellen NNP Meller NNP Melling NNP Mello NNP Melloan NNP Mellon NNP Mellor NNP Mellow JJ Melodious JJ Melodramatic JJ Melody NNP Melott NNP Melrose NNP Melsungen NNP Melted VBN Meltex NNP Meltnomah NNP Melton NNP Meltzer NNP Melville NNP Melvin NNP Melvyn NNP Melzi NNP Member NN Members NNS Membership NNP Mementoes NNS Memoir NN Memoirs NNP Memorex NNP Memorial NNP Memorials NNP Memories NNPS Memory NN Memotec NNP Memphis NNP Men NNS Menagerie NNP Menahem NNP Menas NNP Mencius NNP Mencken NNP Mendell NNP Mendelsohn NNP Mendelson NNP Mendelssohn NNP Menderes NNP Mendes NNP Mendez NNP Mendoza NNP Menelaus NNP Menell NNP Menem NNP Menendez NNP Menenendez NNP Menet NNP Menfolk NNS Mengistu NNP Mengitsu NNP Menilmontant NNP Meninas NNP Menlo NNP Mennen NNP Mennis NNP Mennonite JJ Mennonites NNPS Menomonee NNP Menshikov NNP Ment NNP Mental NNP Mentality NN Menton NNP Mentor NNP Mentum NNP Mentz NNP Menu NNP Menuhin NNP Menuhin-Amadeus NNP Menzel NNP Mephistopheles NNP Meps NNP MeraBank NNP Merabank NNP Merapi NNP Merc NNP Mercantile NNP Mercantilists NNS Merce NNP Merced NNP Mercedes NNP Mercedes-Benz NNP Mercedes-Benzes NNPS Mercenary NN Mercer NNP Mercer-Meidinger-Hansen NNP Mercers NNPS Merchandise NNP Merchandising NNP Merchant NNP Merchants NNP MerchantsBank NNP Mercier NNP Merciful JJ Mercifully RB Merck NNP Mercury NNP Mercy NNP Meredith NNP Merely RB Mergens NNP Merger NN Mergers NNPS Merhige NNP Meriden NNP Meridian NNP Merieux NNP Merieux-Connaught NNP Merigan NNP Merighi NNP Merill NNP Merion NNP Merit NNP Merited JJ Meritor NNP Merits NNS Meriwether NNP Merkel NNP Merksamer NNP Merkur NNP Merkurs NNPS Merle NNP Merleau-Ponty NNP Merlis NNP Merlo NNP Merner NNP Merola NNP Merom NNP Merrell NNP Merriam-Webster NNP Merrick NNP Merrill NNP Merrill-Lynch NNP Merrimac NNP Merrimack NNP Merritt NNP Merritt-Chapman NNP Merry NNP Merry-Go-Round NNP Merry-go-round NNP Merryman NNP Mersa NNP Mertle NNP Merton NNP Merv NNP Mervin NNP Mervyn NNP Meryl NNP Merz NNP Mesa NNP Mesaba NNP Mescalero NNP Meselson NNP Meshulam NNP Mesirov NNP Mesnil NNP Meson NNP Mess NN Messa FW Message NN Messaggero NNP Messelt NNP Messenger NNP Messengers NNPS Messerschmitt NN Messerschmitt-Boelkow NNP Messerschmitt-Boelkow-Blohm NNP Messerschmitt-Bolkow NNP Messiaen NNP Messiah NNP Messina NNP Messinesi NNP Messing VBG Messinger NNP Messner NNP Messrs NNPS Messrs. NNPS Mesta NNP Met NNP MetWest NNP Meta NNP Metabolite NN Metal NNP Metall NNP Metallgesellschaft NNP Metallurgical NNP Metals NNP Metamorphose NNP Metamorphosis NN Metamucil NNP Metaphysics NNS Metatrace NNP Metcalf NNP Meteorological NNP Methanol NN Method NN Methodism NNP Methodist NNP Methodists NNPS Methods NNS Methuselah NNP Methuselahs NNPS Methyl NN Methylene NN Metier NNP Metrecal NNP Metric NNP Metrically RB Metro NNP Metro-Goldwyn-Mayer NNP MetroCorp NNP Metrocorp NNP Metromedia NNP Metromedia-ITT NNP Metronic NNP Metronome NNP Metroplex NNP Metropolian NNP Metropolis NNP Metropolitan NNP Metruh NNP Mets NNP Metschan NNP Metter NNP Metz NNP Metzenbaum NNP Metzenbaums NNPS Metzler NNP Meurer NNP Meurons NNS Mevacor NNP Mevalotin NN Mexicali NNP Mexican JJ Mexican-food JJ Mexicana NNP Mexicanos NNP Mexicans NNPS Mexico NNP Mexico-United NNP Mexico-based JJ Mexico-watchers NNS Meyer NNP Meyerbeer NNP Meyers NNP Meyerson NNP Meyle NNP Meynell NNP Meyner NNP Meyohas NNP Mezzanine NNP Mezzogiorno NNP Mfg. NNP Mfume NNP Mi NNP MiG-23 NNP MiG-23BN NN MiG-26 NNP MiG-29 NNP MiG-29s NNS MiGs NNPS Mia NNP Miami NNP Miami-Madrid NNP Miami-based JJ Miantonomi NNP Micawber NNP Mice NNS Micelles NNS Micelli NNP Mich NNP Mich. NNP Mich.-based JJ Micha NNP Michael NNP Michaelcheck NNP Michaels NNP Michaelson NNP Michel NNP Michel-Etienne NNP Michelangelo NNP Michelangelos NNPS Michele NNP Michelin NNP Michelin\ NNP Michelle NNP Michelman NNP Michelob NNP Michels NNP Michelson NNP Michigan NNP Michigan-based JJ Michilimackinac NNP Michio NNP Mick NNP Mickelberry NNP Mickey NNP Mickie NNP Micro NNP Micro-Economics NNPS MicroAge NNP MicroBilt NNP MicroGeneSys NNP Microamerica NNP Microbilt NNP Microbiological NNP Microbiology NNP Microchannel NNP Microcom NNP Microdyne NNP Microelectronics NNPS Microlog NNP Micron NNP Micronic NNP Micronics NNP Micronite NN Micronyx NNP Microorganisms NNS Microphones NNS Micropolis NNP Microprocessor NNP Microscopes NNS Microscopic JJ Microscopically RB Microsoft NNP Microsoft-Apple NNP Microsystems NNPS Microwave NNP Microwaves NNS Mid NNP Mid-America NNP Mid-Atlantic NN Mid-Century NNP Mid-Continent NNP Mid-State NNP Mid-sized JJ Midas NNP Midco NNP Middenstandsbank NNP Middle NNP Middle-Eastern JJ Middle-South NNP Middle-aged JJ Middle-class JJ Middlebury NNP Middlefield NNP Middleman NN Middleness NN Middlesex NNP Middletown NNP Mideast NNP Mideastern JJ Midge NNP Midgetman NNP Midi NNP Midland NNP Midlantic NNP Midler NNP Midmorning NN Midnight NNP Midshipman NNP Midsized JJ Midvale NNP Midway NNP Midwesco NNP Midwest NNP Midwestern JJ Midwesterners NNS Midwood NNP Miert NN Mifepristone NNP Mifflin NNP Mig NN Might MD Mighty NNP Miglia NNP Migliorino NNP Mignanelli NNP Mignon NNP Mignott NNP Migrant NNP Migs NNS Miguel NNP Mihalek NNP Mihaly NNP Mij NNP Mijbil NNP Mikado NNP Mike NNP Mikeen NNP Mikhail NNP Mikie NNP Miklos NNP Mikoyan NNP Mikulich NNP Mikulski NNP Mil-Spec NNP Milacron NNP Milan NNP Milan-based JJ Milano NNP Milanoff NNP Milbank NNP Milbankes NNPS Milbauer NNP Milberg NNP Milburn NNP Milcote NNP Mildner NNP Mile NNP Mileage NN Milenoff NNP Miles NNP Milford NNP Milgrim NNP Milhaud NNP Militant JJ Military NNP Militia NNS Milk NN Milka NNP Milkaukee NNP Milken NNP Milkens NNPS Milko NNP Milky NNP Mill NNP Millard NNP Millay NNP Millbrae NNP Millburn NNP Mille NNP Milledgeville NNP Millen NNP Millenarianism NN Millenbruch NNP Millennium NN Miller NNP Miller-Studds NNP Millers NNPS Millicent NNP Millicom NNP Millie NNP Milling NNP Milling-Stanley NNP Million CD Million-dollar JJ Millions NNS Millipore NNP Millis NNP Millkens NNP Millo NNP Mills NNP Millstein NNP Millstone NNP Milman NNP Milne NNP Milos NNP Milpitas NNP Milquetoasts NNS Milstar NNP Milstein NNP Milt NNP Milties NNP Milton NNP Miltonic JJ Milunovich NNP Milwaukee NNP Milwaukee-based JJ Mimesis NN Mimi NNP Mimieux NNP MinHa NNP Minato-Mirai NNP Mind VB Mindanao NNP Minden NNP Mindlin NNP Minds NNPS Mindscape NNP Mindy NNP Mine NNP Minella NNP Mineola NNP Miner NNP Minera NNP Mineral NNP Mineralogies NNPS Mineralogy NNP Minerals NNPS Minero NNP Miners NNP Minerva NNP Mines NNPS Mineworkers NNPS Ming NNP Mingo NNP Mingus NNP Minh NNP MiniScribe NNP MiniSport NNP Minicar JJ Minikes NNP Minimum NNP Mining NNP MinisPort NNP Miniscribe NNP Minister NNP Ministers NNPS Ministries NNP Ministry NNP Minitruck NN Miniver NNP Minkow NNP Minks NNP Minn NNP Minn. NNP Minn.-based JJ Minna NNP Minneapolis NNP Minneapolis-St NNP Minneapolis-based JJ Minnelli NNP Minnery NNP Minnesota NNP Minnesotan NNP Minnesotans NNPS Minnetonka NNP Minnett NNP Minnie NNP Minns NNP Minny NNP Minoan-Mycenaean NNP Minolta NNP Minor NNP Minorco NNP Minority NNP Minors NNS Minoru NNP Minoso NNP Minot NNP Minpeco NNP Minpeco-Manufacturers NNPS Minsk NNP Minster NNP Mint NNP Mintel NNP Minter NNP Mints NNS Mintz NNP Minuses NNS Minute NNP Minuteman NNP Minutemen NNPS Minutes NNPS Minwax NNP Mio NNP Mips NNP Mira NNP Mirabella NNP Mirabello NNP Miracle NNP Miraculously RB Miraflores NNP Mirage NNP Miranda NNP Mirante NNP Mired NNP Mirek NNP Mirella NNP Miriam NNP Miriani NNP Miringoff NNP Miro NNP Miron NNP Mironenko NNP Mirror NNP Mirsky NNP Mis-ter NNP Misa NNP Misanthrope NN Misawa NNP Misbegotten NNP Miscellaneous JJ Miscellany NNP Mischa NNP Misconceptions NNS Misdemeanors NNS Miser NNP Miserables FW Misery NN Mises NNP Mishelevka NNP Mishkin NNP Misinformation NN Miss NNP Miss. NNP Missa NNP Missail NNP Misses NNPS Missett NNP Missile NNP Missiles NNP Missing JJ Mission NNP Missionary JJ Missions NNP Mississippi NNP Mississippian NNP Mississippians NNS Missoula NNP Missouri NNP Missouri-Illinois NNP Missy NNP Mist NNP Mistake NNP Mister NNP Mistsubishi NNP Misubishi NNP Misunderstanding VBG Mita NNP Mitch NNP Mitchel NNP Mitchell NNP Mitchells NNP Mite NNP Mitofksy NNP Mitofsky NNP Mitre NNP Mitropoulos NNP Mitsotakis NNP Mitsu NNP Mitsubishi NNP Mitsui NNP Mitsukoshi NNP Mitsuo NNP Mitsuoka NNP Mitsuru NNP Mittag NNP Mitterrand NNP Mityukh NNP Mitzel NNP Miullo NNP Mix NNP Mix-Up NN Mixed NNP Mixte NNP Mixtec JJ Miyagi NNP Miyata NNP Miyazaki NNP Miyoshi NNP Mizell NNP Mizuno NNP Mlangeni NNP Mlle NNP Mme NNP Mmes NNPS Mmes. NNPS Mmm UH Mmmm UH Mnemosyne NNP Mnouchkine NNP Mnuchin NNP Mo NNP Mo. NNP Mo.-based JJ Mob NN MobiTel NNP Mobil NNP Mobile NNP Mobilfunk NNP Mobilia NNP Mobilization NNP Mobs NNS Mobutu NNP Moby NNP Moccasin NNP Mochida NNP Mocking NNP Mockler NNP Mockowiczes NNPS Mode NNP Model NN Modeling NNP Modell NNP Models NNS Moderate JJ Moderating VBG Modern NNP Modest JJ Modestly RB Modesto NNP Modifications NNS Modigliani NNP Modrall NNP Modrow NNP Modular NNP Modzelewski NNP Moe NNP Moehn NNP Moeller NNP Moertel NNP Moet NNP Moet-Hennessy NNP Moffett NNP Moffitt NNP Mogadishu NNP Mogan NNP Mogavero NNP Mogg NNP Mogul NNP Mohamad NNP Mohamed NNP Mohammad NNP Mohammed NNP Mohammedanism NNP Mohan NNP Mohandas NNP Mohasco NNP Mohawk NNP Mohlere NNP Moineau NNP Moines NNP Moines-based JJ Moira NNP Moise NNP Moises NNP Moiseyev NNP Moiseyeva NNP Moisture NN Mojave NNP Mokaba NNP Mokae NNP Mokhiber NNP Molard NNP Mold NN Moldavia NNP Moldavian NNP Molding NN Mole NNP Molecular NNP Moleculon NNP Molesworth NNP Moliere NNP Molinari NNP Molinaro NNP Moline NNP Moll NNP Moller NNP Mollica NNP Mollie NNP Molloy NNP Mollusks NNS Molly NNP Moloch NNP Molokai NNP Molotov NNP Molson NNP Molten JJ Moluccas NNP Molvar NNP Mom NN Momentarily RB Moments NNS Momentum NN Momma NNP Mommor NNP Mommy NNP Momoyama NNP Mon NNP Mon-Columbia NNP Mon-Fay NNP Mon-Goddess NNP Mon-Khmer NNP Mona NNP Monaco NNP Monagan NNP Monahan NNP Monarch NNP Monarque FW Monastery NNP Monchecourt NNP Mondale NNP Monday NNP Monday's NNP Monday-Friday NNP Monday-morning JJ Mondays NNPS Monde NNP Mondonville NNP Mondrian NNP Mondry NNP Mondschein NNP Monel NNP Monet NNP Monetary NNP Monets NNPS Monetta NNP Monex NNP Money NNP Money-fund NN Money-making JJ Money-market NN Money-saving JJ Moneyed NNP Moneyletter NNP Mongan NNP Mongi NNP Mongolia NNP Monica NNP Monier NNP Monieson NNP Monilia NN Monitor NNP Monitoring NN Monitors NNP Moniuszko NNP Monk NNP Monkey NNP Monmouth NNP Mono-unsaturated JJ Monocite NNP Monoclonal JJ Monogamy NN Monogram NNP Monopolies NNPS Monopoly NN Monorail NNP Monroe NNP Monsanto NNP Monsieur NNP Monsky NNP Monster NN Mont NNP Mont. NNP Montagu NNP Montaigne NNP Montana NNP Montbrial NNP Monte NNP Monteath NNP Montedision NN Montedison NNP Monteith NNP Montenegrin NNP Monterey NNP Montero NNP Monterrey NNP Monterrey-based JJ Montesano NNP Monteverdi NNP Montevideo NNP Montfaucon NNP Montgolfier NNP Montgomery NNP Montgoris NNP Month NNP Monthly NNP Months NNS Monticciolo NNP Monticello NNP Montle NNP Montmartre NNP Montpelier NNP Montrachet NNP Montreal NNP Montreal-Toronto JJ Montreal-based JJ Montreux NNP Montrose NNP Montserrat NNP Montvale NNP Monty NNP Monument NNP Mony NNP Mood NNP Moods NNP Moody NNP Moog NNP Moon NNP Moon-faced JJ Moonachie NNP Moonan NNP Mooney NNP Moonie NN Moonies NNPS Moonlighting NN Moore NNP Moorhead NNP Moorish JJ Moors NNPS Moos NNP Moosilauke NNP Mor-ee-air-teeeee NNP Moraine NNP Moral NNP Morale NN Morals NNS Moran NNP Morarji NNP Moravcsik NNP Moravian NNP Morbid JJ Morcott NNP More RBR More-detailed JJR Moreau NNP Morehouse NNP Moreira NNP Morel NNP Moreland NNP Morelli NNP Moreno NNP Moreover RB Moreton NNP Morever RB Morey NNP Morfey NNP Morgan NNP Morgantown NNP Morgart NNP Morgenthau NNP Morgenzon NNP Mori NNP Moriarty NNP Morikawa NNP Morimoto NNP Morin NNP Morinaga NNP Morino NNP Morishita NNP Morison NNP Morita NNP Moritz NNP Morley NNP Mormon NNP Morning NNP MorningStar NNP Morningstar NNP Moroccan NNP Morocco NNP Moross NNP Morover JJR Morozov NNP Morphophonemic JJ Morrell NNP Morrill NNP Morris NNP Morrison NNP Morrissey NNP Morristown NNP Morrow NNP Morse NNP Mort NNP Mortage NNP Mortality NN Mortals NNS Mortar NNP Mortars NNS Mortgage NNP Mortgage-Backed JJ Mortgage-backed JJ Mortimer NNP Morton NNP Morvillo NNP Mory NNP Mosbacher NNP Moscom NNP Moscone NNP Moscow NNP Moscow-Shannon JJ Moscow-allied JJ Moscow-based JJ Mose NNP Moselle NNP Moses NNP Mosettig NNP Moshe NNP Mosher NNP Mosk NNP Moskovskaya NNP Mosle NNP Moslem NNP Moslems NNPS Mosnier NN Mosque NNP Moss NNP Mossberg JJ Mossman NNP Mossoviet NNP Most JJS Most-Favored JJS Most-Remarkable JJS Most-recommended JJ Mostly RB Motel NNP Mother NNP Mothers NNPS Motherwell NNP Motif NN Motion NNP Motion-picture JJ Motivated VBN Motive NN Motley NNP Moto NNP Motor NNP Motorcars NNPS Motorcycle NNP Motorcycles NNS Motoren NNP Motoren-und NNP Motorfair NNP Motorists NNS Motorized NNP Motorola NNP Motors NNPS Motown NNP Motoyuki NNP Motsoaledi NNP Mott NNP Mottice NNP Mottram NNP Mottus NNP Mouchet NNP Moudy NNP Mough NN Moulin NNP Moulinex NNP Moulins NNP Moulton NNP Moultons NNPS Mound NNP Moune NNP Mount NNP Mountain NNP Mountain-Hi NNP MountainBikes NNPS Mountaineer NNP Mountaineering NNP Mountains NNPS Mounted NNP Mourning VBG Mouse NNP Mousie NNP Mouth NNP Mouvement NNP Movable JJ Movats NNP Move VB Movement NNP Movements NNS Moves NNS Movie NNP Movieline NNP Movies NNP Movietime\/Alfalfa NNP Moving VBG Moxley NNP Moynihan NNP Mozambiquans NNS Mozambique NNP Mozart NNP Mr NNP Mr. NNP Mrad NN Mrads NNS Mrs NNP Mrs. NNP Ms NNP Ms. NNP Msec. NNS Mt NNP Mt. NNP Mts. NNP Muammar NNP Mubarak NNP Much RB Muck NNP Mud NNP Mudd NNP Mudge NNP Mudugno NNP Mueller NNP Muench NNP Muenchen NNP Muenchmeyer NNP Mueslix NNP Muffin NNP Muffler NNP Muffling VBG Mugabe NNP Muggeridge NNP Muhammad NNP Muir NNP Mukachevo NNP Mukherjee NNP Muki NNP Mulberry NNP Mulcahy NNP Muldoon NNP Mulford NNP Mulhouse NNP Mullaney NNP Mullen NNP Mullenax NNP Mullendore NNP Muller NNP Mullerin NNP Mulligan NNP Mulligatawny NNP Mullins NNP Mulloy NNP Mulroney NNP Mulrooney NNP Multi-Income NNP Multi-employer JJ MultiMedia NNP Multiflow NNP Multifoods NNP Multilateral NNP Multimate NNP Multimedia NNP Multinational JJ Multiphastic NNP Multiple NNP Multiples NNPS Multiplexers NNS Multiplication NN Multiply VB Multiplying VBG Multnomah NNP Mulvoy NNP Mumford NNP Munchen NNP Munching VBG Muncie NNP Muncie-Peru NNP Muncipal NNP Muncke NNP Mundo NNP Mundt NNP Munger NNP Muni JJ Muniak NNP Munich NNP Munich-based JJ Municipal JJ Municipalities NNS Municipals NNS Muniz NNP Munk NNP Munoz NNP Munro NNP Munroe NNP Munsell NNP Munster NNP Munsters NNPS Muong NNP Murai NNP Murakami NNP Muramatsu NNP Murasawa NNP Murat NNP Murata NNP Muratore NNP Murder NN Murderers NNS Murderous JJ Murders NNS Murdoch NNP Murfreesboro NNP Murguia NNP Murilo NNP Murjani NNP Murkland NNP Murmann NNP Murphy NNP Murray NNP Murrin NNP Murrow NNP Murtaugh NNP Murville NNP Muscat NNP Muscatine NNP Muscle NN Muscolina NNP Muscovite NNP Muscovites NNS Muscovy NNP Muscular NNP Muse NNP Musee NNP Muses NNP Museum NNP Museums NNS Mushkat NNP Mushr NN Musial NNP Music NNP Musica NNP Musical NNP Musicale NNP Musically RB Musician NN Musicians NNS Musil NNP Musique NNP Muskegon NNP Muskoka NNP Muslim NNP Muslims NNPS Musmanno NNP Muss NNP Mussett NNP Mussolini NNP Mussolini-like JJ Mussolinis NNPS Mussorgsky NNP Must MD Mustafa NNP Mustain NNP Mustang NNP Mustangs NNP Mustard NN Mutant NNP Mutants NNS Mutchin NNP Mutinies NNS Mutsch NNP Mutton NNP Mutual NNP Mutual-fund JJ Mutuelles NNP Muynak NNP Muzak NNP Muzo NNP Muzyka NNP Muzzling JJ My PRP$ Mycenae NNP Myers NNP Myerson NNP Mylan NNP Mylanta NNP Mylar NNP Mynheer NNP Myra NNP Myrdal NNP Myron NNP Myrtle NNP Myself NNP Mysteries NNP Mysterious JJ Mystery NN Myth NNP Mythical JJ Mythological JJ Mytton NNP Myung NNP N NN N'Djamena NNP N-W NNP N-acetylcysteine NNP N-no UH N. NNP N.A NN N.A. NNP N.C NNP N.C. NNP N.C.-based JJ N.D NNP N.D. NNP N.E. NNP N.F. NNP N.H NNP N.H. NNP N.J NNP N.J. NNP N.J.-based JJ N.L. NNP N.M NNP N.M. NNP N.M.-based JJ N.R. NNP N.V NNP N.V. NNP N.Y NNP N.Y. NNP N.Y.-based JJ N.Y.U. NNP N/NNP.Y.C. NNP NAACP NNP NAB NNP NAC NNP NAEBM NNP NAFTA NNP NAHB NNP NAIR NNP NAIRO NNP NALU NNP NAM NNP NAR NNP NAREB NNP NAS NNP NASA NNP NASA-Air NNP NASAA NNP NASD NNP NASDA NNP NASDAQ NNP NATION'S NN NATIONAL NNP NATIONWIDE NNP NATO NNP NATO-Warsaw NNP NAV:22.15 NN NB NNP NBA NNP NBC NNP NBC-Sears NNP NBC-TV NNP NBC-owned JJ NBI NNP NBS NNP NC NNP NCAA NNP NCAAs NNS NCB NNP NCI NNP NCNB NNP NCR NNP NCTA NNP NDN NNP NE NNP NEA NNP NEARLY JJ NEATNESS NN NEC NNP NEC-compatible JJ NED NNP NEEDS NNS NEG NNP NEKOOSA NNP NESB NNP NET JJ NETWORK NN NEVER RB NEW JJ NEWHALL NNP NEWS NN NEWSPAPERS NNS NEWT NN NFA NNP NFC NNP NFIB NNP NFL NNP NGL NNP NH NNP NHI NNP NHL NNP NHTSA NNP NIAGARA NNP NICHOLS NNP NIGHT NN NIH NNP NIH-appointed JJ NJ NNP NKF NNP NKK NNP NL NNP NL. NNP NLD NNP NLO NNP NLRB NNP NLRDA NNP NMB NNP NME NNP NMR NNP NMS NNP NMTBA NNP NO DT NOC NNP NOP NN NORAD NNP NORC NNP NORDSTROM NNP NORIEGA NNP NORIEGA'S NNP NORTH NNP NORTHEAST NN NORTHERN NNP NOT RB NOT-GUILTY JJ NOTE NN NOTES NNS NOVA NNP NOVEMBER NNP NOW RB NP NNP NP-27 NNP NPD NNP NPL NNP NRA NNP NRC NNP NRDC NNP NRL NNP NRLDA NNP NRM NNP NS NNP NS-X NNP NSA NNP NSBU NNP NSC NNP NSM NNP NSPA NNP NT&SA NNP NT&SA-run JJ NTC NNP NTG NNP NTSB NNP NTT NNP NU NNP NUCLEAR NN NUM NNP NUMBER NN NUMBERS NNS NURSING NN NUS NNP NV NNP NW NNP NWA NNP NY NNP NYC NNP NYSE NNP NYU NNP NZ$ $ NZI NNP Nabisco NNP Nabokov NNP Nac NNP Nacchio NNP Nachman NNP Nachmany NNP Nacht FW Nacion NNP Nacional NNP Naclerio NNP Nadeau NNP Nadelmann NNP Nader NNP Naderite NNP|JJ Naderites NNS Nadine NNP Nadir NNP Nadja NNP Nae UH Naess NNP Naftalis NNP Naga NNPS Nagamo NNP Naganawa NNP Nagano NNP Nagasaki NNP Nagayama NNP Nagel NNP Nagelvoort NNP Nagin NNP Nagle NNP Nagorno-Karabakh NNP Nagorski NNP Nagoya NNP Nagrin NNP Naguib NNP Nagy NNP NagyAntal NNP Nagykanizsa NNP Nagymaros NNP Nahas NNP Nail NNP Naiman NNP Nairne NNP Nairobi NNP Naive JJ Najarian NNP Naji NNP Nakagawa NNP Nakajima NNP Nakamura NNP Nakasone NNP Nakayasu NNP Nakazato NNP Naked JJ Nakhamkin NNP Nakoma NNP Naktong NNP Nalbone NNP Nalcor NNP Nalick NNP Nam NNP Name NN Name-dropping NN Named VBN Nameless NNP Namely RB Names NNS Namib NNP Namibia NNP Namibian JJ Namibian-independence NN Nan NNP Nana NNP Nancy NNP Nando NNP Nanjing NNP Nanofilm NNP Nanook NNP Nantucket NNP Naomi NNP Nap NNP Napa NNP Naperville NNP Naphta NNP Napkin NN Napkins NNS Naples NNP Naples-born JJ Napoleon NNP Napoleonic JJ Napolitan NNP Nara NNP Narberth NNP Narbonne NNP Narcotics NNPS Naren NNP Narita NNP Narragansett NNP Narrative JJ Narrow JJ Narrow-gauged JJ Narrowing VBG Narrowly NNP Narver NNP Nary NNP Nasdaq NNP Nasdaq-traded JJ Nasdaq\/National NNP Nash NNP Nashua NNP Nashville NNP Nasional NNP Nassau NNP Nassau-Suffolk NNP Nasser NNP Nast NNP Naster NNP Nastro NNP Nasty JJ Nat NNP NatWest NNP Natalia NNP Natalie NNP Natcher NNP Natchez NNP Nate NNP Nath NNP Nathan NNP Nathan-Bond NNP Nathanael NNP Nathaniel NNP Natick NNP Nation NN National NNP Nationalcar NNP Nationale NNP Nationalism NN Nationalist JJ Nationalistic JJ Nationalists NNPS Nationalized VBN Nationally RB Nations NNPS Nations-monitored JJ Nationwide NNP Native NNP Natrona NNP Nattily RB Natural NNP Naturalization NNP Naturally RB Naturals NNPS Naturam FW Nature NNP Natwest NNP Nauman NNP Naumberg NNP Nausea NN Nautilus NNP Navajo NNP Navajos NNPS Naval NNP Navcom NNP NavforJapan NNP Navigation NNP Navin NNP Navistar NNP Navona NNP Navy NNP Naw UH Nawal NNP Nawbo NNP Naxos NNP Nazal NNP Nazar NNP Nazarene NNP Nazario NNP Nazarova NNP Nazem NNP Nazer NNP Nazi NNP Nazi-minded JJ Nazi-occupied JJ Nazia NNP Nazionale NNP Nazis NNPS Nazism NNP Nazzella NNP Ndola NNP Ne NNP Neal NNP Neanderthal JJ Neanderthals NNS Neapolitan NNP Near IN Near-Term RB Near-term JJ Nearby RB Nearing VBG Nearly RB Nearness NN Neas NNP Neave NNP Neb NNP Neb. NNP Neb.-based JJ Neblett NNP Nebraska NNP Nec FW Necci NNP Necesarily NNP Necessary JJ Necessity NN Neck NNP Necklace NNP Ned NNP Nedelman NNP Nedelya NNP Nederland NNP Nederlanden NNP Nederlander NNP Nederlandsche NNP Nederlandse NNP Nedlloyd NNP Neece NNP Need VB Needham NNP Needing VBG Needless JJ Needs NNS Needy NNP Neesen NNP Neff NNP Negas NNP Negative JJ Neglect VBP Neglected NNP Neglecting VBG Negligence NN Negmegan NNP Negotiable JJ Negotiating VBG Negotiation NN Negotiations NNS Negotiators NNS Negro NNP Negro-appeal JJ Negroes NNPS Negroid JJ Negus NNP Nehf NNP Nehru NNP Neibart NNP Neidl NNP Neighbor NN Neihart NNP Neil NNP Neill NNP Neils NNP Neilson NNP Neiman NNP Neiman-Marcus NNP Neinas NNP Neisse NNP Neisse-Oder NNP Neither CC Neitzbohr NNP Nekoosa NNP Nell NNP Nellcor NNP Nellie NNP Nellies NNPS Nelms NNP Nelson NNP Nelson-Atkins NNP Nemesis NNP Nemeth NNP Nennius NNP Neo-Classicism NNP Neo-Classicists NNPS Neo-Ecclesiasticism NNP Neo-Jazz NNP Neo-Paganism NNP Neo-Popularism NNP Neo-Romanticism NNP Neoax NNP Neodata NNP Neoliberal JJ Neon NNP Nepal NNP Nepalese NNPS Neptune NNP Nerds NNS Nerien NNP Nerio NNP Nernst NNP Nero NNP Nerves NNS Nervous JJ Nervousness NN Nesbit NNP Nesbitt NNP Nesconset NNP Nesi NNP Nessel NNP Nessen NNP Nest NNP Neste NNP Nestle NNP Nestled VBN Nestor NNP Net JJ NetFrame NNP NetWare NNP Netherland NNP Netherlands NNP Netherlands-based JJ Netsch NNP Nett NNP Nettleton NNP Netto NNP Netty NNP Network NNP Network-access JJ Networks NNP Neubauer NNP Neuberger NNP Neue NNP Neuharth NNP Neuharths NNPS Neuhaus NNP Neumann NNP Neurenschatz NNP Neurex NNP Neurological NNP Neurosciences NNP Neurotron NNP Neusteter NNP Neusteters NNP Neutral NNP Nev NNP Nev. NNP Nevada NNP Nevah NNP Neveh NNP Never RB Nevermind VB Neversink NNP Nevertheless RB Neveu NNP Neville NNP Nevsky NNP New NNP New-England NNP New-Waver NNP New-York NNP New-construction NN New-home JJ New-issue JJ NewVector NNP Newall NNP Newark NNP Newarker NNP Newberg NNP Newbery NNP Newbiggin NNP Newbold NNP Newbridge NNP Newburger NNP Newburgh NNP Newbury NNP Newburyport NNP Newcastle NNP Newcomb NNP Newcomers NNS Newell NNP Newells NNPS Newer JJR Newest JJS Newfoundland NNP Newgate NNP Newhart NNP Newhouse NNP Newitt NNP Newkirk NNP Newly RB Newlywed NNP Newman NNP Newmark NNP Newmont NNP Newport NNP Newport-based JJ Newquist NNP News NNP News-American NNP NewsEdge NNP NewsHour NNP News\/Retrieval NNP Newsday NNP Newshour NN Newsletter NNP Newsnight NNP Newsom NNP Newsote NNP Newspaper NNP Newspapermen NNS Newspapers NNPS Newspeak NNP Newsprint NN Newsreel NNP Newsstands NNS Newsweek NNP Newswire NNP Newt NNP Newton NNP Newton-John NNP Newtonian JJ Newtonville NNP Newtown NNP Newts NNP Next JJ Next-Most-Remarkable JJ Nezhari NNP Ng NNP Nghe NNP Ngo NNP Ngoc NNP Nguyen NNP Niagara NNP Niarchos NNP Nibble NNP Nibelungenlied NNP Nicandra NNP Nicaragua NNP Nicaraguan JJ Nicaraguans NNPS Nicastro NNP Niccolo NNP Nice JJ Niche-itis NN Nichias NNP Nichido NNP Nichol NNP Nicholas NNP Nichols NNP Nicholson NNP Nichtige NN Niciporuk NNP Nick NNP Nickel-iron JJ Nickelodeon NNP Nickelson NNP Nickerson NNP Nicki NNP Nicklaus NNP Nickle NNP Nickles NNP Nickless NNP Nico NNP Nicodemus NNP Nicol NNP Nicolas NNP Nicole NNP Nicolo NNP Nicolson NNP Nicos NNP Nicosia NNP Nidal NNP Niebuhr NNP Niedermaier NNP Niels NNP Nielsen NNP Nielson NNP Niem NNP Nieman NNP Niepce NNP Nietzsche NNP Nigel NNP Niger NNP Nigeria NNP Nigga NN Nigger NN Niggertown NNP Night NNP Nightclubs NNPS Nightingale NN Nightlife NN Nightline NNP Nightly NNP Nightmare NNP Nights NNP Nightshade NNP Nightwatch NNP Nihon NNP Nijinska NNP Nijinsky NN Nika NNP Nike NNP Nike-Zeus NNP Nikes NNPS Nikita NNP Nikitas NNP Nikka NNP Nikkei NNP Nikkhah NNP Nikko NNP Nikolai NNP Nikolais NNP Nikon NNP Nikonov NNP Nikons NNPS Nile NNP Niles NNP Nilsen NNP Nilson NNP Nilsson NNP Nimbus-7 NNP Nimitz NNP Nina NNP Nine CD Nine-month JJ Nines NNPS Nineteen CD Nineteen-sixty NNP Nineteenth JJ Nineteenth-century JJ Nineties NNPS Ninety CD Ninety-Eight NNP Ninety-Two NNP Ninety-nine CD Nineveh NNP Ninja NNP Nino NNP Ninomiya NNP Nintendo NNP Nintendos NNPS Ninth NNP Niobe VB Nipe NNP Nipp NNP Nippon NNP Nipponese JJ Nippur NN Nipsco NNP Nisbet NNP Nischwitz NNP Nishi NNP Nishiki NNP Nishima NNP Nishimo NNP Nishimura NNP Nishizuka NNP Nissan NNP Nissans NNPS Nissei NNP Nisshin NNP Nisshinbo NNP Nissho NNP Nissho-Iwai NNP Nissin NNP Nite NNP Nitrogen NN Nitsuko NNP Nitto NNP Nitze NNP Niva NNP Niven NNP Nixdorf NNP Nixon NNP Nizer NNP Njust NNP Nkrumah NNP No DT No-Cal NNP No-Name NNP No-Smoking NNP No-Tobacco NNP No-o-o UH No. NN No.3 JJ Noah NNP Noam NNP Nob NNP Nobel NNP Nobels NNPS Noble NNP Noblesville NNP Nobody NN Nobrega NNP Nobuto NNP Nobuya NNP Nobuyuki NNP Noces NNP Noctiluca NN Nocturne NNP Nod NNP Nodding VBG Noel NNP Noffsinger NNP Nofzinger NNP Nogales NNP Nogaret NNP Nogay NNP Nogol NNP Nokia NNP Nokomis NNP Nolan NNP Nolen NNP Noll NNP Nomani NNP Nomenklatura NN Nomi NNP Nomia NNP Nomination NN Nominations NNS Nomisma NNP Nomo NNP Nomura NNP Non FW Non-Catholics NNS Non-Dissonant NNP Non-God UH Non-Proliferation NNP Non-Smokers NNP Non-`` `` Non-actors NNS Non-bank JJ Non-callable JJ Non-cosmetic JJ Non-executive JJ Non-interest JJ Non-lawyers NNS Non-money JJ Non-performing JJ Non-residential JJ Non-smoking NN Non-steel JJ NonProfit NNP Nonbuilding JJ Nonconformist NNP Nonconformists NNS None NN Nonelectrical JJ Nonetheless RB Nonfat NNP Nonfinancial JJ Nonmagical NNP Nonperformers NNS Nonperforming JJ Nonprofit JJ Nonrecurring JJ Nonresident JJ Nonresidential JJ Nonsense NN Nonsexist NNP Nonsmokers NNP Nonspecific JJ Nonunion NNP Noon NNP Noonan NNP Noonday NNP Nope UH Nor CC Nora NNP Norall NNP Noranda NNP Norberg NNP Norbert NNP Norberto NNP Norborne NNP Norcen NNP Norcross NNP Nord NNP Norddeutsche NNP Nordic JJ Nordine NNP Nordmann NNP Nordson NNP Nordstrom NNP Nordyke NNP Norell NNP Norex NNP Norfolk NNP Norge NNP Norgle NNP Nori NNP Noriega NNP Noriegan JJ Noriegas NNS Norimasa NNP Norio NNP Norm NNP Norma NNP Normal JJ Normalize VB Normally RB Norman NNP Normandy NNP Norment NNP Norms NNS Normura NNP Norodom NNP Norris NNP Norris-LaGuardia NNP Norristown NNP Norsemen NNPS Norsk NNP Norske NNP Norte NNP Nortek NNP Nortex NNP North NNP North-Central JJ North-Rhine NNP Northampton NNP Northamptonshire NNP Northbrook NNP Northeast NNP Northeastern JJ Northeners NNP Northern NNP Northerner NN Northerners NNPS Northfield NNP Northgate NNP Northington NNP Northland NN Northlich NNP Northridge NNP Northrop NNP Northrup NNP Norths NNPS Northumberland NN Northview NNP Northwest NNP Northwest-Skinner NNP Northwestern NNP Northwood NNP Northy NNP Norton NNP Norville NNP Norwalk NNP Norway NNP Norwegian JJ Norwegians NNPS Norwell NNP Norwest NNP Norwich NNP Norwick NNP Norwitz NNP Norwood NNP Nos. NNS Noschese NNP Nosebleed NN Noskova NNP Nostalgia NN Nostalgic JJ Nostradamus NNP Not RB Not-Held NNP Not-held JJ Notable NNP Notably RB Notarius NNP Note VB Notebooks NNP Noted JJ Notes NNS Noteware NNP Nothing NN Notice NN Noticias NNP Noticing VBG Noting VBG Notitia NNS Notre NNP Notre-Dame NNP Nott NNP Notte NNP Notwithstanding IN Noufou NNP Nouns NNS Nourbakhsh NNP Nourishing JJ Nouveaux NNP Nouvelle NNP Nouvelle-Heloise NNP Nov NNP Nov. NNP Nov.30 CD Nova NNP Novacor NNP Novak NNP Novalta NNP Novametrix NNP Novato NNP Novaya NNP Novell NNP Novello NNP November NNP November-December NNP November\ JJ Novick NNP Novo NNP Novo\ NNP Novosibirsk NNP Novosti NNP Now RB Nowacki NNP Nowadays RB Nowak NNP Nowhere RB Noxell NNP Noxema NNP Noxzema NNP Noyes NNP Noyon-la-Sainte NNP Nozze FW Nu NNP Nu-Med NNP Nu-West NNP Nucci NNP Nuclear NNP Nuclepore NNP Nucor NNP Nucor-like JJ Nude NNP Nuell NNP Nueva NNP Nuf RB Nugent NNP Nugget NNP Nuggets NNPS Nuit NNP Nujoma NNP Numb JJ Number NN Numbers NNS Numeral NNP Numerous JJ Nummi NNP Nunes NNP Nunn NNP Nunn-McCurdy NNP Nuns NNPS Nunzio NNP Nuovo NNP Nuremberg NNP Nureyev NNP Nurse NNP Nurseries NNPS Nursery NNP Nurses NNS Nursing NNP Nusbaum NNP Nussbaum NNP Nut NNP Nutcracker NNP Nutley NNP Nutmeg NNP NutraSweet NNP Nutrasweet NNP Nutrition NNP Nutritional NNP Nutritionists NNS Nutritious JJ Nutt NNP Nuttall NNP Nutting NNP Nuttle NNP Nuveen NNP Nux NN Nuys NNP Nuzhet NNP Nyack NNP Nyberg NNP Nyckeln NNP Nye NNP Nyers NNP Nyheter NNP Nyiregyhaza NNP Nykvist NNP Nylev NNP Nymagic NNP Nymark NNP Nymex NNP Nymphomaniacs NNS Nynex NNP Nyunt NNP O NNP O&Y NNP O'Banion NNP O'Boyle NNP O'Brian NNP O'Brien NNP O'Brien's NNP O'Casey NNP O'Clock NNP O'Connell NNP O'Connor NNP O'Connor's NNP O'Donnell NNP O'Donnell's NNP O'Donnell-Usen NNP O'Donovan NNP O'Dwyer NNP O'Dwyer's NNP O'Dwyers NNPS O'Gara NNP O'Grady NNP O'Hanlon NNP O'Hara NNP O'Hare NNP O'Herron NNP O'Keefe NNP O'Kicki NNP O'Lakes NNP O'Linn NNP O'Linn's NNP O'Loughlin NNP O'Malley NNP O'Meara NNP O'Melveny NNP O'Neil NNP O'Neill NNP O'Neill's NNP O'Reilly NNP O'Rourke NNP O'Shea NNP O'Sullivan NNP O'Toole NNP O*/NNP&M NN O*/NNP&Y NN O-B NNP O. NNP O.B. NNP O.E. NNP O.E.C.D. NNP O.G. NNP O.J. NNP O.K UH O.K. UH O.N. NNP O.P. NNP O.S.K. NNP O.T. NNP OAS NNP OBE NNP OBERMAIER NNP OBTS NNP OBrion NNP OCC NNP OCC-member JJ OCCIDENTAL NNP OCN-PPL NNP OCR NNP ODDITIES NNS ODI NNP OEC NNP OECD NNP OEL NNP OEP NNP OEX NNP OF IN OFF IN OFFENSIVE JJ OFFERED NNP OFFICER NN OFFICES NNS OFFICIALS NNS OGDEN NNP OGURA NNP OH NN OHIO NNP OIF NNP OIL NNP OK JJ OK. UH OKC NNP OKI NNP OKing NNP OLE NNP OLYMPIA NNP OMB NNP OME NNP OMG UH ON IN ONCE RB ONE CD ONE-DAY JJ ONEIDA NNP ONEZIE NNP OOH NNP OPA-LOCKA NNP OPEC NNP OPEN JJ OPPENHEIMER NNP OPTIONS NNS OR CC ORACLE NNP ORANGE NN ORDER NNP ORDERED VBN ORDERS VBZ ORGAN-TRANSPLANT JJ ORGANIZED VBN ORTEGA NNP OSHA NNP OST NNP OS\ NNP OS\/2 NNP OTC NNP OTC-market JJ OTS NNP OUR PRP$ OUSTED VBN OUT IN OUTLOOK NNP OUTRAGE NN OUTSIDE JJ OVER IN OVERHAUL NN OVERSEAS JJ OWI NNP OWNER NNP Oafid NNP Oak NNP Oakar NNP Oakbrook NNP Oakes NNP Oakhurst NNP Oakland NNP Oakland-Alameda NNP Oakland-Berkeley NNP Oaklanders NNPS Oakmont NNP Oaks NNP Oakwood NNP Oana NNP Oases NNS Oasis NNP Oat NNP Oatnut NNP Oats NNPS Ob-Irtysh NNP Obama NNP Obedience NN Obelisk NNP Oberhausen NNP Oberkfell NNP Oberlin NNP Obermaier NNP Oberman NNP Obernauer NNP Oberreit NNP Oberstar NNP Oberweis NNP Obesity NN Obey NNP Obeying VBG Obispo NNP Object NN Objections NNS Objects NNS Obligations NNS Obligingly RB Observations NNS Observatory NNP Observer NNP Observers NNS Observing VBG Obsolescence NNP Obstacles NNS Obviously RB Occasional JJ Occasionally RB Occident NNP Occidental NNP Occupation NNP Occupational NNP Occupational-Urgent NNP Oce NNP Oce-Van NNP Ocean NNP Oceana NNP Oceania NNP Oceanic NNP Oceanography NNP Oceans NNS Oceanside NNP Ochoa NNP Ochs NNP Ochsenschlager NNP Oct NNP Oct. NNP Oct.13 NNP Octave NNP Octavia NNP Octel NNP Octet NNP October NNP October-December NNP October-March NNP Octobers NNPS Octobrists NNPS Octopus NNP Octoroon NNP Oculon NNP Oczakov NNP Odakyu NNP Odd NNP Odd-lot JJ Odd-year JJ Oddly RB Odds NNS Oddy NNP Odean NNP Odell NNP Odeon NNP Oder NNP Odessa NNP Odetics NNP Odilo NNP Odom NNP Odors NNP Odysseus NNP Odyssey NNP Oedipal JJ Oedipus NNP Oei NNP Oerlikon-Buehrle NNP Oersted NNP Oeschger NNP Oesterreichische NNP Oestreich NNP Of IN Off IN Off-Broadway NNP Off-Road NNP Off-Track NNP Off-flavor NN Off-price JJ Off-season JJ Offenbach NNP Offenses NNS Offensive NNP Offer VB Offered NNP Offering NN Offers VBZ Office NNP Office. NNP Officer NNP Officers NNS Offices NNS Official JJ Officially RB Officials NNS Officielle NNP Officine NNP Offsetting VBG Offshore NNP Offutt NNP Often RB Ogallala NNP Ogden NNP Ogilvy NNP Ogilvyspeak NNP Ogisu NNP Oglethorpe NNP Ogonyok NNP Ogunjobi NNP Ogura NNP Oh UH Oh-Hyun NNP Oh-the-pain-of-it UH Ohara NNP Ohbayashi NNP Oher NNP Ohga NNP Ohio NNP Ohio-based JJ Ohio-chartered JJ Ohioan NNP Ohioans NNPS Ohira NNP Ohkuma NNP Ohlman NNP Ohls NNP Ohmae NNP Oi NNP Oil NNP Oil-field NN Oil-related JJ Oil-tool NN Oilcloth NN Oilers NNP Oilfields NNS Oilgram NNP Oils NNS Oilwell NNP Oistrakh NNP Oji NNP Ojibwa NNP Ok NNP Oka NNP Okada NNP Okamoto NNP Okasan NNP Okay UH Okayama NNP Okies NNP Okinawa NNP Okla NNP Okla. NNP Oklahoma NNP Oklahoman NNP Okobank NNP Okrent NNP Okuma NNP Okura NNP Ol JJ Olaf NNP Olathe NNP Olatunji NNP Olav NNP Olay NNP Olayan NNP Old NNP Old-House NNP Old-time JJ Old-timers NNS Olde NNP Oldenburg NNP Older JJR Oldham NNP Olds NNP Oldsmobile NNP Ole JJ Olea NNP Olean NNP Oleanders NNS Olechowski NNP Oleg NNP Olenegorsk NNP Olerichs NNPS Olestra NN Oley NNP Olga NNP Olgivanna NNP Olick NNP Olin NNP Olissa NNP Olivares NNP Olive NNP Oliveira NNP Oliver NNP Olivet NNP Olivetti NNP Olivia NNP Olivier NNP Ollari NNP Olle NNP Ollie NNP Olney NNP Olof NNP Olsen NNP Olshan NNP Olson NNP Olsson NNP Olszewski NNP Olszewskiof NNP Olvey NNP Olympia NNP Olympian JJ Olympic NNP Olympics NNPS Olympus NN Omaha NNP Oman NNP Omani JJ Omar NNP Omega NNP OmegaSource NNP Omg UH Omission NN Omni NNP OmniBank NNP Omnibank NNP Omnibus NN Omnicare NNP Omnicom NNP Omnicorp NNP Omron NNP Omsk NNP On IN On-Broadway NNP On-Line NNP On-Site NNP On-Target NNP On-to-Spokane NNP Onan NNP Once RB Once-only JJ OncoScint NNP Oncogen NNP Oncogene NNP Oncogenes NNS Oncology NNP Oncor NNP Oncotech NNP Ondaatje NNP One CD One-Cancels-The-Other NNP One-Horse JJ One-Leg NNP One-Step NNP One-armed JJ One-day JJ One-fourth NN One-inch JJ One-third NN One-time JJ One-year NNP Onegin NNP Oneida NNP Oneita NNP Oneok NNP Ones NNP Oneupmanship NN Onex NNP Ong NNP Onidi NNP Onleh RB Online NNP Onlookers NNS Only RB Onni NNP Onno NNP Ono NNP Onondaga NNP Onset NN Onsets NNS Onstage RB Ont. NNP Ontario NNP Oooo UH Oops UH Oopsie NNP Oopsie-Cola NNP Op. NNP Opa-Locka NNP Opaque JJ Opax NNP Opel NNP Opelika NNP Open NNP Open-adoption NN Open-end JJ Open-flame JJ Opening VBG Opera NNP Operating NN Operating-profit NN Operating-system JJ Operation NNP Operational JJ Operationally RB Operations NNP Operators NNP Opere NNP Ophthalmic NNP Opinion NNP Opinions NNS Opositora NNP Oppen NNP Oppenheim NNP Oppenheimer NNP Opponents NNS Opportunities NNS Opportunity NNP Opposed VBN Opposite IN Opposition NN Oppressive JJ Oprah NNP Optek NNP Optic-Electronic NNP Optical NNP Optical-storage JJ Optics NNP Optima NNP Optimism NN Optimists NNS Option NNP Options NNPS Optique NNP Opus NNP Or CC Oracle NNP Oral NNP Oran NNP Orange NNP Orangeburg NNP Oranges NNPS Oranjemund NNP Oratory NNP Orban NNP Orbe NNP Orben NNP Orbis NNP Orbital NNP Orbiting NNP Orchard NNP Orchesis NNP Orchester NNP Orchestra NNP Orchestral NNP Orchestration NNP Orchestre NNP Orcutt NNP Ord NNP Orden NNP Order NNP Order-Entry NN Ordered VBD Orders NNS Ordinance NNP Ordinaries NNPS Ordinarily RB Ordinary JJ Ordnance NNP Ore NNP Ore. NNP Ore.-based JJ Oregon NNP Oregonian NNP Oregonians NNPS Orejuela NNP Orel NNP Orem NNP Oremland NNP Orens NNP Oreos NNPS Oresme NNP Oresteia NNP Orestes NNP Orfeo NNP Org NNP Organ NN Organic NNP Organification NN Organisation NNP Organization NNP Organizational JJ Organizations NNP Organized NNP Organizers NNS Organizing NNP Orgotein NNP Oriani NNP Orient NNP Oriental JJ Origen NNP Origin NN Original NNP Originally RB Originals NNS Origins NNP Orin NNP Orinoco NNP Oriole NNP Orioles NNP Orion NNP Orissa NNP Orix NNP Orkem NNP Orkney NNP Orlando NNP Orleans NNP Orleans-based JJ Orlick NNP Orlowski NNP Orly NNP Ormat NNP Ormoc NNP Ormsby NNP Ormstedt NNP Ornament NN Ornelas NNP Ornette NNP Ornithological NNP Ornstein NNP Orondo NNP Oros NNP Orpheus NNP Orphic JJ Orr NNP Orrick NNP Orrie NNP Orrin NNP Orso NNP Orson NNP Ortega NNP Ortegas NNPS Ortho NNP Orthodontic JJ Orthodox NNP Orthodoxy NNP Orthopedic NNP Ortiz NNP Orvil NNP Orville NNP Orvis NNP Orwell NNP Orwellian JJ Ory NNP Oryx NNP Osaka NNP Osake NNP Osamu NNP Osbert NNP Osborn NNP Osborne NNP Oscar NNP Oshinsky NNP Oshkosh NNP Oshry NNP Osipenko NNP Osis NNP Oskar NNP Osler NNP Oslo NNP Osnos NNP Oso NNP Osprey NNP Osram NNP Osric NNP Ossad NNP Ostentatious JJ Osterman NNP Osterreichische NNP Ostlandske NNP Ostpolitik NNP Ostrager NNP Ostrander NNP Ostriches NNS Ostro NNP Ostroff NNP Ostrovsky NNP Ostrowsky NNP Oswald NNP Oswego NNP Otaiba NNP Otero NNP Othello NNP Other JJ Others NNS Otherwise RB Othon NNP Otis NNP Otradovec NNP Otros NNP Otsego NNP Ottauquechee NNP Ottawa NNP Ottaway NNP Otte NNP Otterlo NNP Ottermole NNP Otto NNP Ottoman NNP Ottoni NNP Oubati NNP Ouedraogo NNP Ouellette NNP Ought MD Ouija NNP Oum NNP Our PRP$ Ouray NNP Ours PRP Ouse NNP Ousley NNP Out IN Outboard NNP Outbreaks NNS Outcome NN Outdoor JJ Outer NNP Outfielder NNP Outflows NNS Outgoing JJ Outhwaite NNP Outing NNP Outlays NNS Outlet NNP Outline NN Outlook NN Outlooks NNS Outokumpu NNP Outpatient NN Outperform NNP Outplacement NN Output NN Outputs NNS Outraged JJ Outrageous NNP Outreach NNP Outright JJ Outrunning VBG Outside IN Outsiders NNS Outstanding JJ Outsville NNP Outwardly RB Ouzo NN Oval NNP Ovalle NNP Ovcharenko NNP Ovens NNS Over IN Over-50 JJ Over-achievers NNS Over-chilling NN Over-the-counter JJ Overall RB Overbuilding VBG Overbuilt JJ Overextension NN Overfall NNP Overfunding VBG Overhanging VBG Overhead NN Overland NNP Overlords NNPS Overly RB Overnight RB Overnite NNP Overpriced NNP Overreach NNP Overreacting VBG Overriding NN Overseas NNP Overseeing VBG Overseers NNPS Oversight NNP Oversized JJ Overstreet NNP Overt JJ Overtega NNP Overtones NNS Overture NNP Overturf NNP Overvalued JJ Overweight JJ Overwhelmed VBN Overwhelming JJ Ovitz NNP Ovonic NNP Owasso NNP Owego NNP Owen NNP Owens NNP Owens-Corning NNP Owens-Ilinois NNP Owens-Illinois NNP Owing RB Owings NNP Owl NN Owls NNS Own JJ Owned NNP Owner NN Owners NNS Ownership NNP Owning VBG Oxford NNP Oxfordshire NNP Oxidation NN Oxley NNP Oxnard NNP Oxy NNP Oxygen NN Oxytetracycline NN Oy NNP Oyajima NNP Oyster NNP Oz NNP Ozagen NNP Ozagenians NNS Ozal NNP Ozanne NNP Ozark NNP Ozarks NNPS Ozick NNP Ozon NN Ozone NN Ozzie NNP P NN P&C NNP P&G NNP P&S NNP P*/NNP&G NN P-11 NN P-20 NN P-3 NN P-5-39 NNP P-7A NNP P-E NNP P. NNP P.-T.A. NNP P.A. NN P.D.I. NNP P.GA NNP P.I. NN P.J. NNP P.L. NNP P.M. RB P.R. JJ P.S NN P.m NN P350 CD PA NNP PABA NN PAC NNP PACIFIC NNP PACS NNS PACs NNPS PAN NNP PANDA NNP PANEL NN PANHANDLER NN PAP NNP PAPER NN PAPERS NNS PARENT NN PARENTAL JJ PARIS NNP PARK NN PARKER NNP PARS NNP PARS-Datas NNP PARTICIPATED VBD PARTNER NN PARTNERS NNS PARTNERSHIP NNP PARTS NN PARTY NNP PASOK NNP PATCO NNP PATH NNP PATIENCE NN PATOIS NNP PATRON NNP PATTON NNP PAUL NNP PAY NN PAYMENTS NNS PAYS VBZ PBS NNP PBX NNP PC NN PC-magazine JJ PC9801LX5C NNP PCBs NNS PCM NNP PCP NNP PCS NNP PCST NNP PCs NNS PDI NNP PDN NNP PDT NNP PEDAL NN PENALTY NNP PENCIL NNP PENCILS NNS PENNEY NNP PENSION NN PENTAGON NNP PEOPLE NNS PERFORMANCE NN PERIOD NN PERIPATETIC JJ PERKS NNS PERMANENTE NNP PERSUADING VB PETROLEUM NNP PETS NNS PF NNP PFC NNP PG&E NNP PG-13 NN PGH NNP PGM NNP PHH NNP PHILADELPHIA NNP PHOBIA NN PHOENIX NNP PHONE NNP PHOTOGRAPH NN PHP NNP PHS NNP PHYSICIANS NNS PIC NNP PIERCE NNP PIK NNP PILGRIM NNP PILING VBG PINDLING NNP PIPELINE NNP PIPELINES NNPS PIR NNP PITCH NNP PKbanken NNP PL-480 NN PLACE NNP PLAN NN PLANS VBZ PLANTS NNS PLASTIC NN PLAYER NNP PLC NNP PLC. NNP PLEA NN PLEASURE NN PLO NNP PLO-backed JJ PLODDERS NNS PLUNGED VBD PM NNP PMR NNP PMs NNS PNC NNP POINTS NNPS POLICE NN POLICY NNP POLITICAL JJ POLITICS NNS PONT NNP POOCH NN POP NNP POPs NNS PORTFOLIO NN PORTING VBG POST-TRIAL NNP POTABLES NNS POUNDED VBD POW NN POWER NNP POWERS NNS POWs NNS PPG NNP PPI NNP PPP NNP PQ NN PR NNP PR-wise JJ PRA NNP PRATT NNP PRC NNP PRECIOUS JJ PREDAWN NN PRESIDENT NN PRI NNP PRICES NNS PRICIEST JJS PRIME JJ PRIMERICA NNP PRINCE NNP PRISON NN PRISON-SHOP NNP PRIVILEGE NN PRO FW PRO-CHOICE JJ PROCEEDINGS NNS PROCTER NNP PRODUCT NN PRODUCTS NNS PROFESSOR NN PROFIT NN PROFIT-SHARING NN PROFITS NNS PROFITT NNP PROGRAM NN PROMISE NN PROMOTION NNP PROPERTIES NNPS PROPERTY NN PROPOSAL NN PROPOSALS NNS PROPOSE VB PROPOSED VBD PROSECUTIONS NNS PROSECUTOR NNP PROSECUTORS NNS PROSPECTORS NNS PROSPECTS NNS PROSPER VBP PS NNP PSA NNP PSE NNP PS\ NN PS\/2 NNP PTA NNP PTC NNP PTL NNP PUBLIC JJ PUBLICITY NN PUBLISHING NN PUNITIVE JJ PUTS NNPS PVC NNP PW-2000 NN PW-4000 NN PW4000 NNP PW4060 NNP PWA NNP PWA-owned JJ PX NNP P\ NNP P\/E NNP Pa NNP Pa. NNP Pa.-based JJ Paata NNP Pablo NNP Pabor NNP Pabst NNP Pac NNP Pace NNP Paced VBN Pacemakers NNPS Pacheco NNP Pachelbel NNP Pachinko NN Pacholik NNP Pachyderms NNPS PacifiCare NNP Pacific NNP Pacific-listed JJ Pacify VB Pacitti NNP Pack VB Package NN Packaged-goods NNS Packages NNS Packaging NNP Packard NNP Packards NNPS Packer NNP Packers NNP Packet NN Packing NNP Packs NNPS Packwood NNP Packwood-Roth NNP Pact NNP Pacta FW Pacwest NNP Paddle VB Paddock NNP Paddy NNP Padget NNP Padgett NNP Padovan NNP Padre NNP Padres NNPS Pae NNP Paestum NNP Paev NNP Pagan NNP Paganini NNS Pagans NNS Page NNP PageAmerica NNP PageMaker NNP Pageant NNP Pageants NNS Pagemaker NNP Pages NNPS Paget NNP Paging NNP Paglieri NNP Pagliuca NNP Pagni NNP Pagnol NNP Pagones NNP Pagong NNP Pagurian NNP Pah NNP Paid VBN Pain NN Paine NNP PaineWebber NNP PaineWebber-involved JJ Painful JJ Paini NNP Pains NNS Paint NN Painter NNP Painters NNS Painting VBG Paintings NNS Paints NNP Paisley NNP Paix NNP Pak NNP Pakistan NNP Pakistani JJ Pakistanis NNPS Pal NNP Palace NNP Palaces NNPS Palache NNP Palacio NNP Paladin NNP Palamara NNP Palash NNP Palasts NNPS Palatine NNP Palazzo NNP Palcy NNP Pale NNP Palermo NNP Palestine NNP Palestine-General NNP Palestinian JJ Palestinians NNPS Paley NNP Palfrey NNP Palicka NNP Palisades NNP Pall NNP Palladian NNP Palladio NNP Pallavicini NNP Pallo NNP Palm NNP Palma NNP Palmatier NNP Palmdale NNP Palme NNP Palmer NNP Palmero NNP Palmetto NNP Palmingiano NNP Palmolive NNP Palms NNPS Palmtops NNS Palo NNP Palomar NNP Palomino NNP Palos NNP Palsy NNP Paluck NNP Palumbo NNP Pam NNP Pamasu NNP Pamela NNP Pamorex NNP Pamour NNP Pampa NNP Pampel NNP Pampers NNPS Pamphili NNP Pamplin NNP Pan NNP Pan-Alberta NNP Pan-American JJ PanAm NNP Panam NNP Panama NNP Panama-based JJ Panama-incorporated JJ Panamanian JJ Panamanians NNS Panasonic NNP Pancho NNP Pancoast NNP Pancrazio NNP Panda NNP Pandelli NNP Pandick NNP Pandora NNP Panel NNP Panelli NNP Panels NNS Panet-Raymond NNP Panetta NNP Panglossian JJ Panhandle NNP Panic NN Panicked JJ Panisse NNP Pankki NNP Pankowski NNP Pankyo NNP Panmunjom NNP Panny NNP Panorama NNP Panoz NNP Pansies NNS Pantages NNS Pantas NNP Pantasaph NNP Pantasote NNP Pantera NNP Pantheon NNP Panther NNP Panting VBG Pantyhose NN Panyotis NNP Panza NNP Panzhihua NNP Pao NNP Paolo NNP Paos NNPS Pap-pap-pap-hey UH Papa NNP Papa-san NNP Papal JJ Papandreou NNP Papanicolaou NN Papasan NNP Paper NNP Paperboard NNP Paperhouse NNP Paperin NNP Papermate NNP Papermils NNP Papers NNP Paperweight NNP Paperwork NNP Papetti NNP Papp NNP Pappas NNP Pappy NNP Paprika NN Papua NNP Papua-New NNP Paquin NNP Par NNP Paracchini NNP Parade NNP Paradise NNP Paradox NNP Paradoxically RB Paragon NNP Paragould NNP Paragraph NNP Parallel JJ Paramedics NNS Parametric NNP Paramount NNP Paramount-MCA JJ Paramus NNP Paranormal NNP Parapsychology NNP Paraquat NN Paray NNP Parc NNP Parcel NNP Pardo NNP Pardon NN Pardus NNP Paredon NN Paree NNP Parella NNP Parent NNP Parental JJ Parenthesis NN Parenthood NNP Parents NNS Pareo NNP Parfums NNP Paribas NNP Parichy NNP Parichy-Hamm NNP Parioli NNP Paris NNP Paris-based JJ Parish NNP Parisian NNP Parisians NNPS Parisien NNP Parisina NNP Parity NN Parizeau NNP Park NNP Park-affiliated JJ Parke NNP Parke-Davis NNP Parker NNP Parkersburg NNP Parkhaji NNP Parkhouse NNP Parkhurst NNP Parkinson NNP Parkland NNP Parkos NNP Parks NNP Parkshore NNP Parkway NNP Parkways NNP Parliament NNP Parliamentarians NNP Parliamentary JJ Parmer NNP Parodi NNP Parodis NNS Parretti NNP Parrillo NNP Parrino NNP Parris NNP Parrot NNP Parrott NNP Parry NNP Parsifal NNP Parsippany NNP Parsley NNP Parson NNP Parsons NNP Parsow NNP Part NN Part-time JJ Partecipazioni NNP Parthenon NNP Parti NNP Participants NNS Participating VBG Participation NN Particular JJ Particularly RB Parties NNS Partisan NNP Partisans NNS Partisanship NN Partlow NNP Partly RB Partner NNP Partners NNPS Partnership NNP Partnerships NNS Parts NNS Party NNP Party. NNP Parvenu NNP Pas FW Pasadena NNP Pasatieri NNP Pascagoula NNP Pascal NNP Pascale NNP Pascataqua NNP Paschal NNP Paschall NNP Paschi NNP Pascual NNP Pascutto NNP Pasha NNP Pasley NNP Paso NNP Pasoan NNP Pasquale NNP Pass NNP Passage NN Passaic NNP Passaic-Clifton NNP Passat NNP Passavant NNP Passed VBN Passenger NN Passengers NNS Passing VBG Passion NNP Passive NNP Passos NNP Passport NN Past JJ Pasta NNP Paster NNP Pastern NNP Pasternack NNP Pasternak NNP Pasterns NNPS Pasteur NNP Pastiche NN Pastor NNP Pasture NNP Pastures NNS Pasztor NNP Pat NNP Patagonia NNP Patagonians NNPS Patch NNP Patchen NNP Pate NNP Patel NNP Patent NNP Patentees NNS Patents NNP Pater NNP Paternelle NNP Paterson NNP Path NNP Pathans NNPS Pathe NNP Pathet NNP Pathology NNP Pati FW Patience NN Patiently RB Patients NNS Patil NNP Patman NNP Patmore NNP Patriarca NNP Patriarch NNP Patriarchy NNP Patrice NNP Patricelli NNP Patricia NNP Patrician NN Patricio NNP Patrick NNP Patricof NNP Patrimony NNP Patriot NNP Patriots NNPS Patrol NNP Patrolman NNP Patrolmen NNP Patronage NN Patsy NNP Patten NNP Pattenden NNP Pattern NN Patterns NNS Patterson NNP Patti NNP Pattison NNP Pattisson NNP Patton NNP Patty NNP Paul NNP Paul-Minneapolis NNP Paula NNP Paulah NNP Pauletta NNP Pauley NNP Pauleys NNPS Pauline NNP Pauling NNP Paulo NNP Paulus NNP Paus'l NN Pausing VBG Pauson NNP Pautsch NNP Pavane NNP Pavarotti NNP Paved VBN Pavel NNP Pavese NNP Pavillion NNP Pavletich NNP Pavlov NNP Pavlova NNP Pavlovitch NNP Pavlovsky NNP Paw NN Pawcatuck NNP Pawley NNP Pawleys NNP Pawlowski NNP Pawtucket NNP Pawtuxet NNP Pax NNP Paxson NNP Paxton NNP Paxus NNP Pay VB Pay-Per-View NNP Payback NN Paychex NNP Payco NNP Payers NNS Paying VBG Payless NNP Payline NNP Payment NN Payments NNS Payne NNP Paynes NNPS Payola NN Payout NN Payouts NNS Payroll NNP Payson NNP Payton NNP Paz NNP Pe NNP Peabody NNP Peace NNP Peaceable NNP Peaceful JJ Peacekeeper NNP Peach NNP Peacocks NNS Peak NNP Peake NNP Peal NNP Peale NNP Peanut NN Peanuts NNP Peapack NNP Pearce NNP Pearl NNP Pearlman NNP Pearlstine NNP Pearson NNP Peasant NNP Peasants NNPS Pease NNP Peat NNP Pebworth NNP Pechiney NNP Pechman NNP Pechora NNP Pechora-class JJ Peck NNP Pecks NNPS Pecorone NNP Pecos NNP Pedde NNP Peden NNP Pedersen NNP Pederson NNP Pedestrian NNP Pediatric NNP Pediatricians NNS Pedigree NNP Pedigree-contemplating VBG Pedigrees NNS Pedone NNP Pedott NNP Pedro NNP Pedroli NNP Peduzzi NNP Pee NNP Peebles NNP Peeking VBG Peel NNP Peep NNP Peeping NNP Peepy NNP Peer NNP Peerless NNP Peery NNP Peeter NNP Peg NNP PegaSys NNP Pegasus NNP Peggy NNP Pegler NNP Pei NNP Peiping NNP Pekin NNP Peking NNP Peladeau NNP Pelham NNP Pelican NNP Pelin NNP Pell NNP Pellegrini NNP Peller NNP Pelletier NNP Pellicano NNP Pels NNP Pelto NNP Peltz NNP Pemberton NNP Pembina NNP Pembridge NNP Pembroke NNP Pemex NNP Pen NNP Pena NNP Penal NNP Penang NNP Pence NNP Pencil NNP Pencils NNS Pendant NNP Pendergast NNP Pending VBG Pendleton NNP Penelope NNP Peng NNP Pengally NNP Penguin NNP Penh NNP Peninsula NNP Penman NNP Penn NNP PennCorp NNP Penna. FW Pennell NNP Penney NNP Penniman NNP Pennington NNP Pennock NNP Pennsauken NNP Pennsylvania NNP Pennsylvania-based JJ Pennview NNP Penny NNP Pennzoil NNP Pennzoil\/Texaco NNP Penrose NNP Pensacola NNP Pension NN Pension-fund NN Pensive JJ Pensupreme NNP Pentagon NNP Pentagon-related JJ Pentagonese NNP Pentecostal NNP Penthouse NNP Penutian NNP Peony NNP People NNS Peoples NNPS Peoria NNP Pepcid NNP Pepinsky NNP Pepper NNP Pepper\/Seven NNP Pepperdine NNP Pepperell NNP Pepperidge NNP Peppers NNP Pepsi NNP Pepsi-Cola NNP PepsiCo NNP PepsiCola NNP Pepto-Bismol NNP Per IN Per-capita JJ Per-share JJ Peralta NNP Perasso NNP Percent NN Percentage NN Perception NN Perch NNP Perchdale NNP Perched VBN Perches NNP Percival NNP Percussion NNP Percussive NNP Percy NNP Perdido NNP Perdue NNP Pere NNP Peregrine NNP Pereira NNP Perella NNP Perelman NNP Perennial JJ Perennian NNP Peres NNP Perestroika FW Perez NNP Perfect JJ Perfecta NNP Perfection NNP Performance NN Performances NNPS Performed VBN Performers NNS Performing VBG Perfume NN Perfumes NNPS Pergamon NNP Pergolesi NNP Perham NNP Perhaps RB Pericle NNP Periclean NNP Pericles NNP Perier NNP Perignon NNP Perimeter NNP Perin NNP Perinetti NNP Period NN Periodic JJ Periodically RB Periods NNS Peripherals NNPS Perish VB Perito NNP Perk NNP Perken NNP Perkin-Elmer NNP PerkinElmer NNP Perkins NNP Perle NNP Perlman NNP Perluss NNP Permanent JJ Permanente NNP Permian NNP Permission NN Permit VB Permits NNS Permut NNP Perna NNP Pernod NN Peron NNP Peronist NNP Perot NNP Perot-EDS JJ Perozo NNP Perpetual JJ Perrier NNP Perrin NNP Perritt NNP Perro NNP Perry NNP Perse NNP Pershare JJ Pershing NNP Persia NNP Persian NNP Persianesque JJ Persians NNPS Persico NNP Persky NNP Perskys NNPS Person NNP Persona NNP Personages NNS Personal JJ Personal-computer NN Personality NNP Personally RB Personnel NNP Persons NNS Perspective NNP Persuading VBG Persuasion NN Pertamina NNP Perth NNP Perth-based JJ Pertschuk NNP Peru NNP Peruvian JJ Pervanas NNP Perzio-Biroli NNP Pesaro NNP Pesce NNP Pesqueira NNP Pestered VBN Pesticide NNP Pesticides NNS Pestillo NNP Pestle NNP Pet NNP Petaluma NNP Petco NNP Pete NNP Peter NNP Peterborough NNP Peterbroeck NNP Peterhouse NNP Peterman NNP Petermann NNP Peterpaul NNP Peters NNP Petersburg NNP Petersen NNP Peterson NNP Peterson-Kroll NNP Petery NNP Petey NN Petfoods NNPS Petipa NNP Petipa-Minkus NNP Petipa-Tschaikowsky NNP Petit NNP Petite JJ Petitio NNP Petitioner NN Petitions NNS Petrarchan JJ Petre NNP Petrie NNP Petrini NNP Petro NNP Petro-Canada NNP Petrobras NNP Petrochemical NNP Petrocorp NNP Petrofina NNP Petrograd NNP Petrolane NNP Petroleos NNP Petroles NNP Petroleum NNP Petroliam NNP Petronas NNP Petrone NNP Petrossian NNP Petrovich NNP Petruchka NNP Petrus NNP Petruzzi NNP Petry NNP Pets NNS Pettee NNP Pettersson NNP Pettibone NNP Pettigrew NNP Pettis NNP Pettit NNP Petty NNP Peugeot NNP Pew NNP Pewabic NNP Peyrelongue NNP Pezza NNP Pfaff NNP Pfau NNP Pfc. NNP Pfeiffer NNP Pfiefer NNP Pfizer NNP Pflaum NNP Pflugerville NNP Pfohl NNP Ph. NNP PhacoFlex NNP Phalanx NNP Phamaceutical NNP Phamaceuticals NNPS Phantom NNP Pharaoh NNP Pharma NNP PharmaKinetics NNP Pharmacal NNP Pharmaceutical NNP Pharmaceuticals NNP Pharmacia NNP Pharmacies NNS Pharmacopoeia NN Pharmacuetica NNP Pharmacy NNP Pharmical NNP Pharmics NNP Phase NN Phase-2 NN Phase-3 NN Phedre NNP Phelan NNP Phelps NNP Phenix-Transmission NNP Phenolic JJ Phenothiazine NN Pherwani NNP Phi NNP Phibro NNP Phil NNP Philadelphia NNP Philadelphia-area JJ Philadelphia-based JJ Philanthropic NNP Philco NNP Philco-sponsored JJ Philharmonic NNP Philharmonique NNP Philibert NNP Philinte NNP Philip NNP Philippe NNP Philippi NNP Philippians NNS Philippine JJ Philippine-studies NN Philippines NNP Philippines-backed JJ Philippoff NNP Philips NNP Philistines NNPS Phillies NNP Phillip NNP Phillipe NNP Phillipines NNS Phillippe-Francois NNP Phillips NNP Philly RB Philmont NNP Philo NNP Philosophic JJ Philosophical NNP Philosophies NNP Philosophy NN Phils NNPS Phineas NNP Phineoppus NNP Phipps NNP Phnom NNP Phoenician JJ Phoenicians NNS Phoenix NNP Phoenix-based JJ Phoenixville NNP Phone NN Phonemes NNS Phosphate NNP Phosphates NNP Photek NNP Photo NNP Photofinishing NNP Photofrin NN Photograph NN Photographer NNP Photographers NNP Photographic JJ Photographing NNP Photography NNP Photonics NNP Photoprotective NNP Photos NNS Phouma NNP Phrase NNP Phuong NNP Phyfe NNP Phyllis NNP Physical NNP Physically RB Physician NN Physicians NNP Physicist NNP Physicists NNS Physicochemical JJ Physics NNP Physiological NNP Physiologically RB Physiologist NNP Physiology NNP Physique NN Pi NN Pia NNP Pianists NNS Piano NNP Pianos NNP Piazza NNP Piazzo NNP Pic NNP Picasso NNP Picassos NNPS Piccadilly NNP Picchi NNP Piccolino NNP Pichia NN Pick VB Pickard NNP Pickens NNP Pickering NNP Pickett NNP Pickfair NNP Pickford NNP Pickin VBG Pickle NNP Pickman NNP Picks VBZ Pickup NNP Picon NNP Picop NNP Picoult NNP Picture NNP Pictures NNPS Picturing VBG Picus NNP Piddington NNP Pie NNP Pieces NNP Piedmont NNP Piepsam NNP Pier NNP Pierce NNP Pierluigi NNP Piero NNP Pierpont NNP Pierre NNP Pierre-Karl NNP Piers NNP Piersee NNP Pierson NNP Piet NNP Pieta NNP Pieter NNP Pietermartizburg NNP Pietism NNP Pietro NNP Pietruski NNP Pigeon NNP Piggybacking VBG Pignatelli NNP Pigs NNPS Pikaia NNP Pike NNP Pikeville NNP Pilate NNP Pile NNP Pileggi NNP Pilevsky NNP Pilferage NN Pilgrim NNP Pilgrimage NNP Pilgrims NNPS Pilgrin NNP Pilgrm NNP Pilipino NN Pilko NNP Pillay NNP Piller NNP Pillsbury NNP Pilot NN Piloting VBG Pilots NNS Pils NNP Pilson NNP Pilsudski NNP Pimen NNP Pimlott NNP Pin VB Pina NNP Pinar NNP Pincavage NNP Pincian NNP Pincus NNP Pindling NNP Pine NNP Pinel NNP Pinellas NNP Pines NNP Ping-pong NN Pinick NNP Pinion NNP Pink NNP Pinkerton NNP Pinkie NN Pinky NNP Pinnacle NNP Pinned VBN Pinola NNP Pinpoint NNP Pinscher NN Pinsk NNP Pinsoneault NNP Pinter NNP Pioneer NNP Pioneering NNP Pioneers NNPS Piovra FW Pip NNP Pipe NNP PipeLines NNP Pipeline NNP Piper NNP Pipes NNP Pipgras NNP Piping NN Piraeus NNP Pirandello NNP Piranesi NNP Piraro NNP Pirate NNP Pirates NNP Pirelli NNP Pirie NNP Pirko NNP Pirrie NNP Pisa NNP Piscataway NNP Pisces NNP Pischinger NNP Piscopo NNP Pissarro NNP Pissocra NNP Pistol-whipping IN Piszczalski NNP Pit NN Pita NNP Pitch NN Pitcher NN Pitchers NNS Pitching VBG Pitcoff NNP Pitfalls NNS Pitiful NNP Pitman NNP Pitman-Moore NNP Pitney NNP Pitney-Bowes NNP Pitt NNP Pitt-Rivers NNP Pitted VBN Pittenger NNP Pittman NNP Pittsboro NNP Pittsburg NNP Pittsburgh NNP Pittsburgh-based JJ Pittsburghers NNPS Pittston NNP Pity NNP Pitz NNP Pius NNP Pivot NNP Piwen NNP Pixley NNP Pizarro NNP Pizza NNP Pizzo NNP Place NNP Place-names NNS Placement NNP Placements NNP Placentia NNP Placer NNP Places NNS Placid NNP Placido NNP Placing VBG Plain NNP Plain-vanilla JJ Plaines NNP Plainfield NNP Plainly RB Plains NNP Plaintiffs NNS Plaintiffs`` `` Plainview NNP Plan NNP PlanEcon NNP Planar NNP Planck NNP Plane NNP Planes NNS Planet NNP Planeten NNP Planitzer NNP Plank VB Planned NNP Planners NNS Planning NNP Plano NNP Plans NNS Plant NNP Plantago NN Plantation NNP Plantations NNS Planter NNP Planters NNP Plants NNS Plaskett NNP Plaster NNP Plasti-Bars NNP Plastic JJ Plastics NNS Plastow NNP Plate NNP Plateadas NNP Plateau NNP Plates NNS Platform NN Plath NNP Platinum NN Plato NNP Platonic JJ Platonica FW Platonism NN Platonist NN Platoons NNS Platt NNP Platter NNP Platzer NNP Plaude NNP Plaumann NNP Play NNP Playa NNP Playback NNP Playboy NNP Playboy-Show-Biz NNP Playboy-at-Night NNP Played VBN Player NNP Players NNPS Playes NNP Playgirl NNP Playground NNP Playhouse NNP Playhouses NNP Playing VBG Playmates NNPS Plays NNP Playskool NNP Playtex NNP Playworld NNP Playwrights NNP Plaza NNP Plazek NNP Plea NN Pleas NNPS Pleasant NNP Pleasanton NNP Pleasantville NNP Please VB Pleasure NN Plebian JJ Pledge NNP Plee-Zing NNP Plekhanov NNP Plenary NNP Plenitude NNP Plenty NN Plentywood NNP Plessey NNP Plessis NNP Plews NNP Plexiglas NN Plimpton NNP Pliny NN Plot NN Plotkin NNP Plouf NNP Plow NNP Plowman NN Ploys NNS Plug-in JJ Plugging VBG Plumbing NNP Plummer NNP Plump JJ Plumrose NNP Plunge NN Plunging VBG Plunkett NNP Plunking VBG Plus NNP Plus-one JJ Pluses NNS Plutarch NNP Plymouth NNP Plympton NNP Pm NN Png NNP Po NNP Poach VB Poachers NNS Poag NNP Pocasset NNP Pocket NNP Pocketing VBG Pockets NNS Pocklington NNP Pockmanster NNP Poconos NNPS Pod NNP Podell NNP Podger NNP Podgers NNS Podolia NNP Podolsky NNP Podufaly NNP Poduska NNP Poe NNP Poehl NNP Poelker NNP Poeme NNP Poems NNPS Poesy NN Poet NNP Poetics NNP Poetrie NNP Poetry NNP Poets NNS Pogue NNP Pohl NNP Pohlad NNP Pohly NNP Pohs NNP Poindexter NNP Point NNP Point-Pepperell NNP Pointe NNP Pointer NNP Pointers NNS Pointes NNP Pointing VBG Points NNPS Poirot NNP Poised NNP Poison NN Poitrine NNP Poker NN Pokorny NNP Pol NNP Pola NNP Poland NNP Polar NNP Polaris NNP Polaroid NNP Poldowski NNP Pole NNP Poles NNPS Polevoi NNP Polian NNP Police NNP Police-man NNP Policeman NNP Policemen NNS Policies NNS Policy NNP Polimotor NNP Poling NNP Polish JJ Polished JJ Politan NNP Politburo NNP Political JJ Political-Military NNP Politically RB Politicians NNS Politics NNP Politics-ridden JJ Politizdat NNP Politrick NN Polk NNP Poll NNP Pollack NNP Pollak NNP Pollare NNP Pollen NNP Pollin NNP Pollitt NNP Pollnow NNP Pollo NNP Pollock NNP Polls NNS Pollution NNP Pollution-control JJ Polly NNP Polo NNP Polo\/Ralph NNP Pololu NNP Polsky NNP Poltava NNP Poltawa NNP Poltrack NNP PolyGram NNP Polyakova NNP Polyanka NNP Polycast NNP Polychemicals NNP Polyconomics NNP Polygram NNP Polymerix NNP Polymerization NN Polyphosphates NNS Polypropylene NN Polysar NNP Polysilicon NN Polystyrene NNP Polytechnic NNP Polyurethane NN Polyvinyl NN Pomerania NNP Pomerantz NNP Pomham NNP Pomicino NNP Pomona NNP Pompadour NNP Pompano NNP Pompeii NNP Pompey NNP Pomton NNP Ponce NNP Ponchartrain NNP Ponchielli NNP Pond NNP Ponder VBP Pong NNP Ponkob NNP Ponoluu NNP Pons NNP Pont NNP Pontchartrain NNP Pontiac NNP Pontiac-Cadillac NNP Pontiff NNP Pontissara NNP Pontius NNP Pony NNP Ponzi NNP Poo NNP Poodle NNP Pooh NNP Pooh-like JJ Pool NNP Poole NNP Pooling NNP Poong NNP Poor NNP Poore NNP Poorer JJR Poorest JJS Pop NN Pope NNP Popes NNPS Popeye NNP Popish NNP Popkin NNP Popoff NNP Popolare NNP Poppea FW Poppenberg NNP Popping VBG Poppins NNP Pops NNP Populace NN Populaire NNP Populaires NNP Popular NNP Populares NNP Popularism NN Population NNP Poquet NNP Porcaro NNP Porch NNP Porche NNP Porgy NNP Pork NNP Pork-barrel JJ Porkapolis NNP Pornographer NNP Pornsen NNP Porres NNP Porretti NNP Porsche NNP Porsche-like JJ Porsches NNPS Port NNP Port-au-Prince NNP Porta NNP Porta-Potti NNP Portage NNP Portago NNP Porter NNP Porterhouse NN Porters NNPS Portfolio NNP Portfolios NNPS Portia NNP Portico NNP Portillo NNP Portland NNP Portman NNP Porto NNP Portrait NN Portraits NNPS Portrayal NN Ports NNP Portsmouth NNP Portugal NNP Portuguese JJ Portuguese-language JJ Portwatchers NNPS Porum NNP Poseidon NNP Posey NNP Posh JJ Position NN Positive JJ Posix NNP Posner NNP Possible JJ Possibly RB Post NNP Post-Dispatch NNP Post-Graduate NNP Post-Newsweek NNP Post-Serialism NNP Post-tragedy RB PostScript NNP Postal NNP Postbank NNP Posted VBN Postel NNP Postelle NNP Postels NNPS Poster NNP Posterity NN Postipankki NNP Postmaster NNP Posts VBZ Postscript NNP Postwar RB Poszgay NNP Pot NNP Potala NNP Potash NNP Potato NN Potemkin NNP Potential JJ Potentially RB Pothier NNP Pothitos NNP Potlatch NNP Potlatches NNPS Potomac NNP Potowomut NNP Potpourri NNS Potsdam NNP Pottawatomie NNP Potter NNP Pottery NNP Potts NNP Poughkeepsie NNP Pouilly-Fuisse NNP Poul NNP Poulenc NNP Poulin NNP Poultry NN Pound NNP Pounds NNS Pountain NNP Poupin NNP Pour NNP Poussin NNP Poussins NNS Poverty NN Povich NNP Powder NNP Powell NNP Power NNP Power-Seek NN Power-generation JJ Powerful JJ Powers NNP Powicke NNP Powless NNP Poxon NNP Poyne NNP Poyner NNP Poynting-Robertson NNP Pozen NNP Pozzatti NNP Pp. NN Prab NNP Prabang NNP Practical JJ Practically RB Practice NNP Practices NNPS Prado NNP Prager NNP Pragmatism NN Prague NNP Prairie NNP Praise NN Praisegod NNP Praises VBZ Pramual NNP Prandini NNP Prandtl NNP Prapas NNP Pratap NNP Prater NNP Pratt NNP Prattville NNP Pravda NNP Praver NNP Pravo NNP Prawiro NNP Praxis NNP Pray NNP Prayer NNP Prayers NNS Pre-College NNP Pre-Legislative NNP Pre-attack JJ Pre-decoration NN Pre-inaugural JJ Pre-refunded JJ Pre-shaped JJ Pre-trial JJ Preamble NN Preambles NNS Prebon NNP Prechter NNP Precinct NNP Precious NNP Precious-metals NNS Precise JJ Precisely RB Precision NNP Predictably RB Predicting VBG Predictions NNS Predispositions NNS Prednisone NN Preface NNP Prefecture NNP Preferably RB Preferences NNP Preferred NNP Preferred-dividend JJ Prego NNP Prejudice NNP Preliminary JJ Prelude NNP Preludes NNPS Premarin NNP Premark NNP Premier NNP Premiere NNP Premise NNP Premium NNP Premner NNP Premont NNP Prenatal JJ Prence NNP Prendergast NNP Prentice NNP Prentice-Hall NNP Prentiss NNP Preoccupied VBN Preparation NN Preparation-Inquirers NNP Preparations NNP Prepared JJ Preparedness NN Prepayments NNS Prepulsid NN Presbyterian NNP Presbyterian-St JJ|NP Presbyterianism NN Presbyterians NNPS Prescience NNP Prescott NNP Prescribed VBN Prescription NNP Prescription-drug NN Preseault NNP Presence NNP Present JJ Presentation NN Presenting VBG Presently RB Preservation NNP Preserve NNP Preserving VBG Presidency NNP President NNP President-elect NNP Presidential JJ Presidents NNS Presiding NNP Presidio NNP Presley NNP Press NNP Pressburger NNP Presse NNP Pressed VBN Presser NN Pressing VBG Pressler NNP Pressman NNP Pressure NN Pressure-happy JJ Pressured VBN Pressures NNS Prestige NN Presto FW Preston NNP Presumably RB Presupposed VBN Pretax JJ Pretend VB Pretender NN Preti NNP Pretl NNP Pretoria NNP Prettier JJR Pretty RB Prettyman NNP Preussag NNP Prevent VB Prevented VBN Prevention NNP Preventive JJ Prevents VBZ Previewing VBG Previous JJ Previously RB Prevost NNP Prevot NNP Prexy NNP Preyss NNP PriMerit NNP Priam NNP Price NNP Price-Fleming NNP Price-boosting JJ Price-earnings JJ Prices NNS Pricey JJ Pricing NN Prick VB Prickly JJ Pricor NNP Priddy NNP Pride NNP Pride-Starlette NNP Pride-Venus NNP Prideaux NNP Prielipp NNP Priem NNP Prieska NNP Priest NNP Priestess NNP Prieta NNP Prieur NNP Primakov NNP Primarily RB Primark NNP Primary JJ Primate NNP Primaxin NNP Prime NNP Prime-1 JJ Prime-2 JJ Prime-3 JJ PrimeTime NNP Primerica NNP Primo NNP Prince NNP Princes NNPS Princess NNP Princeton NNP Princeton\ NNP Princeton\/Newport NNP Princeton\/Newport-like JJ Principal NNP Principal-only JJ Principals NNS Principia NNP Principle NN Principles NNS Pringle NNP Prins NNP Print VB Printed JJ Printemps NNP Printing NNP Printout NNP Prior RB Priorities NNPS Priory NNP Pripet NNP Prisca NNP Priscilla NNP Prism NNP Prison NNP Prisoners NNP Pritchett NNP Pritikin NNP Pritzker NNP Pritzkers NNPS Privacy NN Private JJ Private-property NN Private-sector JJ Privately RB Privatization NN Privatize VB Privatizing NN Priviet NNP Privileged NNP Privy NNP Prix NNP Prize NNP Prize-winning JJ Prizes NNPS Prizm NNP Prizms NNPS Prizzi NNP Pro NNP Pro-Am NNP Pro-Choice JJ Pro-Family NNP Pro-Iranian NNP Pro-choice JJ Pro-forma JJ Pro-life JJ Pro-rated JJ ProBody NNP ProCyte NNP Probable JJ Probably RB Probe NNP Probes NNPS Probhat NNP Probing VBG Problem NNP Problems NNS Probus NNP Procaine NN Procardia NNP Procedural JJ Procedure NN Procedures NNPS Proceeding VBG Proceedings NNP Proceeds NNS Procepe NNP Process NNP Processed NNP Processing NNP Processors NNPS Proclamation NNP Procreation NN Procter NNP Proctor NNP Procurement NN Prodded VBN Prodigall NNP Prodigy NNP Produce VB Producer NN Producer-Price NNP Producers NNS Producing NNP Product NNP Production NN Productions NNPS Productivity NN Products NNPS Proefrock NNP Prof NNP Prof. NNP Professional NNP Professionally RB Professionals NNP Professor NNP Professors NNP Profile NN Profili NNP Profit NN Profit-taking NN Profits NNS Profitt NNP Program NN Program-Trading JJ Programming NNP Programs NNS Progress NN Progressive NNP Progressivism NNP Prohibited NNP Prohibition NNP Project NNP Projected VBN Projecting VBG Projections NNS Projects NNPS Prokofieff NNP Proler NNP Proleukin NNP Prolonged VBN Prolusion NNP Promazine JJ Promenade NNP Prometheus NNP Prometrix NNP Prominent JJ Promise NNP Promised JJ Promises VBZ Promo NN Promoters NNP Promotion NNP Promotional JJ Prompt NNP Prompted VBN Promptly RB Proof NN Prop NN Prop. NNP Propaganda NNP Propane NNP Proper JJ Properly RB Properties NNP Propertius NNP Property NNP Property-tax JJ Property\ JJ Prophet NNP Proponents NNS Proposals NNS Proposed VBN Proposition NNP Propper NNP Proprietary NNP Proprietorship NNP Proprietorships NNP Propriety NN Propulsion NNP Propylaea NNP Propylene NN Pros NNS Prose NNP Prosecutor NNP Prosecutorial JJ Prosecutors NNS Proskauer NNP Prosopopoeia NNP Prospect NNP Prospective JJ Prospects NNS Prosperity NN Prosser NNP Prostitutes NNS Protection NNP Protectionism NNP Protectionist JJ Protective JJ Protectorate NNP Protege NNP Proteins NNPS Protestant NNP Protestant-dominated JJ Protestantism NNP Protestants NNPS Protesters NNS Protesting VBG Protests NNS Prothro NNP Protitch NNP Protocol NNP Protogeometric JJ Protons NNS Prototype NN Prototypes NNS Protracted JJ Proudfoot NNP Proudhon NNP Proust NNP Provato NNP Provenza NNP Proverbs NNS Proves VBZ Provide VB Provided VBN Providence NNP Provident NNP Providing VBG Provigo NNP Province NNP Provinces NNP Provincetown NNP Provincial NNP Provincie NNP Proving NNP Provision NN Provisional NNP Provo NNP Provost NNP Proximate JJ Proxmire NNP Proxy NN Prozac NNP Pru-Bache NNP Prucker NNP Prudence NNP Prudent NNP Prudential NNP Prudential-Bache NNP PrudentialBache NNP Prudhoe NNP Pruett NNP Prufrock NNP Prussia NNP Prussian NNP Prussin NNP Pryce NNP Pryor NNP Psalm NNP Pseudomonas NNS Psithyrus NNP Psyche NNP Psychiatric NNP Psychiatry NNP Psychical JJ Psychoanalytic NNP Psychologically RB Psychologists NNS Psychology NNP Psychotherapist NN Psychotherapy NNP Psyllium NN Pt NNP Pt. NN Ptachia NNP Pte NNP Pte. NNP Ptolemaic JJ Ptolemaists NNS Ptolemy NNP Pty. NNP Pualani NNP Public NNP Public-health JJ Public-spirited JJ Public-works NNS Publication NN Publications NNPS Publicis NNP Publicity NN Publick NNP Publicly RB Publique NNP Published VBN Publisher NNP Publishers NNPS Publishing NNP Puccini NNP Puccio NNP Puche NNP Pucik NNP Puddingstone NNP Pudwell NNP Pueblo NNP Puente NNP Pueri FW Puerto NNP Puette NNP Puffing VBG Puget NNP Pugh UH Puglisi NNP Pugo NNP Puhl NNP Pulaski NNP Pulitzer NNP Pulkova NNP Pull VB Pullen NNP Pulley NNP Pulliam NNP Pulling VBG Pullings NNP Pullman NNP Pullmans NNS Pullover NNP Pulova NNP Pulp NNP Puma NN Pumblechook NNP Pummeled VBN Pump NNP Pumpkin NNP Pumwani NNP Puna NNP Punch VB Punching VBG Pundits NNS Pune NNP Punishment NN Punitive JJ Punjab NNP Puny JJ Pupil NN Pupils NNS Puppeteer NN Puppies NNS Puppy NNP Purcell NNP Purchase NNP Purchases NNS Purchasing NNP Purdew NNP Purdie NNP Purdue NNP Purdy NNP Pure NNP Purely RB Purepac NNP Purgatory NNP Purification NN Purified VBN Purina NNP Puritan NNP Puritans NNS Purkis NNP Purloined NNP Purnick NNP Purple NNP Purpose NNP Purse NNP Pursewarden NNP Pursuing VBG Pursuit NN Purves NNP Purvis NNP Push NN Push-Pull NNP Push-ups NNS Pushing VBG Pushkin NNP Pushup NNP Put VB Putas NNP Putka NNP Putnam NNP Puts VBZ Putt NNP Puttana NN Puttin NNP Putting VBG Puttnam NNP Putty NN Putzi NNP Puzzled VBN Pye NNP Pyhrric JJ Pyle NNP Pymm NNP Pyne NNP Pyo NNP Pyongyang NNP Pyramid NNP Pyramids NNPS Pyrex NNP Pyrometer NNP Pyrrhic JJ Pysllium NN Pyszkiewicz NNP Pythagoreans NNPS Python NNP Pyxis NNP Pyzhyanov NNP Q NN Q. NNP Q3 CD Q45 NNP QB NNP QE NNP QFC NNP QUANTUM NNP QUARTER NN QUOTABLE JJ QVC NNP Qantas NNP Qatar NNP Qing NNP Qinghua NNP Qintex NNP Qintex-MGM\/UA NNP Qizhen NNP Quack NNP Quackenbush NNP Quacks NNS Quad NNP Quadra NNP Quadrant NNP Quadrex NNP Quadrille NNP Quadrum NNP Quaid NNP Quake NN Quaker NNP Quakeress NN Quakers NNS Qualitative JJ Qualities NNPS Quality NN Qualls NNP Quant NN Quantum NNP Quarry NNP Quarter NN Quarterback NNP Quarterly JJ Quartermaster NNP Quartet NNP Quasimodo NNP Quatre NNP Quatsch FW Quattlebaum NNP Quattro NNP Quattro. NNP Quayle NNP Quebec NNP Quebecers NNPS Quebeckers NNPS Quebecois NNP Quebecor NNP Quebequois NNP Queen NNP Queenan NNP Queens NNP Queensland NNP Quek NNP Queks NNPS Quelch NNP Quell NNP Quelle NNP Quemoy NNP Quennell NNP Quentin NNP Querecho NNP Queried VBN QuesTech NNP Quesada NNP Quesadas NNPS Quest NNP Question NN Questioned VBN Questions NNS Quezon NNP Qui FW Quick NNP Quick-Wate NNP Quickening VBG Quicker JJR Quickly RB Quickview NNP Quiet JJ Quieter JJR Quietism NNP Quietist NNP Quietly RB Quigley NNP Quiksilver NNP Quill NNP Quill\/William NNP Quilt NNP Quilted NNP Quina NNP Quince NN Quincy NNP Quindlen NNP Quiney NNP Quinlan NNP Quinn NNP Quint NNP Quinta NNP Quintana NNP Quintet NNP Quinton NNP Quintus NNP Quinzaine NNP Quips VBZ Quirinal NNP Quist NNP Quit VB Quite RB Quitslund NNP Quivar NNP Quixote NNP Quizzical NNP Quod FW Quota NNP Quotable NNP Quotas NNS Quotation NNP Quotations NNPS Quote NN Quotidien NNP Quoting VBG Quotron NNP Quotrons NNPS Qureshey NNP Quyne NNP Quyney NN R NN R&D NN R&M NNP R's NNS R-5th JJ R-6th NNP R-Bergen NNP R-Cape NNP R-Warren NNP R-shaped JJ R-stage JJ R. NNP R.,Iowa NNP R.,Vitro NNP R.A.F. NNP R.B. NNP R.C. NNP R.D. NNP R.E. NNP R.F. NNP R.G. NNP R.H. NNP R.I NNP R.I. NNP R.I.-based JJ R.J. NNP R.L. NNP R.N. NNP R.P. NNP R.R. NNP R.S. NNP R.T. NNP R.V. NNP R.W. NNP R/NNP.A. NN R/NNP.C/NNP.A. NN R/NNP.H.S. NNP R/NNP.I. NN R2-D2 NN RA NNP RAAF NNP RACIST JJ RACKS NNS RADIO NN RAF NNP RAISED VBD RALLIED VBD RAND NNP RANDELL NNP RANSOM NNP RATE NN RATES NNS RATIOS NNS RATTLED VBD RAVAGES NNS RAX NNP RAYCHEM NNP RB&H NNP RBC NNP RBS NNP RBSPr NNP RC6280 NN RCA NNP RCA-Victor NNP RCA\/Ariola NNP RCSB NNP RD NNP RDF NNP RDW NN RDWS NN RE-ENTRY NNP REACHED NNP REACTOR NN READY NNP REAGAN NNP REAL JJ REAL-ESTATE JJ REALLY NNP REALTY NNP REAP VBP REBUFF NN RECEIVED VBD RECENT JJ RECORD NNP RECORDS NNS RECRUITING NN RECRUITS VBZ REFLECTIONS NNP REFUSED VBD REGULATIONS NNS REIGNS VBZ REINSURERS NNS REIS NNP REIT NNP REITs NNS REJECTED VBN REJECTS VBZ RELEASE NN REMEMBER VB REMIC NNP REMICs NNS REN NNP RENAISSANCE NNP RENT-A-CAR NNP REPAIR NN REPLICATION NN REPLIGEN NNP REPORTED VBN REPORTS NNS REQUESTS NNS REQUIRED NNP RESEARCH NNP RESEARCHERS NNS RESIDENTIAL NNP RESIGNATIONS NNS RESIGNED VBD RESOURCES NNP RETIREMENT NNP RETREAT NN REVENUE NN REVIEW NNP REVISED VBN RF-082 NN RFM NNP RIAA NNP RICHARD NNP RICHMOND NNP RICO NNP RICO-forfeiture JJ RICOed JJ RICOing NN RID VB RIGHTS NNS RIP UH RISC NNP RISC-based JJ RISE NN RISK NN RIT NNP RIVALRIES NNS RIVER NNP RJR NNP RJR-Macdonald NNP RJR-style JJ RLLY NNP RMC NNP RMI NNP RMS NNP RMd NN RNA NNP RNA-based JJ RNAs NNS ROARED VBD ROBERT NNP RODE VBD ROFLMAO UH ROGERS NNP ROK NNP ROME NNP ROOM NN ROOSEVELT'S NNP ROSS NNP ROSTY'S NNP ROTC NNP ROUGH JJ ROUND NN ROY NNP RPM NNP RTC NNP RTC-appointed JJ RTC-owned JJ RTRSY NNP RTS NNP RTZ NNP RU NNP RU-486 NNP RULE VBP RULERS NNS RULES NNS RULING NN RUN NNP RUSH NN RUSSIANS NNS RV NN RVs NNS RXDC NNP Rabat NNP Rabaul NNP Rabb NNP Rabbi NNP Rabbits NNS Rabble-rousing JJ Rabia NNP Rabies NN Rabin NNP Rabinowiczes NNPS Rabinowitz NNP Rabkin NNP Raboy NNP Racal NNP Raccoon NNP Raccoons NNS Race NNP Race-drivers NNS Raceway NNP Rachael NNP Rachel NNP Rachelle NNP Rachmaninoff NNP Rachwalski NNP Racial JJ Racie NNP Racin NNP Racine NNP Racing NNP Racism NN Racketeer NNP Racketeering NNP Rackmil NNP Racks VBZ Racquet NNP Radames NNP Radar NNP Radarange NN Radcliffe NNP Rademacher NNP Radetzky NNP Radha NNP Radhakrishnan NNP Radiant JJ Radiation NN Radic NNP Radical NNP Radio NNP Radio-Television NNP Radio-television NN Radio-transmitter NN Radioing VBG Radiopasteurization NN Radiosterilization NN Radius NNP Radnor NNP Radzymin NNP Rae NNP Raeder NNP Raesz NNP Raether NNP Rafael NNP Rafale NNP Rafales NNPS Rafeedie NNP Rafer NNP Raffaello NNP Rafferty NNP Rafi NNP Rafsanjani NNP Raft NN Rafter NNP Raful NNP Rag NNP Ragalyi NNP Ragan NNP Ragavan NNP Rage NN Ragged JJ Raghavan NNP Raghib NNP Ragnar NNP Ragsdale NNP Ragu NNP Raheem NNP Rahill NNP Rahman NNP Rahn NNP Rahway NNP Raich NNP Raider NNP Raiders NNPS Raiff NNP Raikes NNP Raikin NNP Rail NNP Rail-transit NN Railbikers NNS Railbikes NNS Railcar NNP Railroad NNP Railroad-rate JJ Railroads NNPS Rails NNPS Railway NNP Raimer NNP Raimondo NNP Raimu NNP Rain NNP Rainbow NNP Raine NNP Rainer NNP Raines NNP Rainey NNP Rainier NNP Rainman NNP Rainwater NNP Rainy NNP Raisa NNP Raise VB Raised VBN Raising VBG Raitt NNP Raj NNP Rajiv NNP Rajter NNP Rak NNP Rake NN Rakestraw NNP Raleigh NNP Rales NNP Rall NNP Rally NNP Ralph NNP Ralphs NNP Ralston NNP Ralston-Purina NNP Ram NNP Rama NNP Ramada NNP Ramathan NNP Ramble NNP Rambo NNP Ramcharger NNP Rameau NNP Ramesh NNP Ramey NNP Ramfis NNP Ramillies NNP Ramirez NNP Rammin VBG Ramo NNP Ramon NNP Ramona NNP Ramone NNP Ramos NNP Ramparts NNS Rampell NNP Ramseier NNP Ramsey NNP Ramsperger NNP Ramtron NNP Ran VBD Ranavan NNP Ranch NNP Rancher NNP Rancho NNP Rand NNP Randall NNP Rande NNP Randell NNP Randi NNP Randol NNP Randolph NNP Random NNP Randy NNP Range NN Rangel NNP Ranger NNP Rangers NNPS Ranging VBG Rangoni NNP Rangoon NNP Rangoon-Bangkok NNP Ranieri NNP Rank NNP Ranke NNP Ranked VBN Rankin NNP Ranking NN Rankings NNS Ranks NNP Ranney NNP Ransom NNP Ransomes NNP Ransy NNP Ranyard NNP Ranzer NNP Raos NNP Raoul NNPS Raoul-Duval NNP Rap NN Rapanelli NNP Rapatee NNP Rape NNP Raphael NNP Raphaels NNS Rapid NNP Rapids NNP Rapier NN Rapoport NNP Rapp NNP Rapping VBG Rapport NNP Raptopoulos NNP Rapture NN Rapunzel NNP Rare JJ Rarely RB Rarer JJR Rascal NN Rash NNP Rashid NNP Rashomon NNP Raskolnikov NNP Raspberry NN Rastus NNP Rat NNP Rat-face NN Ratajczak NNP Ratcliff NNP Ratcliffe NNP Rate NNP Rated VBN Rates NNS Rath NNP Rathbone NNP Rathbones NNPS Rather RB Ratican NNP Ratified VBN Rating NNP Ratings NNS Rational NNP Ratliff NNP Ratner NNP Ratners NNP Raton NNP Rats NNP Rattigan NNP Rattner NNP Ratto NNP Rattzhenfuut NNP Rauch NNP Raucher NNP Rauh NNP Raul NNP Rausch NNP Rauschenberg NNP Rauschenbusch NNP Rauscher NNP Ravel-like JJ Ravencroft NNP Ravenscroft NNP Ravenspurn NNP Ravenswood NNP Ravich NNP Ravine NNP Ravitch NNP Ravitz NNP Raw JJ Raw-steel NN Rawl NNP Rawleigh NNP Rawlings NNP Rawlins NNP Rawls NNP Rawson NNP Rax NNP Ray NNP Rayburn NNP Rayburn-Johnson NNP Raydiola NNP Rayfield NNP Rayle NNP Raymon NNP Raymond NNP Raymonda NNP Raymondville NNP Raymont NNP Raynal NNP Rayon NNP Raytheon NNP Razors NNS Rd. NNP Re NNP Re-Birth NNP Re-creating VBG Re-enactments NNS Reach NNP Reached VBN Reaching VBG Reacting VBG Reaction NN Reactionaries NNS Reactionary JJ Reactions NNS Reactors NNP Read NNP Reader NNP Readerman NNP Readers NNS Readily RB Readiness NN Reading NNP Readings NNS Ready JJ Reaffirming VBG Reagan NNP Reagan-Bush JJ Reagan-Republican JJ Reagan-era NN Reagan-like JJ Reaganauts NNS Reaganite JJ Reaganites NNPS Reaganomics NNP Real JJ Real-estate NN Realism NNP Realist NNP Reality NN Really RB Realtor NN Realtors NNS Realty NNP Reama NNP Reames NNP Rear JJ Rearding VBG Reared VBN Reason NNP Reasonable JJ Reasoner NNP Reasoning NN Reasons NNS Reavey NNP Reavis NNP Reb NN Rebaja NNP Rebates NNS Rebecca NNP Rebel NN Rebellion NN Rebels NNS Reber NNP Rebounding VBG Rebs NNS Rebuilding VBG Recall VB Recalls VBZ Recapitulation NNP Receave VBP Receipts NNPS Receivables NNPS Receiving VBG Recent JJ Recently RB Receptech NNP Reception NN Recess NN Recession NN Recessions NNS Recherche NNP Recherches FW Reciprocal NNP Recital NNP Reckitt NNP Recklessly RB Reckon VB Reclamation NNP Recognition NNP Recognize VB Recognizing VBG Recommendations NNS Reconciliation NNP Reconsider VB Reconsideration NN Reconstruction NNP Record NNP Recording NNP Recordings NNP Records NNPS Records\/SONY NNP Recounting VBG Recoup VB Recovering VBG Recovery NNP Recreation NNP Recruit NNP Recruited VBN Recruiter NNP Rectangular JJ Rectifier NNP Rector NNP Rectum NN Recurring VBG Recyclers NNPS Recycling NNP Red NNP Red-Green NNP Red-Greens NNPS Red-blooded JJ Red-prone JJ Reda NNP Redbirds NNP Redbook NNP Redding NNP Reddington NNP Rede NNP Redeemable NNP Redeemer NNP Rederi NNP Redesign NN Redevelopment NNP Redfield NNP Redford NNP Redgrave NNP Redhook NNP Reding NN Redland NNP Redmond NNP Redondo NNP Redoute NNP Reds NNPS Redskins NNPS Redstone NNP Reduce VB Reduced NNP Reduces VBZ Reducing VBG Reduction NNP Reductions NNS Redundant NNP Redwood NNP Reebok NNP Reeboks NNPS Reed NNP Reeder NNP Reedville NNP Reedy NNP Reef NNP Reefs NNS Reels NNPS Reenact VB Rees NNPS Reese NNP Reeve NNP Reeves NNP Reeves-type JJ Ref. NN Refco NNP Refcorp NNP Refcorps NNS Reference NNP References NNS Referrals NNS Referring VBG Refill VB Refinancing NN Refined NNP Refinements NNS Refiners NNS Refinery NN Refining NNP Reflecting VBG Reflections NNP Reflects VBZ Reflex NN Reform NNP Reformation NNP Reformed NNP Reforms NNS Refractories NNPS Refrigeration NN Refsnes NNP Refsum NNP Refuge NNP Refugee NNP Refugees NNS Refund NN Refunds NNS Refuses VBZ Reg NNP Regaard NNP Regains VBZ Regal NNP Regalia NNP Regan NNP Regarded VBN Regarding VBG Regardless RB Regatta NNP Regency NNP Regent NNP Reggie NNP Regie NNP Regime NNP Regiment NNP Regina NNP Reginald NNP Regine NNP Region NNP Regional NNP Regionalism NNP Regionally RB Regions NNS Regis NNP Register NNP Registered VBN Registration NN Registrations NNS Registry NNP Regius NNP Regnery NNP Rego NNP Regret NN Regretfully RB Regrets VBZ Regrettably RB Regular NNP Regulars NNS Regulation NN Regulations NNS Regulative JJ Regulator NNP Regulators NNS Regulatory NNP Regulus NN Rehabilitation NNP Rehfeld NNP Rehnquist NNP Reich NNP Reichenberg NNP Reichhart NNP Reichhold NNP Reichmann NNP Reichmann-controlled JJ Reichmanns NNPS Reichstag NNP Reid NNP Reider NNP Reidy NNP Reifenrath NNP Reik NNP Reilly NNP Reily NNP Reimbursement NN Rein NNP Reina NNP Reinaldo NNP Reine NNP Reinforced NNP Reinforcements NNS Reinforcing VBG Reinhard NNP Reinhardt NNP Reinhold NNP Reinisch NNP Reinker NNP Reins NNP Reinstatement NN Reinsurance NNP Reintroducing VBG Reinvestment NNP Reis NNP Reiser NNP Reisert NNP Reiss NNP Reitman NNP Rejection NN Rejoins VBZ Rekindled VBN Related NNP Relating VBG Relation NN Relational NNP Relations NNPS Relationship NNP Relationships NNPS Relative JJ Relatively RB Relatives NNS Relativism NN Relax VB Release NNP Relentless JJ Relentlessly RB Relevant JJ Reliability NN Reliable NNP Reliance NNP Relief NNP Relieved JJ Religion NN Religione NNP Religious JJ Relishes NNS Relocation NNP Reluctant JJ Relying VBG Remain VB Remaining VBG Remains NNS Remaking VBG Remarketers NNS Remarks NNS Remarque NNP Rembrandt NNP Remember VB Remembering VBG Remembrance NN Remic NNP Remic-related JJ Remics NNS Remington NNP Remingtons NNPS Removal NNP Remove VB Removed VBN Remphan NNP Rempsberger NNP Remus NNP Remy NNP Renaissance NNP Renaissance-style JJ Renata NNP Renault NNP Renaults NNPS Rence NNP Renchard NNP Renck NNP Rendell NNP Rendering VBG Rene NNP Renee NNP Renewal NNP Renewed VBN Renfrew NNP Renfro NNP Renk NNP Rennell NNP Rennie NNP Reno NNP Reno-Lake NNP|NP Renoir NNP Renoirs NNPS Renovo NNP Renowned VBN Renshaw NNP Rensselaer NNP Rensselaerwyck NNP Rent NNP Rent-A-Car NNP Rent-A-Lease NNP Renta NNP Rental NNP Renton NNP Rents NNS Renville NNP Renwick NNP Renzas NNP Reorganization NNP Reorganized NNP Reorganizing VBG Rep NNP Rep. NNP Repairing VBG Repayment NNP Repeal NN Repeat NN Repeated VBN Repeatedly RB Repeating VBG Repertory NNP Replace VB Replacement NN Replacing VBG Replied VBD Replies NNS Repligen NNP Replogle NNP Reply NN Repnin NNP Report NNP Reporter NNP Reporters NNS Reporting NNP Reports NNS Repository NNP Representative NNP Representatives NNPS Representing VBG Repression NN Reprimand NN Reprinted VBN Reprints NNS Reprisals NNS Reproach VB Reproduced VBN Reproduction NNP Reproductive NNP Reps. NNP Repsol NNP Reptilian NNP Republic NNP RepublicBank NNP Republican NNP Republican-controlled JJ Republican-governor\ JJ Republicanism NNP Republicans NNPS Republics NNPS Reputedly RB Requests NNS Requiem NNP Require VB Required VBN Requirements NNS Rescue NNP Rescued VBN Rescues NNS Research NNP Research-and-development NN Researchers NNS Researching VBG Resentment NN Reservation NNP Reserve NNP Reserved NNP Reserves NNS Reservists NNPS Reservoir NNP Reservoirs NNP Reshaping VBG Residence NNP Resident NNP Residential NNP Residents NNS Resignedly RB Resins NNPS Resist VB Resistance NNP Resisting VBG Resistol NNP Resler NNP Resnick NNP Resnik NNP Resolute NNP Resolution NNP Resolve NNP Resolved VBN Resolves NNPS Resolving NNP Resort NNP Resorts NNPS Resource NNP Resourceful JJ Resources NNPS Resourcesrose NNP Respect NN Respectability NN Respecting VBG Respiratory NNP Respond VBP Respondents NNS Responding VBG Response NNP Responses NNS Responsibility NNP Responsible JJ Resrve NNP Ress NNP Rest VB Restaurant NNP Restaurants NNP Resting VBG Restless JJ Reston NNP Restoration NNP Restraint NNP Restrict VB Restrictive JJ Restructure VBP Restructuring NN Rests VBZ Restudy VB Result NN Results NNS Resuming VBG Ret NNP Retail JJ Retailer NN Retailers NNS Retailing NN Retails NNS Retardation NNP Retention NNP Retin-A NNP Retired NNP Retiree NN Retirement NNP Retiring VBG Retrace VB Retracing VBG Retrieval NNP Retrovir NNP Retrovirus NNP Retton NNP Return NN Returning VBG Returns NNS Reub NNP Reuben NNP Reuling NNP Reunification NN Reunion NNP Reupke NNP Reuschel NNP Reuss NNP Reuter NNP Reuters NNP Reuther NNP Reuven NNP Reuveni NNP Rev NNP Rev. NNP Reva NNP Revamps NNP Revco NNP Reveals VBZ Revelation NNP Revell NNP Revenge NN Revenue NN Revenue-short JJ Revenues NNS Reverdy NNP Revere NNP Reverend NNP Reverently RB Reversal NNP Reverse VB Reversing VBG Review NNP Reviewing VBG Reviglio NNP Revise VB Revised NNP Revising VBG Revision NNP Revisited NNP Revitalization NNP Revitalized VBN Revivals NNS Revlon NNP Revolt NN Revolution NNP Revolutionaries NNS Revolutionary NNP Revolutionibus FW Revolving VBG Revson NNP Revulsion NNP Revzin NNP Reward VB Rewarding NN Rewards NNS Rex NNP Rexall NNP Rexene NNP Rexinger NNP Rexroth NNP Rey NNP Rey-controlled JJ Reye NNP Reyes NNP Reyes-Requena NNP Reykjavik NNP Reynolds NNP Rezneck NNP Reznichenko NNP Rezsoe NNP Rh NNP Rhea NNP Rheims NNP Rheingold NNP Rheinholdt NNP Rheinstahl NNP Rheinstein NNP Rhenish JJ Rhett NNP Rheumatics NN|NNS Rheumatism NNP Rhin NNP Rhine NNP Rhine-Main NNP Rhine-Westphalia NNP Rhineland NN Rhinoceros NNP Rhoads NNP Rhoda NNP Rhode NNP Rhodes NNP Rhodesia NNP Rhona NNP Rhone NNP Rhone-Poulenc NNP Rhu-beb-ni-ice NN Rhyme VB Rhys NNP Rhythm NN Rhythm-Wily NNP Rhythmic JJ Rhythms NNPS Riad NNP Rianta NNP Ribas NNP Ribeiro NNP Riben NNP Ribes NNP Ribozymes NNS Rica NNP Rican JJ Rican-American NNP Ricans NNS Ricardo NNP Ricca NNP Riccardo NNP Ricci NNP Ricco NNP Rice NNP Rich NNP Rich-affiliated JJ Richard NNP Richardot NNP Richards NNP Richardson NNP Richardson-Merrell NNP Richardson-Smith NNP Richardson-Vicks NNP Richco NNP Richebourg NNP Richelieu NNP Richer NNP Richert NNP Richeson NNP Richey NNP Richfield NNP Richland NNP Richman NNP Richmond NNP Richmond-Petersburg NNP Richmond-San NNP Richmond-Watson NNP Richmond-area JJ Richstone NNP Richter NNP Richter-Haaser NNP Richterian JJ Richwhite NNP Rick NNP Rickards NNP Rickel NNP Ricken NNP Rickenbaugh NNP Ricketts NNP Rickettsia NN Rickey NNP Rickshaw NNP Rico NNP Ricoh NNP Ricostruzioni NNP Ridder NNP Riddle NN Ride VB Rider NNP Riders NNPS Ridge NNP Ridgefield NNP Ridgway NNP Ridiculing VBG Ridiculous JJ Riding VBG Ridley NNP Ridpath NNP Riedel NNP Riefenstahl NNP Riefling NNP Riegger NNP Riegle NNP Rieke NNP Riely NNP Riemann NNP Riepe NNP Ries NNP Riese NNP Rieslings NNPS Riesman NNP Rifenburgh NNP Rifkin NNP Rifkind NNP Rifkinesque JJ Rifle NNP Riflery NN Rifles NNS Rig-Veda NNP Riga NNP Riger NNP Riggs NNP Right RB Right-hander JJ Right-to-Die JJ Right-wing JJ Righteous JJ Rightly RB Rights NNP Rigid JJ Rigoletto NNP Rihanna NNP Riiiing UH Riklis NNP Riley NNP Rilke NNP Rill NNP Rilling NNP Rilly NNP Rilwanu NNP Rim NNP Rim-Fire JJ Rima NNP Rimanelli NNP Rimbaud NN Rimes NNP Rimini NNP Rimmer NNP Rimstalker NNP Rinascimento NNP Rinat NNP Rincon NNP Rindos NNP Rinehart NNP Riney NNP Ring NNP Ringel NNP Ringenbach NNP Ringer NNP Ringers NNS Ringing NN Ringler NNP Ringo NNP Ringwood NNP Rink NNP Rinker NNP Rinsing VBG Rio NNP Riordan NNP Rios NNP Rios-embryos NNS Rip NNP Ripa NNP Ripe NNP Rippe NNP Ripper NNP Ripplemeyer NNP Ripples NNS Rise NN Riserva NNP Rises NNP Rising VBG Risk NN Risking NNP Risks NNS Risky NNP Risley NNP Risparmio NNP Risques NNP Rita NNP Rita-Sue NNP Ritchie NNP Rite NNP Rito NNP Ritschl NNP Rittenhouse NNP Ritter NNP Ritterman NNP Rittlemann NNP Ritz NNP Ritz-Carlton NNP Riunite NNP Riunitie NNP Rival NNP Rivals NNS River NNP Rivera NNP Riverboat NNP Riverfront NNP Rivers NNPS Riverside NNP Riverview NNP Riverwalk NNP Riviera NNP Rivkin NNP Rivlin NNP Rivoli FW Riyadh NNP Rizopolous NNP Rizvi NNP Rizzello NNP Rizzuto NNP Roach NNP Roaco NNP Road NNP RoadRailer NNP RoadRailers NNPS RoadRailing VBG Roads NNP Roadway NNP Roald NNP Roaming VBG Roanoke NNP Roaring NNP Roark NNP Roast VB Roasters NNS Rob NNP Robards NNP Robb NNP Robbers NNS Robbery NNP Robbie NNP Robbins NNP Robby NNP Robec NNP Robert NNP Roberta NNP Roberti NNP Roberto NNP Roberts NNP RobertsCorp NNP Robertson NNP Robertsons NNPS Robeson NNP Robie NNP Robin NNP Robinowitz NNP Robins NNP Robinson NNP Robinson-Humphrey NNP Robinsonville NNP Robles NNP Robot NN Robotics NNP Robots NNP Robusta-producing JJ Rocco NNP Roch NNP Rocha NNP Rochdale NNP Roche NNP Rochelle NNP Rochester NNP Rochford NNP Rock NNP Rock'n NNP Rockabye NNP Rockaways NNPS Rockefeller NNP Rocket NNP Rocket-powered JJ Rocketdyne NNP Rockettes NNPS Rockford NNP Rockfork NNP Rockhall NNP Rockies NNPS Rocking NNP Rockport NNP Rockville NNP Rockwell NNP Rocky NNP Rococo JJ Rod NNP Rodale NNP Rodding NN Rodent NN Rodeo NNP Rodeph NNP Roderick NNP Rodgers NNP Rodman NNP Rodney NNP Rodney-Honor NNP Rodney-Miss NNP Rodney-The NNP Rodolfo NNP Rodrigo NNP Rodriguez NNP Rodriquez NNP Roe NNP Roebuck NNP Roeck NNP Roederer NNP Roehm NNP Roemer NNP Roeser NNP Roessler NNP Roffman NNP Rogaine NNP Roger NNP Rogers NNP Rogin NNP Rognoni NNP Rogues NNPS Roh NNP Rohatyn NNP Rohm NNP Rohr NNP Rohrer NNP Rohs NNP Roine NNP Roizen NNP Rojas NNP Rojo NNP Rolaids NNP Roland NNP Role NN Roleplaying NN Roles NNS Rolette NNP Rolex NNP Rolexes NNPS Rolf NNP Rolfe NNP Rolfes NNP Roling NNP Roll NNP Rolland NNP Rolled VBN Roller NNP Rollie NNP Rollin NNP Rolling NNP Rollins NNP Rolls NNP Rolls-Royce NNP Rolls-Royces NNPS Rolm NNP Rolnick NNP Rolodex NNP Rolodexes NNPS Roloff NNP Roma NNP Romagnosi NNP Romain NNP Roman NNP Roman-camp NN Romana NNP Romances NNP Romanee-Conti NNP Romanesque JJ Romania NNP Romanian JJ Romaniuk NNP Romano NNP Romans NNPS Romantic JJ Romanza NNP Rome NNP Rome-based JJ Romeo NNP Romer NNP Romero NNP Romm NNP Rommel NNP Romo NNP Romulo NNP Ron NNP Rona NNP Ronald NNP Rondanini NNP Rondo NN Rong NNP Ronkonkoma NNP Ronnel NN Ronnie NNP Roof NNP Rooker NNP Rookie NN Room NNP Roomberg NNP Roommates NNS Rooms NNS Rooney NNP Roos NNP Roosevelt NNP Rooseveltian JJ Root NN Roots NNPS Ropart NNP Roper NNP Ropes NNPS Roquemore NNP Rorer NNP Rorschach NNP Rory NNP Rosa NNP Rosabelle NNP Rosabeth NNP Rosalco NNP Rosalie NNP Rosalind NNP Rosalyn NNP Rosalynn NNP Rosburg NNP Roscoe NNP Rose NNP Roseanne NNP Roseland NNP Rosella NNP Roselle NNP Rosemary NNP Rosemont NNP Rosen NNP Rosenau NNP Rosenbach NNP Rosenbaum NNP Rosenberg NNP Rosenblatt NNP Rosenblum NNP Rosencrants NNP Rosenfeld NNP Rosenfield NNP Rosenmueller NNP Rosenstein NNP Rosenthal NNP Rosenwald NNP Roses NNPS Rosett NNP Rosewood NNP Rosie NNP Roskind NNP Roslev NNP Roslyn NNP Rosman NNP Rosner NNP Rosoff NNP Rosow NNP Rospatch NNP Ross NNP Rosser NNP Rossi NNP Rossides NNP Rossilini NNP Rossini NNP Rosso NNP Rossoff NNP Rost NNP Rostagno NNP Rostagnos NNPS Rostenkowski NNP Rosty NNP Roswell NNP Rosy NNP Rotan NNP Rotarians NNPS Rotary NNP Rotelli NNP Rotenberg NNP Roth NNP Rotha NNP Rothamsted NNP Rothe NNP Rothenberg NNP Rothko NNP Rothman NNP Rothmans NNP Rothmeier NNP Rothschild NNP Rothschilds NNPS Rothshchild NNP Rothwell NNP Rotie NNP Rotman NNP Roto-Rooter NNP Rotonda NNP Rotondo NNP Rotorex NNP Rotterdam NNP Rottger NNP Rottosei NNP Rotunda NNP Rouben NNP Rouge NNP Rough JJ Roughly RB Roukema NNP Roulac NNP Roulet NNP Round NNP Rounded JJ Rounding VBG Rounding-off NN Roundtable NNP Roundup NNP Rourke NNP Rous NNP Rousell NNP Rousseau NNP Rousseauan JJ Roussel NNP Roussel-Uclaf NNP Roustabouts NNPS Route NNP Routine JJ Routo-Jig NN Rover NNP Row NNP Rowan NNP Rowe NNP Rowell NNP Rowland NNP Rowland-Molina NNP Rowland-Morin NNP Rowlands NNP Rowley NNP Rowman NNP Rowse NNP Rowswell NNP Roxani NNP Roxanne NNP Roxboro NNP Roxy NNP Roy NNP Royal NNP Royale NNP Royalty NNP Royaux NNP Roybal NNP Royce NNP Roylott NNP Rozella NNP Rozelle NNP Rte. NNP Ruanda-Urundi NNP Ruark NNP Rubber NNP Rubbermaid NNP Rubbish NN Rube NNP Rubega NNP Rubel NNP Rubeli NNP Rubendall NNP Rubenesquely JJ Rubens NNP Rubenstein NNP Ruberg NNP Rubicam NNP Rubik NNP Rubin NNP Rubinfien NNP Rubins NNS Rubinstein NNP Rubio NNP Ruby NNP Rucellai NNP Ruckdeschel NNP Ruckert NNP Rudder NNP Rude NNP Ruder NNP Ruderman NNP Rudi NNP Rudibaugh NNP Ruding NNP Rudkoebing NNP Rudman NNP Rudner NNP Rudnick NNP Rudoff NNP Rudolf NNP Rudolph NNP Rudy NNP Rudyard NNP Rue NNP Ruettgers NNP Rufenacht NNP Ruff NNP Ruffel NNP Ruffians NNS Ruffled VBN Ruffo NNP Rufus NNP Ruger NNP Rugeroni NNP Rugged JJ Ruggiero NNP Ruhnau NNP Ruhollah NNP Ruidoso NNP Ruined VBN Ruiz NNP Ruiz-Mateos NNP Rukeyser NNP Rul. NNP Rule NNP Ruled VBN Rulers NNPS Rules NNP Ruling NN Rullo NNP Rum NNP Rumack NNP Rumania NNP Rumanian JJ Rumanians NNPS Rumasa NNP Rumford NNP Rummaging VBG Rummel NNP Rumor NN Rumors NNS Rumpelstiltskin NNP Rumscheidt NNP Run NNP Run-down JJ Runcie NNP Rundfunk NNP Rundfunk-Sinfonie-Orchester NNP Rundfunkchor NNP Rundlett NNP Rune NNP Runge NNP Runiewicz NNP Runkel NNP Runnan NNP Runner NNP Runners NNS Running VBG Runtagh NNP Runways NNS Runyon NNP Ruoff NNP Rupert NNP Ruppert NNP Rural NNP Rus NNP Ruschkowski NNP Rush NNP Rush-Presbyterian-St NNP Rushall NNP Rushdie NNP Rushforth NNP Rushmore NNP Rusk NNP Ruskin NNP Russ NNP Russel NNP Russell NNP Russes NNP Russia NNP Russian NNP Russian-dominated JJ Russian-language JJ Russians NNPS Russo NNP Russo-American JJ Rust NNP Rustin NNP Rusting VBG Ruston NNP Rusty NNP Rutan NNP Rutgers NNP Ruth NNP Ruthann NNP Rutherford NNP Ruthlessness NN Rutstein NNP Ruttenbur NNP Ruvolo NNP Ruwe NNP Ruxpin NNP Ruys NNP Ruysch NNP Rwanda NNP Ry. NNP Ryan NNP Ryc NNP Rychard NNP Rydell NNP Ryder NNP Rye NNP Ryerson NNP Rykoff-Sexton NNP Ryland NNP Rylie NNP Rymer NNP Ryne NNP Ryosuke NNP Ryrie NNP Ryskamp NNP Ryukichi NNP Ryusenji NNP Ryutaro NNP Ryzhkov NNP S NNP S$ $ S&L NNP S&Ls NNS S&P NNP S&P-500 NNP S&P-down NN S'Mores NNP S* NNP S*/NN&L NNP S*/NNP&L NN S*/NNP&P NN S*/NNS&Ls NNP S-10 NNP S-11 NN S-20 NN S-Cargo NNP S-D NN S-K-I NNP S-curve NN S-s-sahjunt NN S. NNP S.A NNP S.A. NNP S.A.F.E. NNP S.C NNP S.C. NNP S.C.-based JJ S.D NNP S.D. NNP S.G. NNP S.Grove NNP S.I. NNP S.J. NNP S.K. NNP S.O.B NNP S.O.B. NN S.O.B.s NNS S.P. NNP S.P.C.A. NN S.S. NNP S.S.R. NNP S.W. NNP S.p NNP S.p.A. NNP S/O VB SA NNP SA-12 NN SAAMI NNP SAATCHI NNP SAB NNP SABH NNP SABLE NNP SAC NNP SAFEWAY NNP SAID VBD SAINT NNP SAKOS FW SALARIES NNS SALE NN SALES NNS SALT NNP SAME JJ SAMOS NNP SAMURAI NNP SAN NNP SANTA NNP SARK NNP SAS NNP SAT NNP SAVINGS NNP SBA NNP SBCI NNP SC NNP SCA NNP SCANDALS NNS SCE NNP SCECorp NNP SCHLOSS NNP SCHMIDT NNP SCHOOL NN SCHWAB NNP SCHWARTZ NNP SCI NNP SCIENTISTS NNS SCORE NNP SCR NNP SCRAMBLE VBP SCRAP VBP SCUD NNP SD NNP SDI NNP SE NNP SEAGATE NNP SEAQ NNP SEAT NNP SEATO NNP SEC NNP SEC. NNP SECOND JJ SECTION NN SECURITY NN SEE VBP SEEK VB SEEKING VBG SEEKS VBZ SEEQ NNP SEI NNP SELF-DESTROYED VBN SELL VB SELL-OFFS NNS SELLING NNP SEM NNP SEMICONDUCTOR NNP SENATE NNP SENIOR JJ SEPARATE JJ SEPARATED VBN SEPT. NNP SERVE VBP SERVICE NN SERVICES NNP SES NNP SESCO NNP SET VBD SETSW NN SETTING VBG SEVEN-UP NNP SE\/30 NNP SEi NNP SF NNP SFD NNP SFE NNP SFX NNP SFr2 NNP SFr3 NNP SGA NNP SGB NNP SGC NNP SH NN SH-11 NNP SHAKE VB SHAREDATA NNP SHAREHOLDER NN SHEA NNP SHEARSON NNP SHEDDING VBG SHELTERS NNS SHEVARDNADZE NNP SHIBUMI NNP SHIELD NNP SHIPPING NNP SHIT NN SHOPPE NNP SHOPPERS NNS SHOPS NNS SHORT JJ SHORT-TERM JJ SHORTAGE NN SHOULD MD SHOWY JJ SHUN VBP SHUT VB SHUTTLE NN SHV NNP SIA NNP SIBV-MS NNP SICK NNP SIDE NNP SIDES NNS SIERRA NNP SIGNAL NN SIGNALED VBN SIGNED VBN SILLY JJ SIMPLIFYING VBG SINCE IN SISAL NNP SITE NN SIZING NNP SJO NNP SK NNP SKF NNP SKIDDED VBD SKIES NNS SKILLED JJ SKIRTS NNP SKr1.5 NNS SKr20 NNS SKr205 NNS SKr225 NNS SKr29 NNS SLHD NNP SLIPPAGE NN SLIPS VBZ SLOGANS NNS SLORC NNP SLTI NNP SMALL NNP SMALL-BUSINESS NN SMALL-COMPANY JJ SMART JJ SMD NNP SMOKING NN SMU NNP SMYRNA NNP SNET NNP SNIA NNP SNP NN SO RB SO-CALLED JJ SOARED VBD SOARS VBZ SOCIAL JJ SOCIETY'S NNP SOFT JJ SOFTWARE NNP SOME DT SONG NNP SONGsters NNS SORRY JJ SOS NNP SOUTH NNP SOUTHERN NNP SOUVENIRS NNS SOVIET JJ SOYBEANS NNS SP NNP SP-44001 LS SP-44002 LS SP-44005 LS SP-44006 LS SP-44007 LS SP1 JJ SP1-plus JJ SPAN NNP SPCA NNP SPECIALIZED JJ SPENDING NN SPENT VBD SPERANDEO NNP SPLIT-UP NN SPORTS NNS SPRINGFIELD NNP SPRUCING VBG SPWL NNP SQUARE NNP SQUIBB NNP SR NNP SRELEASE NN SRESERVE NN SRS NNP SS NNP SS-18s NNS SS-20 NNP SS-20s NNPS SS-24 NNP SS-24s NNPS SS-25 NNP SS-25s NNPS SS. NNP SSI NNP SSMC NNP SST NNP STAGED VBD STANDARDS NNPS STANLEY NNP STAR NN STAR-STUDDED JJ STARS NNP START NNP STARTING NNP STATE NNP STATES NNS STC NNP STEEL NNP STERLING NNP STET NNP STOCK NN STOCK-INDEX NN STOCKS NNS STODGY JJ STOPPED VBN STORES NNP STREET NNP STRIP VB STRIPES NNP STRUCK VBD STRUGGLED VBD STS NNP STSN NNP STUBBED VBN STUDENTS NNS STUDIES NNS STUDY NN SU-27 NN SUBURBIA NN SUES VBZ SUGAR NN SUIT NN SUN NNP SUNDSTRAND NNP SUNY NNP SUPERIOR NNP SUPERPOWERS NNPS SUPREME NNP SURGED VBD SURVEYS NNS SUSPECT JJ SUSPENDED VBD SV-10 NN SW NNP SWAO NNP SWAPO NNP SWC NNP SWIFT NNP SWITCH NN SWITCHING VBG SWUNG VBD SX-21 NNP SYDNEY-Qintex NNP SYSCO NNP SYSTEMS NNP Sa'dawi NNP Sa-Duk NNP Saab NNP Saab-Scania NNP Saabye NNP Saadi NNP Saalfeld NNP Saatchi NNP Saatchis NNPS Saba NNP Sabaneta NNP Sabbath NNP Sabella NNP Sabena NNP Sabha NNP Sabhavasu NNP Sabina NNP Sabinas FW Sabine NNP Sabinson NNP Sable NNP Sabo NNP Sabol NNP Sabras NNS Sabre NNP Sabreliner NNP Sabrina NN Sacco NNP Sacheverell NNP Sachs NNP Sack NNP Saco NNP Sacramento NNP Sacramento-based JJ Sacre NNP Sacred NNP Sacremento NNP Sacrestia NNP Sacrifice NN Sacrifices NNS Sad JJ Sadakane NNP Saddam NNP Saddle NNP Sadie NNP Sadler NNP Sadly RB Safari NNP Safavids NNPS Safe NNP Safeco NNP Safeguards NNS Safely RB Safer NNP Safety NNP Safety-Kleen NNP Safeway NNP Saffer NNP Safford NNP Safi NNP Safra NNP Saftey NNP Sag NNP Saga NNP Sagami NNP Sagan NNP Sage NNP Sago NNP Sagos NNS Sahara NNP Sahjunt NNP Sahour NNP Saicheua NNP Said VBD Saigon NNP Sail NNP Sailing NNP Sailor NNP Sailors NNS Sain NNP Sainsbury NNP Saint NNP Saint-Geours NNP Saint-Saens NNP Sainte-Chapelle NNP Sainted NNP Saints NNP Saintsbury NNP Saison NNP Saitama NNP Saito NNP Saitoti NNP Sajak NNP Sakaguchi NNP Sakata NNP Sake FW Sakellariadis NNP Sakellariadises NNS Sakharov NNP Saklad NNP Sako NN Sakowitz NNP Saks NNP Sakura NNP Sal NNP SalFininistas NNP Sala NNP Salaam FW Salads NNS Salamander NNP Salang NNP Salant NNP Salaries NNS Salary NN Salazar NNP Sale NNP Saledo NNP Saleh NNP Salem NNP Salembier NNP Salerno NNP Salerno-Sonnenberg NNP Sales NNS Salesman NN Salesmanship NN Salespeople NNS Salhany NNP Salida NNP Salim NNP Salina NNP Salinas NNP Salinger NNP Salinity NN Salins NNP Salisbury NNP Salish NNP Saliva NN Salive NNP Salk NNP Salle NNP Sallie NNP Sally NNP Salman NNP Salmon NNP Salomon NNP Salomonovich NNP Salon NNP Saloojee NNP Saloon NNP Salpetriere NNP Salsich NNP Salt NNP Salted JJ Salter NNP Saltiel NNP Saltis-McErlane NNP Salton NNP Saltonstall NNP Salty NNP Saltzburg NNP Salu NNP Salvador NNP Salvadoran JJ Salvadorans NNS Salvagni NNP Salvation NNP Salvatore NNP Salvatori NNP Salvesen NNP Salwen NNP Salyer NNP Salzgitter NNP Salzman NNP Sam NNP Samakow NNP Samar NNP Samara NNP Samaritan NNP Samaritans NNS Samba NNP Sambuca NNP Same JJ Same-store JJ Sameness NN Samengo-Turner NNP Samford NNP Sammartini NNP Sammi NNP Sammy NNP Sammye NNP Samnick NNP Samoa NNP Samoilov NNP Samovar NNP Samper NNP Sample NN Samples NNS Sampson NNP Samson NNP Samsung NNP Samsung-Corning NNP Samuel NNP Samuels NNP Samuelson NNP Samurai NNP San NNP SanAntonio NNP Sanaa NNP Sanatorium NNP Sanchez NNP Sancho NNP Sancken NNP Sanctam NNP Sanctions NNS Sanctuary NNP Sand NNP Sandalphon NNP Sandalwood NNP Sandberg NNP Sandburg NNP Sandburgs NNPS Sande NNP Sander NNP Sanderoff NNP Sanders NNP Sanderson NNP Sandhills NNP Sandhurst NNP Sandia NNP Sandifer NNP Sandinista NNP Sandinistas NNPS Sandinistas... : Sandip NNP Sandler NNP Sandlund NNP Sandman NNP Sandner NNP Sandor NNP Sandoz NNP Sandra NNP Sandro NNP Sands NNP Sandusky NNP Sandwich NNP Sandwiched VBN Sandwiches NNS Sandy NNP Sane NNP Sanford NNP Sang NNP Sanga NNP Sangallo NNP Sangamon NNP Sanger NNP Sanger-Harris NNP Sangetsu NNP Sangyo NNP Sanitary NNP Sanitation NNP Sanity NN Sanjay NNP Sanjiv NNP Sanka NNP Sankai NNP Sankei NNP Sankyo NNP Sanlandro NNP Sann NNP Sanraku NNP Sans NNP Sansom NNP Sansome NNP Sanson NNP Sansone NNP Sansui NNP Sant NNP Sant'Angelo NNP Santa NNP Santacruz NNP Santamaria NNP Santas NNPS Santayana NNP Sante NNP Santiago NNP Santiveri NNP Santo NNP Santovenia NNP Santry NNP Santucci NNP Sanwa NNP Sanyo NNP Sao NNP Saouma NNP Sapanski NNP Saperstein NNP Sapio NNP Sapp NNP Sappho NNP Sapporo NNP Sara NNP Saracens NNPS Sarah NNP Saran NNP Sarandon NNP Sarasate NNP Sarason NNP Sarasota NNP Saratoga NNP Sarawak NNP Sardanapalus NNP Sardi NNP Sardina NNP Sardinia NNP Sargent NNP Sark NNP Sarkees NNP Sarmi NNP Sarney NNP Sarpsis NNP Sarrebourg NNP Sarsaparilla NN Sarti NNP Sartoris NNP Sartre NNP Sarum NNP Sary NNP Sary-Shagan NNP Sasaki NNP Sasea NNP Sasebo NNP Sasha NNP Sashimi FW Saskatchewan NNP Sass NNP Sasser NNP Sassy NNP Sat VBD Satan NNP Satanic JJ Satellite NNP Satellites NNS Satires NNPS Satis NNP Satisfaction NN Satisfactory JJ Satisfied VBN Satisfying VBG Satoh NNP Satoko NNP Satoshi NNP Satrum NNP Satterfield NNP Sattig NNP Saturated JJ Saturday NNP Saturday-night JJ Saturdays NNPS Saturn NNP Sauce NNP Saucer NNP Saucony NNP Saud NNP Saudi NNP Saudi-American NNP Saudis NNPS Sauerteig NNP Saul NNP Saull NNP Sault NNP Saunder NNP Saunders NNP Saundra NNP Saupiquet NNP Sausage NNP Sausalito NNP Sauter NNP Sauter\/Piller\/Percelay NNP Sauternes NNP Sauvignon NNP Savage NNP Savageau NNP Savaiko NNP Savannah NNP Savannakhet NNP Savath NNP Save VB Saved NNP Savelyeva NNP Savers NNP Saveth NNP Saville NNP Savimbi NNP Savin NNP Saving VBG Savings NNP Savior NNP Saviour NNP Savoca NNP Savona NNP Savonarola NNP Savory JJ Savoy NNP Savoyards NNP Saw VBD Sawalisch NN Sawallisch NNP Sawhill NNP Sawicki NNP Sawnders NNP Sawyer NNP Saxe NNP Saxon NNP Saxons NNP Saxony NNP Saxton NNP Say VB Sayegh NNP Sayers NNP Saying VBG Sayles NNP Saylor NNP Sayre NNP Says VBZ SbCs-type JJ Scala NNP Scale NNP Scalfaro NNP Scali NNP Scalia NNP Scam NN Scambio NNP Scampini NNP Scams NNS Scan NNP Scana NNP Scandal NN Scandalios NNP Scandanavian JJ Scandia NNP Scandinavia NNP Scandinavian NNP Scandinavians NNPS Scania NNP Scanlon NNP Scannell NNP Scanner NNP Scapin NNP Scarborough NNP Scarcity NN Scare NNP Scared VBN Scarface NNP Scaring VBG Scarlatti NNP Scarlet NNP Scarpia NNP Scarsdale NNP Scasi NNP Scattered VBN Scenario NN Scenarios NNS Scene NNP Scenes NNS Scenic JJ Schaack NNP Schaaf NNP Schabowski NNP Schacht NNP Schachter NNP Schaefer NNP Schaeffer NNP Schafer NNP Schaffner NNP Schall NNP Schang NNP Schantz NNP Schapiro NNP Schaumburg NNP Schechter NNP Schedule NNP Scheduled VBN Schedules NNS Scheetz NNP Scheherazade NNP Schein NNP Schell NNP Schelling NNP Schellke NNP Schemes NNS Schenectady NNP Schenk NNP Schenley NNP Scherer NNP Schering NNP Schering-Plough NNP ScheringPlough NN Schicchi FW Schick NNP Schieffelin NNP Schiele NNP Schiff NNP Schiffs NNPS Schilling NNP Schillinger NNP Schimberg NNP Schimmel NNP Schindler NNP Schlang NNP Schleiermacher NNP Schlek NNP Schlemmer NNP Schlesinger NNP Schleswig-Holstein NNP Schley NNP Schlieren NNP Schlitz NNP Schloss NNP Schlossberg NNP Schlumberger NNP Schmalensee NNP Schmalma UH Schmalzried NNP Schmedel NNP Schmetterer NNP Schmidl-Seeberg NNP Schmidlin NNP Schmidt NNP Schmidt-Chiari NNP Schmitt NNP Schmolka NNP Schmotter NNP Schnabel NNP Schnabel-Pro NNP Schnabelian JJ Schnacke NNP Schnader NNP Schneider NNP Schneier NNP Schnitz NNP Schnitzer NNP Schnuck NNP Schober NNP Schoch NNP Schockler NNP Schoder NNP Schoenberg NNP Schoeneman NNP Schoenfeld NNP Schoenholtz NNP Schoeppner NNP Scholar NNP Scholars NNPS Scholarship NN Scholastic NNP Scholastica NNP Scholey NNP Schonberg NNP Schone NNP School NNP Schoolmarm NN Schools NNP Schopenhauer NNP Schorr NNP Schott NNP Schottenstein NNP Schotter NNP Schraffts NNP Schrage NNP Schrager NNP Schramm NNP Schreibman NNP Schreyer NNP Schrier NNP Schroder NNP Schroders NNP Schroeder NNP Schroer NNP Schroll NNP Schrunk NNP Schubert NNP Schubert-Beethoven-Mozart JJ Schueler NNP Schuette NNP Schuler NNP Schuller NNP Schulman NNP Schulof NNP Schulte NNP Schultz NNP Schulz NNP Schulze NNP Schumacher NNP Schuman NNP Schumann NNP Schumer NNP Schumpeter NNP Schuster NNP Schutz NNP Schuyler NNP Schuylkill NNP Schwab NNP Schwada NNP Schwalbe NNP Schwartau NNP Schwartz NNP Schwartzman NNP Schwarz NNP Schwarzen FW Schwarzenberger NNP Schwarzer NNP Schwarzkopf NNP Schwarzman NNP Schwarzwaldklinik NNP Schweicker NNP Schweiker NNP Schweitzer NNP Schweitzers NNPS Schweiz NNP Schweizer NNP Schweizerische NNP Schwemer NNP Schwemm NNP Schwengel NNP Schweppes NNP Schwerdt NNP Schwerin NNP Schwinn NNP Sci-Med NNP SciMed NNP Science NNP Sciences NNPS Scientech NNP Scientific NNP Scientific-Atlanta NNP Scientifique NNP Scientists NNS Scientology NNP Scituate NNP Scobee-Frazier NNP Scofield NNP Scolatti NNP Scollard NNP Scopes NNP Scopo NNP Score VB Scorecard NNP Scores NNS Scoring NNP Scorpio NNP Scorpios NNPS Scorsese NNP Scot NNP Scotch NNP Scotch-Irish-Scandinavian NNP Scotch-and-soda NN Scotchgard NNP Scotchman NN Scotia NNP Scotia-McLeod NNP Scotian NNP Scotland NNP Scots NNS Scott NNP Scottish NNP Scottish-born JJ Scotto NNP Scotts NNP Scottsdale NNP Scotty NNP Scout NNP Scouting VBG Scouts NNPS Scowcroft NNP Scrabble NNP Scrambling VBG Scranton NNP Scrap NN Scrapings NNS Scrapiron NNP Scraps NNS Scratch NN Scratchard NNP Scratching VBG Screen NN Screenwriter NN Screvane NNP Screw NNP Screwed JJ Scribe VB Scrimgeour NNP Scripp NNP Scripps NNP Scripps-Howard NNP Scriptural JJ Scripture NNP Scriptures NNPS Scrivener NNP Scrooge-like JJ Scrub VB Scrum NNP Scrupulous JJ Scudder NNP Scull NNP Sculley NNP Scully NNP Scurlock NNP Scwhab NNP Scypher NNP Se NNP Sea NNP Sea-Land NNP Sea-road NN SeaEscape NNP SeaFest\/JAC NNP Seaboard NNP Seaborg NNP Seabrook NNP Seacomb NNP Seafirst NNP Seafood NN Seaga NNP Seagate NNP Seagle NNP Seagoville NNP Seagram NNP Seagull NNP Seahorse NNP Seal NNP Sealed NNP Sealey NNP Sealtest NNP Seaman NNP Sean NNP Seaquarium NNP Sear VB Searby NNP Search VB Searching VBG Searle NNP Searles NNP Sears NNP Sears-McDonald NNP Seas NNP Seashore NNP Season NN Seasonal JJ Seasonally RB Seasoned JJ Seasonings NNPS Seasons NNPS Seat NN Seated VBN Seaton NNP Seats NNS Seattle NNP Seattle-First NNP Seattle-Northwest NNP Seattle-based JJ Seattlite NNP Seattlites NNS Sebastian NNP Sec. NN Secaucus NNP Secesh NNP Secilia NNP Seco NNP Secom NNP Secomerica NNP Second JJ Second-half JJ Second-highest JJ Second-quarter NNP Second-tier JJ Secondary JJ Secondly RB Seconds NNS Secord NNP Secrecy NN Secret NNP Secretariat NNP Secretariate NNP Secretaries NNPS Secretary NNP Secretary-General NNP Secretary-designate NNP Secretion NN Section NN Sections NNS Sector NNP Secular JJ Secure VB Secured JJ Securities NNPS Securities-trading JJ Security NNP Security-Connecticut NNP Secutities NNPS Sedan NNP Seddon NNP Sedgwick NNP Sedimentation NN Sedona NNP Seduction NN See VB See-through JJ Seebohm NNP Seed NN Seeds NNS Seeing VBG Seek NNP Seeking VBG Seekonk NNP Seeks VBZ Seelbinder NNP Seelenfreund NNP Seeley NNP Seelig NNP Seeming VBG Seemingly RB Seems VBZ Seen VBN Seerey NNP Sees VBZ Sega NNP Segal NNP Segalas NNP Segall NNP Segar NNP Seger NNP Seger-Elvekrog NNP Segnar NNP Segovia NNP Segundo NNP Segur NNP Segura NNP Seib NNP Seidel NNP Seiders NNP Seidler NNP Seidman NNP Seife NNP Seifert NNP Seigel NNP Seigner NNP Seiki NNP Seiko NNP Seikosha NNP Seiler NNP Seimei NNP Seiren NNP Seisakusho NNP Seismographic NNP Seita NNP Seitz NNP Seiyu NNP Seize NNP Seizes VBZ Seizin VBG Seizing VBG Sejm NNP Sekel NNP Sekisui NNP Seko NNP Selassie NNP Selavo NNP Selden NNP Seldes NNP Seldom RB Select NNP Selected JJ Selecting VBG Selection NN Selections NNS Selective JJ Selectives NNPS Selectmen NNS Selectol NNP Selena NNP Self NNP Self-Government NNP Self-censorship NN Self-contained JJ Self-criticism NN Self-designated JJ Self-expression NN Self-sufficiency NN Selig NNP Seligman NNP Selkin NNP Selkirk NNP Selkirkers NNS Sell VB Sellars NNP Seller NN Sellers NNP Selling VBG Sells NNP Selma NNP Selman NNP Selmer-Sande NNP Seltzer NNP Selve NNP Selway-Swift NNP Selwyn NNP Selz NNP Semegran NNP Semel NNP Semenov NNP Semi-Tech NNP Semiconductor NNP Semiconductors NNPS Semifinished VBN Seminar NNP Seminario NNP Seminary NNP Seminole NNP Semiramis NNP Semmel NNP Semmelman NNP Semmes NNP Semon NNP Semple-Lisle NNP Semra NNP Sen NNP Sen. NNP Senate NNP Senate-House NNP Senate-backed JJ Senate-passed JJ Senator NNP Senators NNS Send VB Sendler NNP Sener NNP Senesac NNP Senese NNP Seng NNP Senior JJ Seniors NNS Senium FW Senk NNP Senor NNP Senora NNP Senorita NNP Sens. NNP Sense NN Sensenbrenner NNP Senshukai NNP Sensibility NN Sensing VBG Sensitive JJ Sensor NNP Sent VBN Sentelle NNP Sentence NN Sentences NNS Sentencing NN Sentiment NN Sentiments NNS Sentor NNP Sentra NNP Sentry NNP Seoul NNP Seoul-Moscow NNP Separate JJ Separately RB Separating VBG Separation NN Sept NNP Sept. NNP Sept.1 NNP Sept.30 CD September NNP September-October NNP Sepulveda NNP Sequa NNP Sequent NNP Sequester NN Sequoia NNP Serafin NNP Serbantian NNP Serenade NNP Serene NNP Serenissimus NNP Serenity NN Serex NNP Serge NNP Sergeant NNP Sergei NNP Sergio NNP Sergiusz NNP Serial JJ Series NNP Serieuses NNP Serif NNP Serious JJ Serkin NNP Serlin NNP Sermon NN Serological JJ Serpentine NNP Serra NNP Serrana NNP Serum NN Serv-Air NNP Servanda FW Servant NNP ServantCor NNP Servatius NNP Serve VB Serve-Air NNP Served VBN Serves VBZ Service NNP ServiceMaster NNP Services NNPS Services\/Japan NNP Servicios NNP Servifilm NNP Serving VBG Servive NNP Sesame NNP Sesit NNP Seso NNP Sesshu NNP Session NN Sessions NNP Set VB Seth NNP Sethness NNP Seto NNP Seton NNP Sets NNS Setsuo NNP Setter NN Setting VBG Settle VB Settled VBN Settlement NN Settlements NNP Seung NNP Seurat NNP Seven CD Seven-Eleven NNP Seven-Up NNP Seventeen CD Seventeenth JJ Seventh NNP Seventies NNPS Seventy CD Seventy-fourth NNP Seventy-nine JJ Seventy-seven JJ Seventy-six JJ Severa NNP Several JJ Severe JJ Severence NNP Severna NNP Severs NNP Seveso NNP Sevigli NNP Sevigny NNP Seville NNP Sevin NN Sewage NNP Sewanee NNP Seward NNP Sewell NNP Sewer NNP Sewickley NNP Sewing NNP Sex NN Sexism NN Sextet NNP Sexton NN Sextuor NNP Sexual NNP Sexy JJ Seydoux NNP Seymour NNP Seynes NNP Sez NNP Sforzt NNP Sgt. NNP Sha. NNP Shabbat NNP Shack NNP Shad NNP Shade NNP Shades NNP Shadow NNP Shady NNP Shaefer NNP Shaevitz NNP Shafer NNP Shaffer NNP Shaffner NN Shafroth NNP Shagan NNP Shah NNP Shahal NNP Shahn NNP Shahon NNP Shahrabani NNP Shahrokh NNP Shaiken NNP Shak. NNP Shakarchi NNP Shake VB Shaken VBN Shaker NNP Shakes VBZ Shakespeare NNP Shakespearean JJ Shakespearian JJ Shaking VBG Shakshuki NNP Shakya NNP Shale NNP Shales NNP Shall MD Shalom NNP Shalov NNP Shame NNP Shamir NNP Shampoo NNP Shamrock NNP Shamu NNP Shan NNP Shandong NNP Shane NNP Shanghai NNP Shanghai-born JJ Shangkun NNP Shangri-La NNP Shank NNP Shanken NNP Shanker NNP Shann NNP Shannon NNP Shansi NNP Shanties NNPS Shantou NNP Shantung NNP Shantytowns NNS Shantz NNP Shanyun NNP Shape NNP Shaped JJ Shapes NNS Shapiro NNP Shapovalov NNP Shardlow NNP Share NN ShareData NNP Sharecropping NN Shared NNP Shareholder NN Shareholders NNS Sharer NNP Shares NNS SharesBase NNP Sharfman NNP Shari NNP Sharing VBG Sharkey NNP Sharon NNP Sharp NNP Sharp-witted JJ Sharpe NNP Sharpest JJS Sharply RB Sharps NNP Sharpshooter NNP Sharpshooters NNPS Sharrock NNP Shartzer NNP Shatilov NNP Shattered JJ Shattuck NNP Shaughnessy NNP Shaver NNP Shaving NNP Shaw NNP Shaw-Crier NNP Shaw-Walker NNP Shawano NNP Shawl NN Shawmut NNP Shawn NNP Shawnee NNP Shawomet NNP Shay NNP Shayne NNP Shayol NNP Shays NNP Shcherbitsky NNP She PRP She'arim NNP Shea NNP Shealy NNP Shearing NNP Shearman NNP Shearn NNP Shearon NNP Shearson NNP Sheboygan NNP Sheckley NNP Shedding VBG Sheehan NNP Sheehy NNP Sheen NNP Sheena NNP Sheep NNP Sheer NNP Sheeran NNP Sheet NNP Sheeting NN Sheets NNP Sheffield NNP Shegog NNP Sheik NNP Sheila NNP Sheinberg NNP Sheindlin NNP Sheiner NNP Shelagh NNP Shelby NNP Shelbyville NNP Sheldon NNP Shell NNP Sheller-Globe NNP Shelley NNP Shellpot NNP Shelly NNP Shelter NN Shelters NNPS Shelton NNP Shemiatenkov NNP Shemona NNP Shenandoah NNP Shensi NNP Shenzhen NNP Shep NNP Shepard NNP Shepherd NNP Shepherds NNPS Shepperd NNP Sheraton NNP Sheraton-Biltmore NNP Sheraton-Dallas NNP Sheraton-Pan NNP Sherblom NNP Shere NNP Sheremetyevo NNP Sheri NNP Sheridan NNP Sheriff NNP Sherlock NNP Sherlund NNP Sherman NNP Sherren NNP Sherrie NNP Sherrill NNP Sherry NNP Sherwin NNP Sherwin-Williams NNP Sherwood NNP Shevack NNP Shevardnadze NNP Shevchenko NNP Shh UH Shi'ite NNP Shicoff NNP Shidler NNP Shield NNP Shields NNP Shietz NNP Shiflett NNP Shiftan NNP Shifte NNP Shige NNP Shigeru NNP Shigezo NNP Shih NNP Shiite NNP Shiites NNPS Shijie NNP Shikotan NNP Shilling NNP Shillong NNP Shiloh NNP Shima NNP Shimbun NNP Shimizu NNP Shimon NNP Shimson NNP Shin NNP Shin-Daiwa NNP Shinagawa NNP Shinbun NNP Shine NNP Shing NNP Shingles NNS Shining NNP Shinn NNP Shinpan NNP Shintaro NNP Shintoism NNP Shinton NNP Shiny NNP Shionogi NNP Shioya NNP Ship NNP Shipbuilders NNPS Shipbuilding NNP Shipley NNP Shipman NNP Shipments NNS Shippers NNS Shippey NNP Shippin VB Shipping NNP Shippings NNS Ships NNS Shipston NNP Shipyard NNP Shipyards NNP Shira NNP Shiremanstown NNP Shirer NNP Shires NNP Shirl NNP Shirley NNP Shirt NNP Shirwen NNP Shiseido NNP Shit NN Shitts NNP Shiu-Lok NNP Shivering VBG Shivers NNP Shizue NNP Shlaes NNP Shlenker NNP Shlomo NNP Shoals NNP Shochiku NNP Shochiku-Fuji NNP Shock NN Shocked VBN Shoe NNP Shoemaker NNP Shoettle NNP Shogun NNP Shoichi NNP Shoichiro NNP Shokubai NNP Sholom NNP Shoney NNP Shook VBD Shooter NNP Shootin VBG Shooting NN Shop NNP Shopkorn NNP Shoppers NNS Shoppes NNP Shopping NNP Shoppsers NNS Shops NNPS Shore NNP Shoreline NN Shores NNP Shorn VBN Short JJ Short-sellers NNP Short-term JJ Shortage NN Shortageflation NN Shortages NNS Shortcuts NNS Shorted JJ Shortening VBG Shorter JJR Shorting NN Shortly RB Shortridge NNP Shortstop NNP Shostakovich NNP Shot VBN Shotgun-type JJ Shotguns NNS Shots NNS Shotwell NNP Should MD Shoulder NN Shouldering VBG Shoup NNP Shoupe NNP Shout VB Shoutout VB Show NNP ShowBiz NNP Showa NNP Showalter NNP Showbiz NNP Showdown NNP Showers NNP Showing VBG Showmanship NN Showrooms NNS Shows NNS Showtime NNP Shreveport NNP Shrewd JJ Shrewsbury NNP Shribman NNP Shrieves NNP Shrine NNP Shrinking VBG Shriver NNP Shroeder NNP Shrontz NNP Shropshire NNP Shrove NNP Shrubs NNS Shrug NN Shrugged VBN Shrugs NNP Shrum NNP Shtern NNP Shtromas NNP Shu NNP Shu-tt VB Shucks UH Shugart NNP Shui NNP Shuiski NNP Shukri NNP Shulman NNP Shultis NNP Shultz NNP Shuman NNP Shun NNP Shunted VBN Shupe NNP Shurtleff NNP Shut VB Shutter NNP Shuttle NNP Shuwa NNP Shuxian NNP Shuz NNP Shvartzer NNP Shvets NNP Shy JJ Shycon NNP Shylock NNP Shylockian JJ Si NNP SiH NN Siad NNP Siam NNP Siamese NNP Siano NNP Sibaral NNP Siberia NNP Siberian JJ Sibley NNP Sibling NN Sibly NNP Sibra NNP Sibson NNP Sibylla NNP Sibyls NNPS Sic FW Sichuan NNP Sicilian JJ Siciliana NNP Sicilians NNS Sicily NNP Sick NNP Sickness NN Sicurella NNP Sid NNP Sidak NNP Siddeley NNP Siddo NNP Side NNP Sidecar NN Sidekick NNP Sider NNP Sides NNP Sidestepping VBG Sidewalk NNP Sidewalks NNPS Sidhpur NNP Sidley NNP Sidley-Ashurst NNP Sidney NNP Sidorenko NNP Sidoti NNP Sidra NNP Sie FW Siebel NNP Siebern NNP Siebert NNP Sieckman NNP Siecle NNP Siecles NNPS Siedenburg NNP Siedlungs NNP Siegal NNP Siege NNP Siegel NNP Siegfried NNP Siegler NNP Siegman NNP Siemaszko NNP Siemens NNP Siemens-GEC-Plessey NNP Siemienas NNP Siena NNP Sienkiewicz NNP Siepi NNP Sierra NNP Sierras NNPS Sietsma NNP Sieux NNP Sievers NNP Siewert NNP Sifco NNP Sifton NNP Sigemund NNP Sighing VBG Sighting VBG Sigler NNP Sigma NNP Sigman NNP Sigmen NNP Sigmund NNP Sign NNP Signal NNP Signature NNP Signed VBN Signers NNS Signet NNP Significance NN Significant JJ Significantly RB Significants NNS Signor NNP Signora FW Signore NNP Signs NNS Sigoloff NNP Sigourney NNP Sigurd NNP Sihanouk NNP Sik NNP Sikes NNP Sikh NNP Sikhs NNPS Sikkim NNP Sikorski NNP Silas NNP Silber NNP Silberberg NNP Silberman NNP Silbermann NNP Silbert NNP Silence NN Silences NNS Silent NNP Silently RB Silesia NNP Silicon NNP Silk NNP Silkworms NNP Sill NNP Sills NNP Silly NNP Silone NNP Silva NNP Silver NN Silvercrest NNP Silverman NNP Silvers NNP Silvershoe NNP Silverstein NNP Silvio NNP Sim NNP Simai NNP Simak NNP Simat NNP Simba NNP Simca NNP Simeon NNP Simes NNP Similar JJ Similarities NNS Similarly RB Simmel NNP Simmer VB Simmon NNP Simmons NNP Simmonsville NNP Simms NNP Simon NNP Simonds NNP Simonds-Gooding NNP Simonelli NNP Simonson NNP Simpkins NNP Simple JJ Simplesse NNP Simplex JJ Simplification NN Simplot NNP Simply RB Simpson NNP Simpsons NNPS Sims NNP Simsbury NNP Simulated JJ Simulation NN Simulator NNP Simultaneous JJ Simultaneously RB Sin NNP Sin\/Your NNP Sinai NNP Sinan NNP Sinatra NNP Since IN Sincere NNP Sinclair NNP Sindona NNP Sinemet NNP Sinfonia NNP Sinfonica NNP Sing NNP Singapore NNP Singer NNP Singh NNP Singin VBG Singing VBG Single NNP Single-A-2 JJ Single-A-3 JJ Single-cell JJ Single-color JJ Single-occupancy NN Single-seeded JJ Single-subject JJ Singles NNS Singletary NNP Singleton NNP Sinhalese JJ Sinhalese-dominated JJ Sinhalese. JJ Siniscal NNP Sink NNP Sinkula NNP Sinner NNP Sino-British JJ Sino-Soviet JJ Sino-U.S. JJ Sino-foreign JJ Sinopoli NNP Sintel NNP Sintered VBN Sinton NN Sinyard NNP Sioux NNP Sipping VBG Sippl NNP Sir NNP Sirinjani NNP Sirot NNP Sirota NNP Sirowitz NNP Sirrine NNP Sirs NNPS Sis NNP Sischy NNP Sisk NNP Sisley NNP Sistemas NNP Sister NN Sisters NNP Sistine NNP Sisulu NNP Sit VB Sitco NNP Site NNP Sites NNS Sithe NNP Siti NNP Sitter NNP Sitting VBG Situated VBN Situation NNP Situations NNS Situs NN Sitwell NNP Sitz NNP Siva NNP Six CD Six-Day NNP Six-month JJ Six-year-old JJ Sixteen CD Sixteenth NNP Sixth NNP Sixties NNPS Sixty CD Sixty-eighth NNP Sixty-five JJ Sixty-seven CD Sizable JJ Size NN Sizova NNP Sizwe NNP Sizzling JJ Skadden NNP Skaggs NNP Skala NNP Skandia NNP Skandinaviska NNP Skanska NNP Skase NNP Skates NNP Skating NNP Skeletal JJ Skelly NNP Skelton NNP Skeoch NNP Skepticism NN Skeptics NNS Ski NNP Skid NNP Skidmore NNP Skies NNPS Skiing NN Skill JJ Skilled JJ Skillman NNP Skills NNS Skilton NNP Skim JJ Skinner NNP Skinnerish JJ Skinny NNP Skip VB Skipjack NNP Skipper NNP Skipping VBG Skippy NNP Skittish JJ Skiway NNP Skoal NNP Skokie NNP Skolkau NNP Skolman NNP Skolniks NNP Skolovsky NNP Skopas NNP Skopbank NNP Skorich NNP Skrunda NNP Skubal NNP Skulls NNS Sky NNP Sky-god NNP SkyWest NNP Skybolt NN Skydome NNP Skye NNP Skylark NNP Skyline NNP Skypak NNP Skyros NNP Skywalker NNP Skywave NNP Skyway NNP Slab NN Slack NNP Slackened VBN Slash VB Slash-B NNP Slate NNP Slated VBN Slater NNP Slatkin NNP Slaughter NNP Slavery NN Slavic NNP Slavin NNP Slavs NNPS Slay VBP Sleep NN Sleep-disorder JJ Sleeper NNP Sleepers NNP Sleepily RB Sleepinal NNP Sleeping NNP Sleepwalkers NNS Sleepwalking NN Sleepy-eyed JJ Sleight NNP Slemrod NNP Slenczynka NNP Slender JJ Slice NN Slick JJ Slickers NNPS Slider NNP Slides NNS Slight JJ Slightam NNP Slightly RB Slim NNP Slim-Fast NNP Slims NNPS Slippery NNP Slipping VBG Slivka NNP Slo-Flo NNP Sloan NNP Sloanaker NNP Sloane NNP Slobodin NNP Slocum NNP Slogan NNP Slope NNP Slosberg NNP Slote NNP Slotnick NNP Slough NNP Slovakia NNP Slovenia NNP Slovenian JJ Sloves NNP Slow JJ Slower JJR Slowing VBG Slowly RB Sludge NNP Slug VB Slugger NNP Sluggish JJ Slums NNP Slutsky NNP Slyke NNP Smaby NNP Smaedt NNP Smale NNP Small JJ Small-business NN Small-company JJ Small-lot JJ Small-stock NN Smaller JJR Smaller-stock JJR Smalling NNP Smallwood NNP Smart NNP Smarter RB Smartt NNP Smeal NNP Smedes NNP Smelov NNP Smelting NNP Smerdyakov NNP Smetek NNP Smilin NNP Smiling VBG Smirnoff NNP Smith NNP Smith-Colmer NNP Smith-Hughes NNP Smith-Kline NNP SmithKline NNP Smith\/Greenland NNP Smithfield NNP Smiths NNPS Smithson NNP Smithsonian NNP Smithtown NNP Smitty NNP Smoak NNP Smoke NNP Smokers NNS Smokey NNP Smokies NNPS Smoking NNP Smoky NNP Smoldering VBG Smolensk NNP Smoot-Hawley NNP Smorgon NNP Smug JJ Smukler NNP Smurfit NNP Smuzynski NNP Smyrna NNP Smyth NNP Smythe NNP Snack-food NN Snacking NN Snake NNP Snakes NNS Snap-On NNP Snapped VBD Snaresbrook NNP Snatchers NNPS Snatching VBG Snead NNP Sneaker NNP Snecma NNP Snedaker NNP Snedeker NNP Sneed NNP Snelling NNP Snellville NNP Snezak NNP Sniffing VBG Sniffle NNP Sniper NNP Snodgrass NNP Snook NNP Snoopy NNP Snoozing VBG Snopes NNP Snow NNP Snowball NN Snowmass NNP Snuff NNP Snug-Grip NNP Snuggle NNP Snyder NNP So RB So-Ho NNP So-called JJ So-so NN SoHo NNP Soak VB Soap NNP Soapy JJ Soares-Kemp NNP Soaring VBG Soba FW Sobel NNP Sober NNP Sobey NNP Sobibor NNP Soccer NNP Sochaux NNP Sochi NNP Social NNP Socialism NN Socialist NNP Socialist-led JJ Socialists NNS Socialization NN Societa NNP Societe NNP Societies NNS Society NNP Socinianism NNP Sociological JJ Sock VB Socola NNP Soconoco NNP Socrates NNP Soda NNP Soderblom NNP Sodium NN Soeren NNP Soering NNP Sofia NNP Sofitel NNP Soft JJ Soft-Sell JJ Soft-drink NN Soft-spoken JJ SoftLetter NNP Softener NN Softer JJR Softer-than-expected JJ Softletter NNP Softly RB Softness NN Softsoap NNP Software NNP Sogo NNP Sohmer NNP Sohn NNP Soho NNP Soichiro NNP Soifer NNP Soignee FW Soil NN Soir NNP Soiree NNP Sojourner NNP Sojuzpushnina NNP Sokol NNP Sokolev NNP Sokolov NNP Sokolsky NNP Sol NNP Solaia NNP Solana NNP Solano NNP Solar NNP Solar-powered JJ Solarz NNP Solchaga NNP Sold VBN Soldado NNP Soldatenko NNP Solder VB Soldier NNP Soldiers NNS Sole NNP Solebury NNP Soleil NNP Solel NNP Solemnis NNP Solemnly RB Soler NNP Solesmes NNP Solicitor NNP Solid JJ Solidarity NNP Solidarity-led JJ Solidarityled NNP Solihull NNP Solis-Cohen NNP Solitudinem FW Soliz NNP Soll NNP Solloway NNP Solly NNP Solna NNP Solo NNP Solodar NNP Solomon NNP Solomon-like JJ Solomonic JJ Solomons NNPS Solon NNP Soloviev NNP Soloviev-Sedoi NNP Solovyov NNP Solow NNP Solution NNP Solutions NNPS Solvay NNP Solved VBD Solving VBG Solzhenitsyn NNP Somali JJ Somalia NNP Somalis NNPS Somay NNP Sombrotto NNP Some DT Somebody NN Someday RB Somehow RB Someone NN Somers NNP Somersaults NNS Somerset NNP Somerville NNP Something NN Sometime RB Sometimes RB Somewhat RB Somewhere RB Sommer NNP Sommers NNP Somoza NNP Son NNP Son-of-DAT NNP Sonambula NNP Sonar NN Sonata NNP Sonatas NNS Sonates NNPS Sondheim NNP Sonenberg NNP Sonet NNP Sonet-based JJ Sonet-compatible JJ Song NNP Song-sam NNP Songau NNP Songbag NNP Songs NNPS Sonia NNP Sonic JJ Sonja NNP Sonnenschein NNP Sonnett NNP Sonni NNP Sonntag FW Sonny NNP Sonoma NNP Sonora NN Sons NNP Sontag NNP Sonuvabitch UH Sony NNP Sony-Columbia JJ Sony-owned JJ Sony\/Columbia NNP Soo NNP Soon RB Sooner RB Sooraji NNP Soothing VBG Soothsayer NNP Sophia NNP Sophias NNP Sophie NNP Sophisticated JJ Sophoclean NNP Sophocles NNP Sophomore NN Sophomores NNS Sopsaisana NNP Sorbus NNP Sore JJ Sorecom NNP Soren NNP Sorenson NNP Sorge NNP Soria NNP Sorkin NNP Soros NNP Sorrell NNP Sorrentine NNP Sorrentino NNP Sorrow NNP Sorry JJ Sort NN Sorting VBG Sosnick NNP Sosnoff NNP Sosuke NNP Sotela NNP Sotheby NNP Sotnikov NNP Soto NNP Sotun NNP Souci NNP Soucy NNP Soukhouma NNP Soul NNP Soule NNP Sound NNP SoundView NNP Sounder NNP Sounds VBZ Soundview NNP Sounion NNP Soup NNP Souper NNP Souphanouvong NNP Soups NNP Soupy JJ Sour NNP Source NN Source:New NNP Sources NNS Sourcing VBG Sousa NNP South NNP South-Asian NNP South-East NNP Southam NNP Southampton NNP Southbrook NNP Southdown NNP Southeast NNP Southeastern NNP Southern NNP Southern-Republican NNP Southerner NNP Southerners NNPS Southey NNP Southfield NNP Southgate NNP Southhampton NNP Southlake NNP Southland NNP Southlife NNP Southmark NNP Southmark-sponsored JJ Southmark-supported JJ Southmark\/Envicon NNP Southon NNP Southport NNP Souths NNPS Southwest NNP Southwestern NNP Southwide NNP Southwood NNP Souvanna NNP Souza NNP Sovereign NNP Soviet JJ Soviet-American JJ Soviet-Chinese NNP Soviet-Finnish JJ Soviet-German NNP Soviet-Israeli JJ Soviet-Korean JJ Soviet-Western NNP Soviet-accredited JJ Soviet-backed JJ Soviet-bloc JJ Soviet-built JJ Soviet-controlled JJ Soviet-finished JJ Soviet-made JJ Soviet-style JJ Soviet-supplied JJ Soviet-trained JJ Sovietized JJ Sovietologist NN Soviets NNPS Sovietskaya NNP Sovran NNP Sovtransavto NNP Sowell NNP Soweto NNP Sows NNS Sox NNP Soxhlet NN Soya NNP Soybean NN Soybeans NNS Soyuz NNP Soyuzgoscirk NNP Sp NNP SpA NNP Spa NNP Spaarbank NNP Space NNP Space-net NNP Spaced NNP Spacenet NNP Spaces NNPS Spada NNP Spadafora NNP Spade NNP Spady NNP Spaeth NNP Spaghetti NNP Spagna FW Spago NNP Spahn NNP Spahnie NN Spahr NNP Spain NNP Spalding NNP Spalsbury NNP Spam NNP Span NN Spanberg NNP Spangenberg NNP Spangled NNP Spanish JJ Spanish-American NNP Spanish-born JJ Spanish-language JJ Spanish-speaking JJ Spanos NNP Spar NNP Sparc NNP Sparcstation NNP Spare JJ Spark NNP Sparkling NNP Sparkman NNP Sparks NNP Sparky NNP Sparling NNP Sparrow-size NNP Sparrows NNP Sparta NNP Spartan NNP Spatial JJ Spatiality NN Spaulding NNP Spaull NNP Speak VB Speaker NNP Speakers NNS Speakership NNP Speaking VBG Spear NNP Spec. NN Special JJ Special-election NN Special-interest JJ Specialist NNP Specialists NNS Specialized NNP Specially RB Specialties NNP Specialty NNP Species NNP Specific JJ Specific-Time NNP Specifically RB Specifications NNS Specifics NNS Specimens NNS Spectator NNP Spectators NNS Specter NNP Specthrie NNP Spector NNP Spectra NNS Spectradyne NNP Spectrum NNP Speculation NN Speculative JJ Speculators NNS Speeches NNS Speed NN Speedup NN Speedway NNP Speedy NNP Speer NNP Spegititgninino NNP Speidel NNP SpellRight NNP Spelling NNP Spelman NNP Spence NNP Spencer NNP Spencerian JJ Spend VB Spending NN Spendthrift NNP Spengler NNP Spenglerian JJ Spenser NNP Sperandeo NNP Sperling NNP Sperry NNP Spethmann NNP Spherical JJ Sphinx NNP Spic NNP Spice-Nice NNP Spicer NNP Spider NNP Spiegel NNP Spiegelman NNP Spielberg NNP Spielvogel NNP Spierer NNP Spievack NNP Spike NNP Spike-haired JJ Spikes NNP Spill NN Spillane NNP Spiller NNP Spilman NNP Spin NNP Spinco NNP Spinelli NNP Spinley NNP Spinnaker NNP Spinners NNPS Spinney NNP Spinning VBG Spinoffs NNS Spinola NNP Spinrad NNP Spiotto NNP Spirit NNP Spirited JJ Spirito NNP Spirits NNP Spiritual JJ Spirituals NNS Spiro NNP Spirrison NNP Spitalnick NNP Spitler NNP Spitzenburg NNP Splendid JJ Splendide NNP Splendor NN Splenomegaly NN Splinting NNP Split VBN Splits NNS Spofford NNP Spogli NNP Spoilage NN Spokane NNP Spoken NNP Spokesman NNP Spokesmen NNS Spokespersons NNS Spokeswomen NNS Sponge NNP Sponsor NNP Sponsored VBN Sponsors NNS Spontaneity NN Spontex NNP Spook VBP Spooked VBN Spoon NNP Sporadic JJ Sporkin NNP Sport NNP Sport-King NN Sportdom NN Sportin VBG Sporting NNP Sporto NNP Sports NNPS Sportscasters NNS Sportscreme NNP Sportsman NNP Sportsmen NNS Sportswear NNP Sportswriters NNS Sposato NNP Spot NN Spotlight NNP Spots NNS Spotted VBN Spouse NN Sprague NNP Spraying VBG Spread VB Spreading NNP Spreads NNS Sprecher NNP Sprenger NNP Spring NNP Springdale NNP Springerville NNP Springfield NNP Springing VBG Springs NNP Sprinkel NNP Sprinkle VB Sprinkled VBN Sprint NNP Sprite NNP Sprizzo NNP Sprouted VBN Sprouting NN Spruce NNP Spruell NNP Spruill NNP Sprung NNP Spumoni NNS Spurdle NNP Spurgeon NNP Spurred VBN Sputnik NNP Spuyten NNP Spy NNP Spycatcher NN Spycket NNP Squad NN Squadron NNP Squadrons NNP Square NNP Squaresville NNP Squat-style JJ Squats NNS Squatting VBG Squeezed VBN Squeezing VBG Squibb NNP Squier NNP Squint NN Squire NNP Squires NNP Sr NNP Sr. NNP Sri NNP SsangYong NNP Ssmc NN Sssshoo NN St NNP St-Laurent NNP St-story NN St. NNP St.-Pol NNP Staar NNP Stabat NNP Stabbert NNP Stabenau NNP Stabilizing VBG Stacey NNP Stack NNP Stacked JJ Stackup NNP Stacy NNP Stadium NNP Stadiums NNS Stadt NNP Stadtisches NNP Stadtmauer NNP Staff NNP Staffe NNP Staffers NNS Staffing NNP Stafford NNP Staffordshire NNP Staffs NNS Stag NNP Stage NNP Stagecoach NNP Staged VBN Staggeringly RB Stahl NNP Staiger NNP Stained VBN Staining VBG Stainless NNP Stains NNS Staircase NN Stairs NNP Stake VB Stakes NNP Stalag NNP Stale JJ Staley NNP Stalin NNP Stalingr NNP Stalinism NNP Stalinist JJ Stalinist-corrupted JJ Stalinists NNPS Stalins NNPS Stalk NNP Stalker NNP Stall NN Stallard NNP Stalled VBN Stalling VBG Stallings NNP Stallkamp NNP Stallone NNP Staloff NNP Stalone NNP Stals NNP Stamford NNP Stammering NN Stan NNP Stanbury NNP Stancs NNP Stand VB Standard NNP Standard-Times NNP Standard-issue JJ Standardization NN Standardized JJ Standards NNPS Standing VBG Stands NNP Stanford NNP Stanford-Idec NNP Stanger NNP Stanhope NNP Stanislas NNP Stanislav NNP Stanislaw NNP Staniszkis NNP Stanley NNP Stannard NNP Stans NNP Stansbery NNP Stansfield NNP Stanton NNP Stanwick NNP Stanza NNP Stapf NNP Staples NNP Stapleton NNP Star NNP Star-Spangled NNP Starbird NNP Starch NNP Stardel NNP Stardent NNP Stardust NN Staring VBG Stark NNP Starke NNP Starkey NNP Starkov NNP Starks NNP Starling NNP Starlings NNS Starpointe NNP Starr NNP Stars NNP Start VB Start-up JJ Started VBN Starter NNP Starting VBG Startled VBN Starts VBZ Starve NNP Starzl NNP Stash NNP Stat. NNP State NNP State-Local NNP State-capitol NN State-controlled JJ State-financed JJ State-owned JJ State-run JJ Stated VBN Statehood NNP Statehouse NN Statements NNS Staten NNP Stater NNP States NNPS States-Yugoslav NNP StatesWest NNP Statesman NNP Stateswest NNP Station NNP Stations NNS Statistical NNP Statistically RB Statistics NNP Statistique NNP Statue NNP Statues NNS Stature NN Status NN Status-roles NNS Statute NN Statutes NNS Statuto NN Stauffer NNP Staunton NNP Stavropoulos NNP Stay VB Ste. NNP Steady JJ Steak NNP Stealth NNP Steam NN Steamboat NNP Steamed VBN Steamship NNP Stearn NNP Stearns NNP Steckles NNP Stedt NNP Steel NNP Steele NNP Steelers NNP Steelmakers NNS Steelmaking NN Steels NNP Steelton NNP Steelworkers NNPS Steen NNP Steep NNP Steer VB Steeves NNP Stefan NNP Steffens NNP Steffes NNP Stegemeier NNP Stehelin NNP Stehlin NNP Steichen NNP Steidtmann NNP Steiger NNP Stein NNP Steinbach NNP Steinbeck NNP Steinbecks NNPS Steinberg NNP Steinbergs NNP Steinbrenner NNP Steiner NNP Steiners NNPS Steinhager NNP Steinhardt NNP Steinhart NNP Steinkerque NNP Steinkrauss NNP Steinkuehler NNP Steinkuhler NNP Steinman NNP Steinmetz NNP Stelco NNP Stella NNP Stellar NNP Stelzer NNP Stempel NNP Stems NNS Stena NNP Stena-Tiphook NNP Stendhal NNP Stendler NNP Stenexport NNP Stengel NNP Stenhach NNP Stenhachs NNPS Stenholm NNP Stennett NNP Stennis NNP Stensrud NNP Stenton NNP Step NN Stepanian NNP Stepanova NNP Stepanovich NNP Stephan NNP Stephane NNP Stephanie NNP Stephen NNP Stephens NNP Stephenson NNP Steppan NNP Steppel NNP Steppenwolf NNP Steppers NNPS Steps NNPS Stepson NNP Steptoe NNP Sterba NNP Sterbas NNPS Sterile NNP Sterilized JJ Sterling NNP Sterlings NNPS Stern NNP Stern-faced JJ Sternbach NNP Sternberg NNP Sternenberg NNP Steroids NNS Stertz NNP Stetson NNP Stetsons NNPS Stettin NNP Steuben NNP Steudler NNP Steve NNP Steven NNP Stevens NNP Stevenses NNPS Stevenson NNP Stevie NNP Stevric NNP Steward NN Stewart NNP Stibel NNP Stick NNP Sticker NN Stickers NNS Sticking NNP Stickler NN Stickney NNP Sticks NNP Stidger NNP Stieglitz NNP Stiemerling NNP Stifel NNP Stiff JJ Stifter NNP Stigmata NNS Stikeman NNP Stileman NNP Stiles NNP Stiling NNP Still RB Stiller NNP Stillerman NNP Stillwater NNP Stillwell NNP Stilts NNP Stimson NNP Stimulates VBZ Stimulating VBG Sting NNP Stinger NNP Stingers NNPS Stinky NNP Stinnett NNP Stinson NNP Stiritz NNP Stirlen NNP Stirling NNP Stirring VBG Stirs VBZ Stitched VBN Stjernsward NNP Stober NNP Stock NNP Stock-Index NN Stock-fund JJ Stock-index NN Stock-loan NN Stock-market NN Stockard NNP Stockbrokers NNS Stockdale NNP Stockgrowers NNPS Stockhausen NNP Stockholder NN Stockholders NNS Stockholm NNP Stockman NNP Stocks NNS Stocks\/Mutual NNP Stockton NNP Stoddard NNP Stoeckel NNP Stoecker NNP Stoecklin NNP Stoic NNP Stoic-patristic JJ Stoicism NN Stoics NNS Stokely NNP Stolen NNP Stolichnaya NNP Stoll NNP Stoller NNP Stolley NNP Stoltenberg NNP Stoltz NNP Stoltzman NNP Stolz NNP Stolzenbach NNP Stolzman NNP Stomach NNP Stone NNP Stone-Consolidated NNP Stonehenge NNP Stoneman NNP Stoner NNP Stoneridge NNP Stones NNP Stonestown NNP Stonewall NNP Stoneware JJ Stony NNP Stooges NNPS Stookey NNP Stoops NNP Stop VB Stop-Limit NNP Stop-close-only JJ Stop-limit JJ Stop-loss NN Stoppard NNP Stopped VBN Stopping VBG Stops NNP Storage NNP Store NNP Storehouse NNP Storekeepers NNS Storer NNP Storeria NNP Stores NNPS Stories NNP Stork NNP Storm NN Stormy NNP Story NNP Storyboard NNP Storyteller NNP Stotler NNP Stott NNP Stouffer NNP Stout NNP Stoutt NNP Stovall NNP Stover NNP Stowe NNP Stowey NNP Stoyer NNP Strafaci NNP Straight JJ Straight-Arm NNP Straighten VB Straightened VBN Straightening VBG Straights NNS Strait NNP Straits NNPS Stram NNP Stranahan NNP Strand NNP Strang NNP Strange JJ Strangelove NNP Strangely RB Stranger JJR Strangfeld NNP Strangler NNP Straniera NNP Strapless NNP Strasbourg NNP Strasny NNP Strasser NNP Strassner NNP Straszheim NNP Stratagene NNP Stratas NNP Strategic NNP Strategies NNS Strategists NNS Strategy NN Stratford NNP Stratforde NNP Stratton NNP Stratus NNP Straub NNP Straus NNP Strauss NNP Stravinsky NNP Strawberry NNP Strawbridge NNP Streak NNP Stream NNP Streep NNP Street NNP Street-inspired JJ Street-style JJ Streeter NNP Streeters NNP Streets NNP Streetspeak NNP Strehler NNP Streisand NNP Strekel NNP Strenger NNP Strength NN Strenuous JJ Streptococcus NN Stress NN Stressed VBN Stressed-out JJ Stretch NNP Stretching VBG Stricken NNP Strickland NNP Strict JJ Strictly RB Stride NNP Strident JJ Strieber NNP Strike VB Strikes NNS Striking VBG Strindberg NNP String NNP Stringer NNP Stringfellow NNP Stringing VBG Strings NNPS Strip NNP Stripes NNP Strippers NNS Strips NNS Stritch NNP Strivers NNPS Strobel NNP Stroh NNP Strohman NNP Stroked VBD Strokes NNS Stroking VBG Strolling VBG Strom NNP Stromeyer NNP Stronach NNP Strong JJ Strong-earnings NNS Stronger JJR Strongheart NNP Stronghold JJ Strongin NNP Strongly RB Strother NNP Stroud NNP Strouds NNP Stroup NNP Strub NNP Structural NNP Structures NNS Struggle NNP Struggles NNP Struggling VBG Strukturbericht NNP Strum NNP Strumwasser NNP Strut VB Struthers NNP Stuart NNP Stuart-James NNP Stuart-family NN Stubblefield NNP Stubblefields NNPS Stubbs NNP Stuck-up NN Stuckert NNP Stuckey NNP Studach NNP Studds NNP Studds-Miller NNP Studebaker NNP Student NNP Students NNS Studies NNS Studio NNP Studio-City NNP Studios NNP Studwell NNP Study NNP Studying VBG Stuecker NNP Stuff NN Stuffing VBG Stumbles VBZ Stumbling JJ Stumpf NNP Stung VBN Stunned VBN Stupid JJ Sturbridge NNP Sturch NNP Sturdy JJ Sture NNP Sturge NNP Sturges NNP Sturgess NNP Sturley NNP Stuttgart NNP Stuttgart-based JJ Stygian JJ Styka NNP Style NNP Styles NNS Styrofoam NNP Styron NNP Su NNP Suarez NNP Sub NNP Sub-Saharan NNP Subaru NNP Subcommittee NNP Subcontractors NNS Subdivision NNP Subdued JJ Subgroups NNS Subic NNP Subject NN Subjects NNS Submarines NNS Subpoenas NNS Subroto NNP Subs NNP Subscribers NNS Subscribing VBG Subsequent JJ Subsequently RB Subsidiaries NNS Subsidiary NN Subsidies NNS Subsidizing VBG Subsistencias NNP Substance NN Substances NNS Substantial JJ Substantive NNP Substitute JJ Substituting VBG Subsystems NNS Subtitled VBN Subtle JJ Suburban NNP Suburbs NNP Subverts NNP Subway NNP Subways NNS Succasunna NNP Succeed NNP Succeeding VBG Success NN Successful JJ Succession NN Successive JJ Successors NNS Such JJ Suchard NNP Suchocki NNP Suckow NNP Sucks NNS Sucre NNP Sucrerie NNP Sudan NNP Sudanese NNP Sudden JJ Suddenly RB Sudier NNP Sudikoff NNP Sudol NNP Sue NNP Suemeg NNP Suez NNP Suez-Hungary NNP Suffer VB Suffering VBG Suffers VBZ Suffice VB Sufficient JJ Suffolk NNP Sufi JJ Sugar NNP Sugarman NNP Sugarman-led JJ Sugars NNPS Sugary JJ Suggest VB Suggested VBN Suggestion NNP Suggestions NNS Suggests NNS Suggs NNP Suh NNP Suhey NNP Suhler NNP Suicide NN Suisse NNP Suisse-First NNP Suit NN Suitable JJ Suite NN Suites NNPS Suitors NNS Suits NNS Suiza NNP Sukarno NNP Sukhoi NNP Sukio NNP Sukle NNP Sukuma NNP Sulaiman NNP Sulamite NN Sulamith NNP Sulcer NNP Sulfaquinoxaline NN Sulgrave NNP Suliman NNP Sulka NNP Sullam NNP Sullivan NNP Sully NNP Sulphur NN Sultan NNP Sultanate NNP Sultane NNP Sultanov NNP Sultans NNS Sulya NNP Sulzberger NNP Sulzer NNP Sum NNP Sumarlin NNP Sumat NNP Sumatra NNP Sumita NNP Sumitomo NNP Summa NNP Summarizing VBG Summary NNP Summaryof NNP Summcorp NNP Summer NNP Summerdale NN Summerfolk NNP Summerland NNP Summers NNP Summerspace NNP Summertime NN Summit NNP Sumner NNP Sumo NN Sumter NNP Sun NNP Sun-3\ NNP Sun-3\/50 NNP Sun-Times NNP SunAmerica NNP SunCor NNP SunGard NNP SunTrust NNP Sunay NNP Sunbelt NNP Sunbird NNP Sunburst NNP Sunbury NNP Suncor NNP Sunda NNP Sundance NNP Sundance-based JJ Sundarji NNP Sunday NNP Sunday-Tuesday NNP Sunday-newspaper NNP Sunday-school JJ Sundays NNPS Sundome NNP Sundor NNP Sundstrand NNP Sunflowers NNS Sung NNP Sung-Shan NNP Sung-il NNP Sungene NNP Sunken NNP Sunkist NNP Sunlight NNP Sunman NNP Sunni NNP Sunny NNP Sunnyvale NNP Sunoco NNP Sunrise NNP Suns NNPS Sunset NNP Sunshine NNP Suntory NNP Suntrust NNP Sununu NNP Sunward NNP Suominen NNP Suor FW Supavud NNP Super NNP Super-NOW NNP Super-Protein NNP Super-Set NNP Super-Sets NNP SuperDot NNP Supercomputers NNPS Superconcentrates NNS Superconductivity NN Superconductor NNP Superconductors NNS Supercritical NNP Superdome NNP Superfund NNP Superintendent NNP Superintendents NNS Superior NNP Superlative NNP Superman NNP Supermarket NN Supermarkets NNS Supermatic JJ Superposed VBD Superslim NNP Superslims NNPS Superstar NNP Superstate NNP Superstation NNP Superstition NN Superstitions NNPS Superstores NNPS Supervision NNP Supervisor NNP Supervisors NNPS Supper NNP Supplee NNP Supplement NNP Supplemental NNP Supplementary NNP Supplementing VBG Suppliers NNS Supplies NNS Supply NNP Supply-sider NNP Support NNP Supported VBN Supporters NNS Supporting VBG Supportive JJ Supports VBZ Suppose VB Supposedly RB Supposing VBG Suppression NN Supra-Expressionism NNP Supremacy NN Supreme NNP Supt. NNP Sur FW Surcliffe NNP Surcliffes NNPS Sure RB Sure-sure JJ Surely RB Suresh NNP Surety NNP Surface NN Surge NNP Surgeon NNP Surgeons NNPS Surgery NNP Surgical NNP Surging VBG Surlyn NNP Surmanek NNP Surplus NNP Surprise NN Surprised VBN Surprises NNS Surprising JJ Surprisingly RB Surrealists NNS Surrender VB Surrendering VBG Surrey NNP Surrounded VBN Surrounding VBG Survanta NNP Surveillance NN Survey NNP Surveying VBG Surveys NNS Survivability NN Survival NNP Survive VB Survived VBD Surviving NNP Survivors NNS Susan NNP Sushi NN Susie NNP Susitna NNP Suspect JJ Suspected VBN Suspecting VBG Suspension NNP Suspicion NN Susquehanna NNP Sussex NNP Sussman NNP Sustaining VBG Susumu NNP Sut NNP Sutcliffe NNP Sutermeister NNP Sutherland NNP Sutpen NNP Sutra NN Sutro NNP Suttle NNP Sutton NNP Sutz NNP Suu NNP Suvorov NNP Suzanne NNP Suzman NNP Suzuka NNP Suzuki NNP Suzy NNP Sven NNP Svensk NNP Svenska NNP Svenskarna FW Sventek NNP Sverdlovsk NNP Svevo NNP Swadesh NNP Swaggart NNP Swahili NNP Swaine NNP Swallow NNP Swallow-Barn NNP Swamped VBN Swan NNP Swank NNP Swansea NNP Swanson NNP Swapo NNP Swaps NNS Swartz NNP Swasey NNP Swavely NNP Sweanor NNP Swearingen NNP Swears VBZ Sweat NN Sweathouse NN Sweating VBG Sweaty JJ Sweazey NNP Swed NNP SwedBank NNP Swede NN Sweden NNP Swedes NNPS Swedish JJ Swedish-Swiss JJ Sween NNP Sweeney NNP Sweeneys NNPS Sweeping VBG Sweepstakes NNP Sweet NNP Sweet-scented JJ Sweet-sour JJ Sweetener NNP Sweezey NNP Sweig NNP Swelling JJ Swenson NNP Swept VBN Swift NNP Swiftly RB Swifts NNPS Swiggett NNP Swim NNP Swinburne NNP Swine JJ Swing NNP Swingin NNP Swinging VBG Swink NNP Swire NNP Swirsky NNP Swisher NNP Swiss JJ Swiss-German JJ Swiss-based JJ Swiss-born JJ Swiss-cheese NN Swiss-franc NN Swissair NNP Swissmade JJ Switch NN Switches NNS Switchgear NNP Switzer NNP Switzerland NNP Switzerland-based JJ Swiveling VBG Sword NNP Sy NNP Syb NNP Sybase NNP Sybert NNP Sybil NNP Sybron NNP Sydney NNP Sydney-based JJ Syed NNP Syferd NNP Sykes NNP Syllabicity NN Syllabification NN Syllables NNS Sylmar NNP Sylphide NNP Sylvan NNP Sylvania NNP Sylvester NNP Sylvia NNP Sylvie NNP Sylvio NNP Symantec NNP Symbion NNP Symbol NN Symbol:HRB NNP Symbolist NNP Symbolizing VBG Symes NNP Symington NNP Symms NNP Symonds NNP Symons NNP Sympathy NN Symphony NNP Symposium NNP Symptomatic JJ Syms NNP SynOptics NNPS Synar NNP Synbiotics NNP Sync NN Synchronized VBN Syncor NNP Syndic NNP Syndicate NNP Syndicated NNP Syndicates NNS Syndication NNP Syndrome NNP Synergistics NNP Synod NNP Syntex NNP Synthelabo NNP Synthetic JJ Syracuse NNP Syrdarya NNP Syria NNP Syrian JJ Syrian-backed JJ Syrians NNPS Sysco NNP Syse NNP System NNP System-specific JJ SystemOne NNP Systematically RB Systeme NNP Systemic JJ Systems NNPS Systemwide JJ Systran NNP Szabad NNP Szanton NNP Szelenyi NNP Szeto NNP Szocs NNP Szold NNP Szolds NNPS Szuros NNP T NN T'ai-Shan NNP T'ien NNP T-1000 NNP T-1600 NNP T-34 NN T-37 NN T-38 NN T-45 NNP T-72 NN T-Max NNP T-Mobile NNP T-bill NN T-bills NNS T-bond JJ T-cell NN T-helper NN T-shirt NN T-shirts NNS T. NNP T.B. NNP T.D. NNP T.E. NNP T.F. NNP T.H. NNP T.J. NNP T.M.B. NNP T.R. NNP T.S. NNP T.T. NNP T.V. NNP T.W. NNP T34C CD T4 CD T8 NNP TA NNP TAINTS VBZ TAKEOVER NN TAKING VBG TALENT NN TALK NNP TALKS VBZ TAMMY NNP TAMPA NNP TANDEM NNP TARP NNP TASS NNP TASTY JJ TAX NN TAXPAYERS NNS TB NN TBS NNP TBWA NNP TC NNP TCF NNP TCI NNP TCMP NNP TCR NNP TCU NNP TD NNP TDK NNP TEA NNP TEACH VB TEACHERS NNP TEAMSTERS NNPS TECHNOLOGIES NNP TECHNOLOGY NNP TECO NNP TED NNP TEDs NNS TEK NNP TELESIS NNP TELEVISION NN TELV NNP TEMPORARY JJ TEP NNP TESTS NNS TEXAS NNP TGS NNP THACHER NNP THAN IN THANK VB THANKS NNS THAT WDT THC NNP THE DT THERE'S VB THF NNP THIDIU NNP THIEVES NNS THINK VB THIS PRP THOSE DT THR NNP THREAT NN THREE CD THROUGHOUT IN THYSELF PRP TI NNP TIGRs NNP TILT NN TIME NN TIMES NNP TINTING NN TIP NN TIPS NNS TIRED JJ TIRES NNS TML NNP TND.B NNP TNF NNP TNN NNP TNT NNP TO TO TODAY NNP TOOK NNP TOOLWORKS NNP TOP NNP TOPAZ NNP TOPIC NN TOURISM NN TOW NN TOYOTA'S NNP TPA NNP TPS NNP TR NNP TR. NNP TRACY-LOCKE NNP TRADE NN TRADING NN TRANSAMERICA NNP TRANSCANADA NNP TRANSFER NN TRANSPLANT NNP TRANSPORTATION NNP TRAVEL NN TRAVELS VBZ TRC NNP TREASURY NNP TREAT NN TREATING VBG TREND-SETTER NN TRIAD NNP TRIAL NN TRIMMING VBG TRIPS NNS TRO NN TROUBLES NNS TROs NNS TRS-80 NNP TRT NNP TRUCK NNP TRUE JJ TRUST NNP TRUSTEE NN TRUSTS NNS TRV NNP TRW NNP TSB NNP TSEM NN TSH NNP TSH-treated JJ TUC NNP TUCSON NNP TUMBLE JJ TURMOIL NN TURNS VBZ TV NN TV-Cable NNP TV-production JJ TVA NNP TVS NNP TVSM NNP TVX NNP TVs NNS TVwhich NNP TW NNP TWA NNP TWO CD TWO-A-DAY JJ TWX NNP TXO NNP T\/A NNP Ta-Hu-Wa-Hu-Wai NNP Tabacs NNP Tabak NNP Tabarro FW Tabb NNP Tabellen FW Taber NNP Tabernacle NNP Tabit NNP Table NN Tables NNS Tabs NNS Tabuchi NNP Taccetta NNP Tache NNP Tacit NNP Tacitus NNP Tack NN Tack-solder VB Tacker NNP Tackle NNP Tackles VBZ Tacloban NNP Taco NNP Tacoma NNP Taconic NNP Tact NN Tactical NNP Tactically RB Tactics NNS Tad NNP Tadahiko NNP Tadashi NNP Tadeusz NNP Tadzhikistan NNP Tae NNP Taek NNP Taff NNP Taffner NNP Taft NNP Taft-Hartley NNP Tagalog NNP Tagamet NNP Tagg NNP Tagliabue NNP Tahiti NNP Tahitian JJ Tahoe NNP Tahse NNP Tai NNP Taif NNP Taikisha NNP Tail NNP Tailback NNP Tailin NN Tailors NNP Taipei NNP Taisei NNP Taisho NNP Tait NNP Taito NNP Taittinger NNP Taiwan NNP Taiwan-born JJ Taiwanese JJ Taiyo NNP Taizo NNP Taj NNP Takaezu NNP Takagi NNP Takahashi NNP Takako NNP Takakura NNP Takamori NNP Takanashi NNP Takanori NNP Takao NNP Takasago NNP Takashi NNP Takashima NNP Takashimaya NNP Takayama NNP Take VB Take-up JJ Taken VBN Takeover NN Takeover-stock JJ Takeovers NNS Takes VBZ Takeshi NNP Takihyo NNP Takimura NNP Taking VBG Takoma NNP Taksim NNP Takuma NNP Takuro NNP Takushoku NNP Talbot NNP Talbott NNP Talcott NNP Tale NN Talent NN Tales NNS Taliesin NNP Talk NN Talking VBG Talks NNS Tall JJ Tallahassee NNP Tallahatchie NNP Tallahoosa NNP Tallarico NNP Tallchief NNP Talley NNP Talleyrand NNP Talmadge NNP Talmo NNP Talmud NNP Talon NNP Talsky NNP Talton NNP Talyzin NNP Tama NNP Tamales NNPS Tamar NNP Tamara NNP Tamarijn NNP Tambo NNP Tambrands NNP Tamerlane NNP Tamil NNP Taming VBG Tamiris NNP Tamiris-Daniel NNP Tamm NNP Tammany NNP Tammen NNP Tammy NNP Tamotsu NNP Tampa NNP Tampa-based JJ Tampa. NNP Tampering VBG Tan NNP Tana NNP Tanabe NNP Tanaka NNP Tancred NNP Tandem NNP Tandler NNP Tandy NNP Taney NNP Tanganika NNP Tangible JJ Tango NNP Tanii NNP Tanin FW Tank NNP Tanker NNP Tankers NNS Tanks NNS Tannenbaum NNP Tanner NNP Tannhaeuser NNP Tanny NNP Tanqueray NNP Tanzi NNP Tanzman NNP Tao NNP Taoism NNP Taoist NNP Taoists NNP Taos NNP Tap VB Tape NN Taped VBN Taper NNP Tapley NNP Tappan NNP Tappets NNS Taps VBZ Tar NNP Tara NNP Taraday NNP Tarantino NNP Taras NNP Taras-Tchaikovsky NNP Tarboro NNP Tardily RB Tareytown NNP Target NNP Targets VBZ Targetted NNP Targo JJ Tarheelia NNP Tariff NN Tariffs NNPS Tarkeshian NNP Tarkington NNP Tarmac NNP Tarnoff NNP Tarnopol NNP Tarot-like JJ Tarrant NNP Tarrytown NNP Tartaglia NNP Tartan NNP Tartar JJ Tartarughe NNP Tartary NNP Tarter NNP Tartikoff NNP Tartuffe NNP Taruffi NNP Tarwhine NNP Tarzan NNP Tarzana NNP Tasaki NNP Tasaki-Riger NNP Tascher NNP Taschereau NNP Tash NNP Tashi NNP Tashjian NNP Tashkent NNP Task NNP Tasmania NNP Tass NNP Tassel NNP Tassinari NNP Tasso NNP Taste NN Taster NNP Tastes NNPS Tasti-Freeze NNP Tasuku NNP Tasurinchi NNP Tata NNP Tatanga NNP Tate NNP Tateishi NNP Tateisi NNP Tatian NNP Tatler NNP Tatman NNP Tator NNP Tatras NNS Tatsuhara NNP Tatsunori NNP Tattingers NNPS Tatzel NNP Tau NNP Taubman NNP Taught VBN Taui NNP Tauke NNP Taunton NNP Taurida NNP Taurog NNP Taurus NNP Taussig NNP Taviani NNP Tavoy NNP Tawana NNP Tawes NNP Tawney NNP Tax NNP Tax-exempt JJ Tax-exempts NNS Tax-free JJ Tax-loss NN Taxable NNP Taxation NNP Taxes NNS Taxi NN Taxing VBG Taxonomists NNS Taxpayer NN Taxpayers NNS Taylor NNP Taylors NNPS Tbilisi NNP Tbond JJ Tchaikovsky NNP Tchalo FW Tea NNP Teach VBP Teacher NN Teachers NNPS Teaching NN Teagan NNP Teagarden NNP Teague NNP Team NNP Teams NNS Teamsters NNPS Teaneck NNP Tearle NNP Tears NNS Teatime NN Teatro NNP Tebuthiuron NN Tech NNP Tech-Sym NNP TechDesign NNP Techcorps NNP Technical NNP Technical-chart JJ Technically RB Technician NNP Technicians NNPS Technik NNP Technique NN Techniques NNPS Technodyne NNP Technological NNP Technologies NNP Technology NNP Technomic NNP Teck NNP Tecumseh NNP Ted NNP Teddy NNP Tedi NNP Tee NNP Tee-wah NNP Teeley NNP Teen NNPS Teen-age JJ Teen-agers NNS Teenage NNP Teens NNS Teerlink NNP Teeter NNP Teeth NNS Teferi NNP Teflon NNP Tegal NNP Tegner NNP Tegretol NNP Tegucigalpa NNP Teheran NNP Tehran NNP Teich NNP Teijin NNP Teikoku NNP Teipel NNP Teito NNP Teixeira NNP Teknowledge NNP Tektronix NNP Tel NNP Tela NNP Telaction NNP Tele-Communications NNP Tele1st NNP TeleCable NNP TeleVideo NNP Telecharge NNP Telecom NNP Telecommuncations NNPS Telecommunications NNPS Telectronics NNP Telecussed VBD Teleflora NNP Telefonica NNP Telefonos NNP Telefunken NN Telegraaf NNP Telegraph NNP Telegraphers NNS Telegraphie NNP Telelawyer NNP Telemann NNP Telemedia NNP Telemetries NNPS Telemunchen NNP Telemundo NNP Telenet NNP Telephone NNP Telephone-operations NNS Telephones NNP Telepictures NNPS Teleport NNP Teleprompter NNP Telerama NNP Telerate NNP Telescope NNP Telesis NNP Telesphere NNP Telesystems NNP Teletrac NNP Teletypes NNS Television NNP Television-Electronics NNP Telex NN Telford NNP Telford-made JJ Tell VB Teller NNP Telli NNP Tellier NNP Telling VBG Tells VBZ Telmex NNP Telos NNP Telsmith NNP Telxon NNP Telzrow NNP Tempe NNP Temper NN Temperature NN Temperatures NNS Tempering VBG Tempesst NNP Tempest NNP Temple NNP Temple-Inland NNP Templeman NNP Templeton NNP Tempo NNP Temporary JJ Tempos NNS Temptation NN Tempter NNP Ten CD Ten-thousand-dollar JJ Ten-year JJ Ten-year-old NNP Tenants NNPS Tend VBP Tenda NNP Tender NN Tendered JJ Tenderfoot NN Tenderloin NNP Tenderly RB Tenders NNS Tenements NNS Teniente NNP Tenite NNP Tenn NNP Tenn. NNP Tenn.-based JJ Tennant NNP Tenneco NNP Tennenbaum NNP Tennesse NNP Tennessean NNP Tennessee NNP Tenney NNP Tennis NNP Tennyson NNP Tens NNS Tensile JJ Tensing NNP Tension NN Tensions NNPS Tentative JJ Tenth NNP Tenure NN Teodorani NNP Teodulo NNP Tepid NNP Tepper NNP Tequila NNP Ter-Arutunian NNP Ter-Stepanova NNP Ter. NN Teraoka NNP Tercel NNP Terence NNP Teresa NNP Terex NNP Terg-O-Tometer NNP Term NN Terminal NNP Terminaling NNP Terminals NNS Terminating VBG Termination NN Terminator NNP Terminiello NNP Terms NNS Terpers NNPS Terra NNP Terrace NNP Terral NNP Terramycin NN Terranomics NNS Terree NNP Terrell NNP Terrence NNP Terrible NNP Terrier NNP Territorial NNP Territories NNP Territory NNP Terrizzi NNP Terror NN Terrorism NNP Terrours NNS Terry NNP Tertre NNP Teschner NNP Tesco NNP Tese NNP Teslik NNP Tesoro NNP Tess NNP Tessie NNP Tessler NNP Test NNP Test-preparation JJ Testa NNP Testament NNP Testament-style JJ Testaments NNP Testicular NNP Testifies VBZ Testifying VBG Testimony NN Testing NN Tests NNS Testy JJ Tet NNP Tetanus NN Teter NNP Tetley NNP Tetrameron NNP Tetris NN Tettamanti NNP Teutonic JJ Tevye NNP Tewary NNP Tewfik NNP Tewksbury NNP Tex NNP Tex-Mex NNP Tex. NNP Texaco NNP Texan NNP Texans NNPS Texas NNP Texas-Louisiana NNP Texas-based JJ Texasness NN Texoma NNP Text NN Textbook NN Textbooks NNS Textile NNP Textiles NNP Textron NNP Texts NNS Thacher NNP Thackeray NNP Thad NNP Thaddeus NNP Thai NNP Thai-Cambodian JJ Thailand NNP Thais NNPS Thakhek NNP Thal NNP Thalbergs NNPS Thaler NNP Thalmann NNP Thames NNP Thamnophis NNS Than IN Thanh NNP Thank VB Thankful JJ Thanks NNS Thanksgiving NNP Thant NNP Tharp NNP That DT That's VBZ That-a-way RB Thatcher NNP Thatcher-style JJ Thatcherian JJ Thatcherism NNP Thatcherite JJ Thaxter NNP Thaxters NNPS Thay NN Thayer NNP The DT The'burbs NNPS The'lock-in JJ The'separatist NN The'takeover JJR Thea NNP Theater NNP Theaters NNS Theatre NNP Theatre-by-the-Sea NNP Theatres NNP Thee PRP Theft NN Thefts NNS Their PRP$ Theirs JJ Thelma NNP Them PRP Thema NNP Then RB Then-Navy NNP Thence RB Thenceforth NN Theo NNP Theo-Dur NNP Theocracy NN Theodor NNP Theodore NNP Theodosian JJ Theodosius NNP Theological NNP Theology NNP Theon NNP Theorem NN Theoretical JJ Theoretically RB Theories NNPS Theorists NNS Theory NNP Theran NNP Therapeutics NNPS Therapy NNP There EX There'a NN There's NNS Thereafter RB Thereby RB Therefore RB Theresa NNP Therese NNP Thereupon RB Thermal JJ Thermedics NNP Thermo NNP Thermoforming VBG Thermogravimetric JJ Thermometer NNP Thermopylae NNP These DT Thesis NN Thevenot NNP Thevenow NNP They PRP They're VB Thi NNP Thiebaud NNP Thief NN Thiele NNP Thielsch NNP Thieme NNP Thiep NNP Thierry NNP Thieu NNP Thieves NNS Thin JJ Thing NNP Things NNS Think VBP Thinking VBG Thiokol NNP Thiot NNP Third NNP Third-Period JJ Third-Quarter JJ Third-party JJ Third-period JJ Third-quarter JJ Thirdly RB Thirteen CD Thirties NNS Thirty CD Thirty-eighth NNP Thirty-five CD Thirty-four CD Thirty-fourth NNP Thirty-month NNP Thirty-ninth NNP Thirty-one JJ Thirty-six CD Thirty-three NNP This DT Thistle NNP Tho RB Thom NNP Thoma NNP Thomae NNP Thomajan NNP Thomas NNP Thomases NNP Thomasini NNP Thomp NN Thompson NNP Thompson-CSF NNP Thomson NNP Thomson-CSF NNP Thor NNP Thoreau NNP Thorn NNP Thorn-EMI NNP Thornburg NNP Thornburgh NNP Thorndike NNP Thorne NNP Thornton NNP Thoroughbred NNP Thoroughly NNP Thorp NNP Thorpe NNP Thorstein NNP Thortec NNP Those DT Thou PRP Though IN Thought NNP Thoughts NNP Thousand NNP Thousands NNS Thrall NNP Thread VB Threaded VBN Threadgill NNP Threads NNS Threat NN Threatened VBD Threatening VBG Threats NNS Three CD Three-and-a-half JJ Three-day JJ Three-fourths NNS Three-month JJ Three-part JJ Three-quarters NNS Three-year-old JJ Threepenny NN Threlkeld NNP Threshold NNP Thrice RB Thrift NNP Thrifts NNS Thrifty NNP Thrive VBP Thriving JJ Throat NNP Thrombinar NNP Throne NN Throneberry NNP Through IN Throughout IN Throw VB Throwing VBG Throws VBZ Thru IN Thrush NNP Thruston NNP Thuggee NNP Thule NNP Thun NNP Thunder NN Thunderbird NNP Thunderbirds NNPS Thurber NNP Thurday NNP Thurgood NNP Thurman NNP Thurmond NNP Thurow NNP Thursday NNP Thursday-night JJ Thursdays NNPS Thus RB Thutmose NNP Thy PRP Thygerson NNP Thynne NNP Thynnes NNPS Thyroglobulin NN Thyroid NN Thyssen NNP Ti NNP Tiananmen NNP Tiant NNP Tiao NNP Tibbs NNP Tiber NNP Tibet NNP Tibetan JJ Tibetan-like JJ Tiburon NNP Tic-Tac-Toe NNP Tichenor NNP Tichy NNP Tickell NNP Ticker NNP Ticket NN Ticketron NNP Tickets NNS Ticonderoga NNP Ticor NNP Tidal NNP Tide NNP Tidewatch NNP Tidewater NNP Tie VB Tie-vole-ee NN Tieck NNP Tieken NNP Tiempo NNP Tien NNP Tiepolo NNP Tiernan NNP Tierney NNP Tierno NNP Ties NNPS Tietmeyer NNP Tiffany NNP Tift NNP Tigard NNP Tiger NNP Tiger-Heli NNP Tiger-turned-Federal JJ Tigers NNP Tigershark NNP Tigert NNP Tight JJ Tightened JJ Tigre NNP Tigrean JJ Tigreans NNPS Tigris NNP Tigue NNP Tijd NNP Tijuana NNP Tikopia NNP Tiles NNS Tilghman NNP Till IN Tillery NNP Tillet NNP Tillich NNP Tillie NNP Tillinghast NNP Tillotson NNP Tilly NNP Tilted NNP Tim NNP Timber NN Timberlake NNP Timbers NNP Timbuktu NNP Time NNP Time-Life NNP Time-Mynah NNP Time-Olivette NNP Time-Warner NNP Time-servers NNS Timen NNP Times NNP Times-Mirror NNP Times-Picayune NNP Times-Stock NNP Timex NNP Timidly RB Timing NN Timken NNP Timmy NNP Timna NNP Timon NNP Timony NNP Timor NNP Timothy NNP Timpanogos NNP Tims NNP Tin NNP Tina NNP Tindal NNP Tineo NNP Ting NNP Tingley NNP Tinker NNP Tinseltown NNP Tinsman NNP Tintoretto NNP Tiny NNP Tip NNP Tipasa NNP Tiphook NNP Tipoff NNP Tippecanoe NNP Tipperary NNP Tippet NNP Tippett NNP Tipping NN Tips NNP Tipton NNP Tiptonville NNP Tire NNP Tired JJ Tirello NNP Tires NNS Tirpak NNP Tisch NNP Tishman NNP Tissues NNPS Titan NNP Titanic NNP Titanium NNP Titans NNS Titche NNP Tithing NN Titian NNP Title NN Titled VBN Titles NNPS Tito NNP Tittabawassee NNP Titus NNP Tiveden NNP Tivoli NNP Tizard NNP Tjokorda NNP To TO To'read VB Toa NNP Toagosei NNP Toalster NNP Toast NNP Toasting VBG Tobacco NNP Tobias NNP Tobin NNP Tobishima NNP Tobruk NNP Toby NNP Toccata NNP Toch NNP Tockman NNP Tocqueville NNP Today NN Todays NNP Todd NNP Todman NNP Todt NNP Toe NNP Toensing NNP Toepfer NNP Toffenetti NNP Together RB Togs NNP Tohmatsu NNP Toho NNP Toi NNP Toil NN Toit NNP Tojos NNPS Tok NNP Tokai NNP Tokio NNP Toklas NNP Tokoi NNP Tokuo NNP Tokuyama NNP Tokyo NNP Tokyo-based JJ Tokyu NNP Toland NNP Told VBN Toledo NNP Tolek NNP Tolentino NNP Toler NNP Tolerance NN Toll NN Tolley NNP Tollman-Hundley NNP Tolls NNS Tolstoy NNP Tolubeyev NNP Tom NNP Tom-and-Jerry NNP Toman NNP Tomas NNP Tomash NNP Tomaso NNP Tomato NNP Tombigbee NNP Tombrello NNP Tomczak NNP Tomilson NNP Tomkin NNP Tomkins NNP Tomlin NNP Tommie NNP Tommy NNP Tomonggong NNP Tomorrow NN Tomoshige NNP Tompkins NNP Toms NNP Tomsho NNP Tonal JJ Tonawanda NNP Tone NN Tones NNPS Toney NNP Tong NNP Tong'Il NNP Toni NNP Tonight NNP Tonio NNP Tonka NNP Tonkin NNP Tons NNS Tony NNP Too RB Toobin NNP Toodle NNP Took VBD Tool NNP Toole NNP Tooling VBG Tools NNPS Toomey NNP Toonker NNP Toornstra NNP Toot NNP Toot-toot UH Tootal NNP Tooth NN Tooth-hurty NN Tootsie NNP Top JJ Top-20 JJ Top-of-the-Line JJ Topaz NNP Topeka NNP Topic NNP Topix NNP Topkapi NNP Topography NN Topper NNP Toppers NNP Topping VBG Topps NNP Topton NNP Tora NNP Torah NNP Torbjoern NNP Torch NNP Torchmark NNP Tordella NNP Torell NNP Tories NNPS Torino NNP Torme NNP Tornado NNP Toro NNP Toronado NNP Toronto NNP Toronto-Dominion NNP Toronto-area JJ Toronto-based JJ Toros NNP Torpetius NNP Torquato NNP Torquemada NNP Torrance NNP Torrence NNP Torres NNP Torresi NNP Torrey NNP Torrid NNP Torrid-Adios NNP Torrid-Breeze NNP Torrid-Mighty NNP Torrijos NNP Torrington NNP Torrio NNP Torrio-Capone JJ Torstar NNP Torsten NNP Tort NNP Tortillas NNPS Tortoises NNPS Tortola NNP Tortorello NNP Tortoriello NNP Torts NNP Tory NNP Tosca NNP Toscanini NNP Tosco NNP Tose NNP Toseland NNP Toshiba NNP Toshiichi NNP Toshiki NNP Toshiko NNP Toshimitsu NNP Toshio NNP Toshiyuki NNP Toss VB Tossing VBG Total JJ Total-Cie NNP Totaling VBG Totalitarianism NNP Totally RB Toth NNP Toto NNP Tots NNP Totten NNP Toubro NNP Touch NNP Touche NNP Touches VBZ Touchstone NNP Toufexis NNP Tougas NNP Tough JJ Tougher JJR Toughest NNP Toujours FW Toulouse NNP Toulouse-Lautrec NNP Tour NNP Touring VBG Tourism NNP Tourist NNP Tournament NNP Tournier NNP Tours NNPS Toussie NNP Touted VBN Touting VBG Toward IN Towards NNP Tower NNP Towering VBG Towers NNP Towing NNP Towle NNP Town NNP Towne NNP Townes NNP Townley NNP Towns NNP Townsend NNP Township NNP Towsley NNP Towson NNP Toxic JJ Toxicology NNP Toxics NNP Toy NNP Toying VBG Toyko NNP Toynbee NNP Toyo NNP Toyobo NNP Toyoda NNP Toyota NNP Toyotas NNS Toys NNPS Trabants NNPS Trabb NNP Trabold NNP Trac NNP Trace NNP Tracer NNP Tracers NNP Traces NNS Tracey NNP Trachea NN Tracinda NNP Tracing VBG Track NNP Trackdown NNP Tracking NNP Tracks NNS Tracor NNP Tract NNP Tractarians NNS Tractebel NNP Tractor NNP Tracy NNP Tracy-Locke NNP Tracys NNP Trade NNP Traded NNP Trader NNP Traders NNS Trades NNPS Trading NN Tradition NN Traditional JJ Traditionalism NN Traditionalist NN Traditionalists NNPS Traditionally RB Traffic NNP Trafficking NN Traficant NNP Trafton NNP Tragedy NN Trager NNP Tragically RB Trail NNP Trailer NNP Trailing VBG Train NNP Trained VBN Trainer NNP Training NNP Trains NNS Traitor NN Traits NNP Trammell NNP Tramp NNP Tranportation NNP Tranquility NN Trans NNP Trans-Alaska NNP Trans-Mediterranean NNP Trans-Pacific NNP Trans-Pecos NNP Trans-illuminated JJ TransAmerican NNP TransAtlantic NNP TransCanada NNP TransNet NNP TransTechnology NNP Transactions NNS Transamerica NNP Transatlantic NNP Transcat NNP Transcaucasian JJ Transcaucasus NNP Transcendental JJ Transcendentalism NNP Transcendentalists NNPS Transco NNP Transcontinental NNP Transfer NN Transfers NNS Transformers NNPS Transgenic NNP Transgenics NNP Transit NNP Transition NN Transitional JJ Transkei NNP Translant NNP Translated VBN Translation NNP Translink NNP Translocations NNS Transmanche-Link NNP TransmancheLink NNP Transmation NNP Transmission NNP Transol NNP Transparent JJ Transpiration NN Transplantation NNP Transport NNP Transportation NNP Transportek NNP Transporting VBG Transports NNS Transtar NNP Transvaal NNP Transwestern NNP Transylvania NNP Trap NNP Trapp FW Trapped VBN Trappings NNP Trappist JJ Traps NNS Trash NNP Trastevere NNP Traub NNP Travancore NNP Travel NNP Travel-Holiday NNP Traveler NNP Travelers NNP Traveling VBG Travellers NNS Travelling VBG Travels NNP Traverse NNP Traverso NNP Traviata NNP Travis NNP Traxel NNP Traxler NNP Tray NNP Traynor NNP Treadway NNP Treadwell NNP Treasonable JJ Treasure NNP Treasurer NNP Treasurers NNS Treasures NNS Treasury NNP Treasury-Fed NNP Treasury-bill NN Treasury-bond JJ Treasurys NNPS Treat VB Treating VBG Treatment NNP Treaty NNP Treausry NNP Treble NNP Trecker NNP Tredding NNP Tredegar NNP Tredici NNP Tredyffrin NNP Tree NNP Treece NNP Trees NNP Tregnums NNPS Trego NNP Treiger NNP Treitel NNP Trek NNP Trelleborg NNP Tremblay NNP Tremdine NNP Tremendae NNP Trempler NNP Trenchard NNP Trend NNP Trend-following JJ Trends NNP Trendy JJ Trent NNP Trenton NNP Trepp NNP Trettien NNP Trevelyan NNP Trevino NNP Trevor NNP Trexler NNP Treybig NNP Tri-Star NNP Tri-State NNP TriStar NNP Triad NNP Trial NN Triamcinolone NN Triandos NNP Triangle NNP Trianon NNP Trib NNP Tribal NNP Tribe NNP Tribes NNS Triborough NNP Tribou NNP Tribuna NNP Tribunal NNP Tribune NNP Tribune-Democrat NNP Trichieri NNP Trichinella NN Trichrome JJ Tricia NNP Tricks NNPS Trickster NNP Trident NNP Tridex NNP Trifari NNP Trig NNP Trigg NNP Triggering VBG Trikojus NNP Triland NNP Trim VB Trim-your-own-franks VB Trimble NNP Trimedyne NNP Trimmer NNP Trinen NNP Trinidad NNP Trinitarian NNP Trinitarians NNP Trinitron NNP Trinity NNP Trinkaus NNP Trinova NNP Trio NNP Triomphe NNP Tripartite NNP Tripe NNP Triple NNP Triple-A NNP Tripod NNP Tripod-Laing NNP Tripoli NNP Triptych NNP Tris NNP Trish NNP Tristan NNP Tristano NNP Tristars NNPS Trite JJ Tritium NN Triton NNP Trittico FW Trivelpiece NNP Trivest NNP Trivia NNP Trizec NNP Trockenbeerenauslesen NNP Troeltsch NNP Trofeo NNP Trohan NNP Trojan NNP Trompe FW Troop NNP Trooper NNP Troopers NNS Troops NNS Trop NNP Tropez NNP Trophy NNP Tropic NNP Tropical NNP Tropicana NNP Tropics NNPS Tropidoclonion NNP Tropworld NNP Trotsky NNP Trotter NNP Trotting VBG Trouble NN Trouble-free JJ Troubled JJ Troup NNP Trout NNP Troutman NNP Trovatore NNP Troy NNP Troyes NNP Truck NNP Truckee NNP Truckers NNS Trucking NNP Trucks NNS Trud NNP Trudeau NNP True JJ Truell NNP Truesdell NNP Truffaut NNP Trujillo NNP Trujillos NNPS Truly NNP Truman NNP Trumbull NNP Trumka NNP Trump NNP Trump-watchers NNS Trumped VBN Trumplane NNP Trumps NNPS Trunk NN Trunkline NNP Trupin NNP Trupin-related JJ Trupins NNPS Trusk NNP Trust NNP Trustco NNP Trustcorp NNP Trustee NNP Trustees NNS Trusthouse NNP Truth NN Try VB Trygve NNP Tryin VBG Trying VBG Tryon NNP Tsai NNP Tsao NNP Tsar NNP Tsarevich NNP Tsarism NNP Tschilwyk NNP Tschoegl NNP Tse-tung NNP Tshombe NNP Tshombe-Gizenga-Goa-Ghana NNP Tsitouris NNP Tsk UH Tsou NNP Tsunami NNS Tsunozaki NNP Tsur NNP Tsuruo NNP Tsvetkov NNP Tu NNP TuHulHulZote NNP Tualatin NNP Tube NNP Tuberculosis NNP Tuborg NNP Tuchman NNP Tuck NNP Tucked VBN Tucker NNP Tucson NNP Tudor NNP Tudor-style JJ Tuesday NNP Tuesdays NNPS Tufts NNP Tugaru NN Tuitions NNS Tulane NNP Tulip NNP Tullio NNP Tulln NNP Tullock NNP Tully NNP Tulsa NNP Tumazos NNP Tumbling JJ Tumor NNP Tune NNP Tunica NNP Tunick NNP Tunis NNP Tunisia NNP Tunisian NNP Tunnard NNP Tunnel NNP Tuohy NNP Tupelev-144 NNP Tupolev NNP Tupper NNP Tupperware NNP Turandot NNP Turben NNP Turbin NNP Turbine NNP Turbinen NNP Turbinen-Union NNP Turbofan NN Turbulence NN Turbulent JJ Turbyfill NNP Turchin NNP Turf NNP Turgut NNP Turin NNP Turin-based JJ Turk NNP Turkey NNP Turkey. NNP Turkish JJ Turkmenia NNP Turks NNPS Turn VB Turnaround NNP Turnbull NNP Turned VBN Turner NNP Turning VBG Turnkey NNP Turnock NNP Turnout NN Turnover NN Turnpike NNP Turnpike-widening JJ Turns VBZ Turpin NNP Turtle NNP Turtles NNPS Tuscany NNP Tuskegee NNP Tussard NNP Tussle NNP Tustin NNP Tut NNP Tuttle NNP Tutu NNP Tutunik NNP Tuxapoka NNP Twain NNP Twaron NNP Tweed NNP Tweet VB Twelve CD Twenties NNP Twentieth NNP Twentieth-Century NNP Twenty CD Twenty-First NNP Twenty-eight CD Twenty-five CD Twenty-four CD Twenty-nine CD Twenty-one CD Twenty-one-year-old NN Twenty-second NNP Twenty-seven JJ Twenty-six JJ Twenty-two CD Twenty-year-old JJ Twice RB Twiggy NNP Twigs NNS Twilight NNP Twin NNP Twinkies NNPS Twins NNP Twinsburg NNP Twist NN Twitter NNP Two CD Two-Head NNP Two-Stem JJ Two-Way NNP Two-Year JJ Two-day JJ Two-income NN Two-month JJ Two-part JJ Two-thirds NNS Two-year JJ Twomey NNP Ty NNP Tyburn NN Tyco NNP Tygartis NNP Tylan NNP Tylenol NNP Tylenol-tampering JJ Tyler NNP Tymnet NNP Tyndall NNP Tyne NNP Tyner NNP Type NN Type-O JJ Types NNS Typical JJ Typically RB Typing NN Tyrannosaurus NNP Tyranny NNP Tyre NNP Tyson NNP Tyson-Spinks JJ Tyszkiewicz NNP Tzora NNP U NNP U-2 NNP U-I NNP U-Save NNP U-turn NN U. NNP U.B.U. NNP U.Cal-Davis NNP U.K NNP U.K. NNP U.K.-based JJ U.LLO NNP U.M.C.I.A. NNP U.M.T. NN U.N NNP U.N. NNP U.N.-backed JJ U.N.-chartered JJ U.N.-monitored JJ U.N.-sponsored JJ U.N.-supervised JJ U.N.C.L.E NNP U.N.F.P NNP U.N.F.P. NNP U.N.F.P./NNP. JJ U.S NNP U.S-based JJ U.S. NNP U.S.$ $ U.S.-Canada NNP U.S.-Canadian JJ U.S.-China NNP U.S.-Czech JJ U.S.-European JJ U.S.-German JJ U.S.-Israel-Egyptian JJ U.S.-Japan JJ U.S.-Japanese JJ U.S.-Korean JJ U.S.-Mexican JJ U.S.-Mexico JJ U.S.-Philippine JJ U.S.-SOVIET JJ U.S.-South JJ U.S.-Soviet JJ U.S.-U.K. JJ U.S.-U.S.S.R. NNP U.S.-about IN U.S.-backed JJ U.S.-based JJ U.S.-built JJ U.S.-developed JJ U.S.-dollar NN U.S.-dominated JJ U.S.-donated JJ U.S.-endorsed JJ U.S.-grown JJ U.S.-led JJ U.S.-made JJ U.S.-owned JJ U.S.-produced JJ U.S.-style JJ U.S.-supplied JJ U.S.56 CD U.S.A NNP U.S.A. NNP U.S.C. NNP U.S.Japan JJ U.S.S.R NNP U.S.S.R. NNP U.S.backed JJ U.S.based JJ U.S.concerns NNS U.S.investors NNS U.S.that NN U.s NNP U/NNP.S.C. NNP UAE NNP UAL NNP UAL'S NNP UAP NNP UAW NNP UBS NNP UBS-Phillips NNP UCC NNP UCLA NNP UCSF NNP UDAG NNP UDC NNP UEP NNP UFO NNP UFOs NNS UGF NNP UGI NNP UH NNP UH-60A NNP UIC NNP UJB NNP UK NNP UKRAINIANS NNS ULI NNP UMNO NNP UMW NNP UN NNP UNA NNP UNC NNP UNCERTAINTY NN UNDEFINED JJ UNDER IN UNESCO NNP UNFLUORIDATED JJ UNIFIED JJ UNIFIRST NNP UNION NN UNITED NNP UNIX NNP UNR NNP UNRESOLVED JJ UNVEILED VBD UP IN UPHELD VBN UPI NNP UPJOHN NNP UPS NNP URGED VBD US PRP US$ $ US-Travel NNP US116.7 CD US45.9 CD US72.3 CD US8.9 CD USA NNP USAA NNP USACafes NNP USAF NNP USAir NNP USC NNP USDA NNP USDA-sponsored JJ USED VBD USED-CAR NN USF&G NNP USFL NNP USG NNP USGA NNP USI NNP USIA NNP USIS NNP USN NNP USN. NNP USO NNP USOM NNP USP NNP USS NNP USSR NNP UST NNP USW NNP USX NNP UTA NNP UTILITIES NNP UTL JJ UTLs NNS UV-B NN UVB NN Ubberroth NNP Ubermenschen NNPS Uchida NNP Uclaf NNP Udall NNP Udayan NNP Udvar-Hazy NNP Ueberroth NNP Uerkesh NNP Ugh UH Ugly JJ Uh UH Uh-huh UH Uh-uh UH Uhhu UH Uhl NNP Uhles NNP Uhlmann NNP Uhr NNP Ukiah NNP Ukraine NNP Ukrainian JJ Ukrainians NNPS Ukranians NNPS Ukropina NNP Ulanys NNP Ulbricht NNP Ulisse NNP Ullman NNP Ulric NNP Ulrich NNP Ultimate NNP Ultimately RB Ultra NNP Ultracentrifugation NN Ultramar NNP Ultraviolet NN Ulyate NNP Ulysses NNP Um UH Umberson NNP Umberto NNP Umkhonto NNP Umm UH Umpire NN Umschlagplatz NNP Un-American NNP Unable JJ Unam NNP Unamused JJ Unanalyzed JJ Unanimity NN Unanimously RB Unbelievable JJ Uncas NNP Uncertain NNP Uncertainty NN Unckle NNP Uncle NNP Uncomfortably RB Uncommon JJ Unconcerned JJ Unconfirmed JJ Unconscionable JJ Unconscious NNP Unconsciously RB Unconstitutional JJ Uncontrolled JJ Undaunted JJ Undead NN Under IN Underage JJ Underberg NNP Underclass JJ Undergraduates NNS Underground JJ Underhill NNP Underlying VBG Underneath IN Underperform NNP Underscoring VBG Underseas NNP Undersecretary NNP Underserved NNP Understandably RB Understanding VBG Undertaken VBN Underwater NNP Underwear NN Underwood NNP Underwoods NNPS Underwriter NNP Underwriters NNS Underwriting NN Undeterred JJ Undismayed JJ Undoubtedly RB Undugu NNP Unease NN Uneasiness NN Unemployed JJ Unemployment NN Uneven JJ Unexpected JJ Unfilled JJ Unflattering JJ Unfortunately RB Unfriendly JJ Unfurling VBG Ungaretti NNP Ungava NNP Unger NNP Ungermann-Bass NNP Unglazed VBN Ungrateful JJ Unhappily RB UniFirst NNP UniHealth NNP Uniate NNP Unice NNP Unico NNP Uniconer NNP Unicorp NNP Unida NNP Unification NNP Unificationism NNP Unificationist JJ Unificationists NNS Unified NNP Unifil NNP Uniform JJ Unify VB Unigesco NNP Unilab NNP Unilever NNP Unimin NNP Unimpressed JJ Unincorporated NNP Uninhibited NNP Union NNP Union. NNP UnionFed NNP Uniondale NNP Unione NNP Unionized VBN Unions NNS Unique JJ Uniqueness NNP Uniroyal NNP Uniroyal-Goodrich NNP Uniroyal\ NNP Unisys NNP Unit NN Unitarian NNP Unitarianism NNP Unitarians NNPS Unitas NNP United NNP Unitel NNP Unitholders NNS Unitika NNP Unitil NNP Unitours NNPS Unitrode NNP Units NNP Unity NNP Universal NNP Universal-International NNP Universal-Morning NNP Universal-Rundle NNP Universe NNP Universities NNS University NNP University-EPA NNP University-based JJ Univest NNP Univision NNP Unix NNP Unknown JJ Unleaded JJ Unless IN Unlike IN Unlikely RB Unlimited NNP Unlisted NNP Unloading VBG Unloved NNP Unmanned JJ Unmarried JJ Uno NNP Uno-Ven NNP Unocal NNP Unoccupied JJ Unofficial JJ Unpaid JJ Unpleasant JJ Unpopular JJ Unprovable JJ Unpublished JJ Unquestionably RB Unreported JJ Unresolved JJ Unruh NNP Unruly JJ Unseasonably RB Unsecured JJ Unsettling JJ Unsinkable NNP Unsolved NNP Unspeakable JJ Unstained JJ Unsuccessful JJ Unsuspecting JJ Untch NNP Until IN Untold JJ Untouchables NNPS Unum NNP Unused JJ Unusual JJ Unveiled VBN Unveiling VBG Unwanted JJ Unwarranted JJ Unwholesome JJ Unwilling JJ Unwinding VBG Up IN Upchurch NNP Update NNP Updike NNP Upgrades NNS Upham NNP Uphoff NNP Upholds VBZ Upjohn NNP Uplands NNPS Upon IN Upped VBN Upper NNP Upping VBG Uppsala NNP Uprising NNP Ups VBZ Upsala NNP Upset VBN Upson NNP Upstairs NN Uptick NN Upton NNP Ur VBP Ural NNP Urals NNPS Uranium NNP Urban NNP Urbana NNP Urbanization NN Urbano NNP Urbanski NNP Urben NNP Urdis NNP Urethane NN Urge VB Urged VBN Urging NNP Urich NNP Urielites NNPS Urien NNP Urmstom NNP Urn NNP Urraca NNP Urs NNP Ursa NNP Urstadt NNP Ursuline NNP Uruguay NNP Us NNP Use VB Used VBN User-friendly JJ Users NNS Usery NNP Uses NNS Usha NNP Ushikubo NNP Ushuaia NNP Usines NNP Using VBG Usinor NNP Usinor-Sacilor NNP Uspensky NNP Usually RB Usurpations NNS Utah NNP Utahans NNPS UtiliCorp NNP Utilities NNP Utility NNP Utilization NN Utley NNP Uto-Aztecan NNP Utopia NNP Utopian NNP Utopians NNPS Utrecht NNP Utsumi NNP Utsunomiya NNP Utt NNP Utter NNP Uxbridge NNP Uyl NNP Uzbekistan NNP Uzi NNP Uzi-model JJ V NN V-1 NNP V-22 NNP V-2500 NN V-6 NNP V-6-equipped JJ V-8 JJ V-shaped JJ V. NNP V.E. NNP V.H. NNP V.O. NNP VA NNP VA-backed JJ VALLEY NNP VARIAN NNP VAT NNP VATICAN NNP VAX NNP VAX9000 NN VAX\ NNP VAXstation NNP VCOR NNP VCR NNP VCRs NNS VENTURE NN VF NNP VGA NNP VH-1 NNP VI NNP VIACOM NNP VICTIMS NNS VICTOR NNP VICTORIES NNS VIDEO NN VIETNAM NNP VII NNP VIII NNP VIP NNP VISA NNP VISTA NNP VISUALIZING VBG VISX NNP VISystems NNPS VITRO NNP VLSI NNP VNR NNP VO5 NNP VOA NNP VOLUME NN VOLUNTARISM NN VOTED VBD VS NNP VTC NNP VTOL NNP VTX NNP VW NNP VWR NNP Va NNP Va. NNP Va.-based JJ VacSYN\ NNP Vacancies NNS Vacancy NN Vacation NN Vacations NNS Vacaville NNP Vachell NNP Vaclav NNP Vacuum NNP Vadar NNP Vadas NNP Vadehra NNP Vader NNP Vadies NNP Vadim NNP Vadstena NNP Vaezi NNP Vagabond NNP Vagabonds NNPS Vague JJ Vahid NNP Vaikule NNP Vail NNP Vajna NNP Val NNP Valais NNP Valdemar NNP Valdese NNP Valdez NNP Valdiserri NNP Vale NNP Vale\ IN Valedictorian NNP Valen NNP Valencia NNP Valens NNP Valente NNP Valenti NNP Valentin NNP Valentina NNP Valentine NNP Valentino NNP Valeri NNP Valerie NNP Valero NNP Valery NNP Valhalla NNP Valhi NNP Valiant NNP Valin NNP Valium NNP Valladolid NNP Valle NNP Vallecas NNP Vallee NNP Valley NNP Valleyfair NNP Vallfart NNP Valmet NN Valois NNP Valparaiso NNP Valrico NNP Valspar NNP Valu NNP Valuable NNP Value NNP Valued VBN Values NNPS Valvoline NNP Vamp NNP Van NNP VanSant NNP Vance NNP Vancouver NNP Vancouver-based JJ Vanden NNP VandenBerg NNP Vandenberg NNP Vander NNP Vanderbilt NNP Vanderbilts NNS Vandervoort NNP Vandiver NNP Vandringsar NNP Vane NNP Vanessa NNP Vanguard NNP Vanguardia NNP Vanities NNS Vanity NNP Vanourek NNP Vanous NNP Vantage NNP Vanuatu NNP Vapor NN Vappenfabrikk NNP Varadero NNP Varalli NNP Varani NNP Varese NNP Varga NNP Vargas NNP Varian NNP Variations NNPS Variety NNP Varigrad NNP Various JJ Varitronic NNP Varity NNP Varlaam NNP Varmus NNP Varnell NNP Varner NNP Varnessa NNP Varo NNP Varvara NNP Varviso NNP Vary VBP Varying JJ Vasa NNP Vasady NNP Vaseretic NNP Vases NNS Vasilenko NNP Vasilievitch NNP Vaska NNP Vasotec NNP Vasquez NNP Vass NNP Vassiliades NNP Vasso NNP Vast JJ Vastly RB Vasvani NNP Vatican NNP Vattern NNP Vaudois NNP Vaughan NNP Vaughn NNP Vault NNP Vaux NNP Vauxhall NNP Vauxhill NNP Vax NNP VaxSyn NNP Veatch NNP Veba NNP Veblen NNP VecTrol NNP Vecchio NNP Vector NNP Vectra NNP Vedder NNP Vedrine NNP Veeck NNP Vega NNP Vegans NNPS Vegas NNP Vegas-based JJ Vegetable NN Vegetables NNS Vehicle NNP Vehicles NNPS Veil NNP Veiling VBG Veille NNP Veilleux NNP Velasco NNP Velasquez NNP Velazquez NNP Velcro NN Vellante NNP VeloBind NNP Velon NNP Veltri NNP Velveeta NNP Venable NNP Vencor NNP Vending NN Vendome NNP Vendors NNS Venerable NNP Venetian NNP Veneto NNP Venetoen NNP Venezuela NNP Venezuelan JJ Venezuelans NNPS Veniamin NNP Venice NNP Venit NNP Venn NNP Venneboerger NNP Vent NN Ventes NNP Venti NNP Ventilation NN Vento NNP Ventres NNP Ventspils NNP Ventura NNP Venture NNP Ventured NNP Ventures NNP Venturesome JJ Venturi NNP Venus NNP Venusians NNPS Vera NNP Veracruz NNP Veraguas NNP Veraldi NNP Verbal JJ Verbatim JJ Verbindungstechnik NNP Verboort NN Verbrugge NNP Verde NNP Verdes NNP Verdi NNP Vere NNP Vereinsbank NNP Verey NNP Verfahrenstechnik NNP Verges NNP Vergessen FW Verification NN Verit NNP Veritrac NNP Verloop NNP Vermeersch NNP Vermejo NNP Vermes NNP Vermont NNP Vermont-Slauson NNP Vermont-based JJ Vermonters NNPS Vermouth NNP Vern NNP Vernava NNP Verne NNP Verner NNP Vernier NNP Vernitron NNP Vernon NNP Vernor NNP Vero NNP Veronica NN Veronique NNP Veronis NNP Verplanck NNP Verreau NNP Verret NNP Verrone NNP Versailles NNP Verses NNS Versicherung NNP Versicherungs NNP Version NNP Verstandig NNP Verwoerd NNP Very RB Veryfine NNP Vesco NNP Vescos NNPS Veselich NNP Veslefrikk NNP Vesoft NNP Vesole NNP Vessel NNP Vestar NNP Vesuvio NNP Veteran JJ Veterans NNP Vetere NNP Veteri NNP Veterinary NNP Vevay NNP Vevey NNP Via NNP Viacom NNP Viag NNP Viaje NNP Viale NNP Viall NNP Viande NNP Viareggio NNP Viatech NNP Viator NNP Vibrometer NN Vic NNP Vical NNP Vicar NNP Vice NNP Vice-President NNP Vice-president NN Vicenza NNP Viceroy NNP Vichy NNP Vickers NNP Vickery NNP Vicki NNP Vickie NNP Vicks NNP Vicksburg NNP Vickstrom NNP Vicky NNP Vicolo NNP Vicon NNP Victim NN Victimization NN Victims NNS Victoire NNP Victor NNP Victor-Butler NNP Victor-brand JJ Victoria NNP Victorian JJ Victorians NNS Victory NNP Victrola NN Vida NNP Vidal NNP Video NNP Videos NNPS Videotron NNP Videoway NNP Vidunas NNP Vie NNP Vieira NNP Vienna NNP Vienne NNP Viennese JJ Vienot NNP Vientiane NNP Viet NNP Vieth NNP Vietnam NNP Vietnam-veteran JJ Vietnamese JJ Vietnamese-backed JJ Vietor NNP Vieux NNP View NNP Viewed VBN Viewer NNP Viewers NNS Viewing VBG Viewmaster NNP Viewmaster-Ideal NNP Viewpoint NNP Views NNS Vif NNP Vigdor NNP Viggo NNP Vigier NNP Vignola NNP Vigorous JJ Vigreux NNP Vihon NNP Vikes NNPS Viking NNP Viking\/Penguin NN Vikings NNPS Viktor NNP Vikulov NNP Vila NNP Vilaplana NNP Vilas NNP Vilgrain NNP Villa NNP Village NNP Villagers NNS Villages NNS Villalobos NNP Villamiel NNP Villanova NNP Villanueva NNP Villard NNP Ville NNP Vilnius NNP Vince NNP Vincent NNP Vindication NNP Vinegar NNP Vineland NNP Vineyard NNP Vineyards NNS Vining NNP Vinken NNP Vinnicum NNP Vinnin NNP Vinogradoff NNP Vinson NNP Vintage NN Viola NNP Violence NNP Violent JJ Violet NNP Violeta NNP Violetta NNP Violin NNP Viper NNP Viphakone NNP Virdon NNP Viren NNP Virgil NNP Virgilia NNP Virgilio NNP Virgin NNP Virginia NNP Virginian NNP Virginians NNPS Virgins NNPS Virnich NNP Virology NNP Viroqua NNP Virsaladze NNP Virtually RB Virtue NNP Virus NN Viruscan NNP Viruses NNS Visa NNP Viscera NNPS Viscerally RB Viscount NNP Visher NNP Vishwanath NNP Visibility NN Visigoths NNPS Vision NNP VisionQuest NNP Visitation NNP Visiting VBG Visitors NNS Visits NNS Visker NNP Viss NNP Visscher NNP Vista NNP Vistoso NNP Visual JJ Visualize VB Visually RB Visx NNP Vita NNP Vital JJ Vitale NNP Vitalie NNP Vitaly NNP Vitamin NN Vitamins NNS Vitarine NNP Vitro NNP Vitro-Anchor NNP Vittoria NNP Vittorio NNP Vitulli NNP Vitus NNP Vitzhum NNP Viva FW Vivacious JJ Vivaldi NNP Vivaldi-at-brunch JJ Vive FW Vivian NNP Vivien NNP Vivier NNP Viyella NNP Vizas NNP Vizcaya NNP Vizeversa NNP Vladilen NNP Vladimir NNP Vladivostok NNP Vlasi NNP Vnet NNP Vocabularianism NNP Vocabulary NNP Vocal NN Vocational NNP Voegelin NNP Voegtli NNP Voell NNP Vogel NNP Vogelstein NNP Vogtle NNP Vogue NNP Voice NNP Voices NNS Voicetek NNP Void NN Voiture NNP Vol. NNP Volare NNP Volatile JJ Volatility NN Volcker NNP Volga NNP Volgograd NNP Volio NNP Volk NNP Volkenstein NNP Volker NNP Volksgeist FW Volkswagen NNP Volkswagens NNPS Volland NNP Vollard NNP Vollrath NNP Volney NNP Volokh NNP Volokhs NNPS Volpe NNP Volstead JJ Volta NNP Voltaire NNP Volume NN Volumes NNS Voluntary NNP Volunteer NNP Volunteers NNPS Volvo NNP Volvo-Renault NNP Volz NNP Volzhsky NNP Vom NNP Von NNP Vonnegut NNP Vons NNPS Voorhees NNP Voorhes NNP Voroba NNP Voronezh NNP Vorontsov NNP Voroshilov NNP Vortex NNP Vos NNP Vose NNP Vosges NNPS Voss NNP Vote NN Voter NN Voters NNS Votes NNS Voting NNP Vouillemont NNP Vous FW Voute NNP Voutila NNP Vowel NNP Vowel-Length NN Vowels NNS Vowing VBG Voyager NNP Voyagers NNPS Voyagers. NNPS Voyles NNP Vranian NNP Vries NNP Vrilium NNP Vroman NNP Vroom NNP Vs. FW Vt NNP Vt. NNP Vt.-based JJ Vu NNP Vue NNP Vuitton NNP Vulcan NNP Vulture NN Vulturidae NNS Vyacheslav NNP Vyas NNP Vyquest NNP W NNP W&D NNP W-2 NN W-2s NNS W-region NN W. NNP W.A. NNP W.B. NNP W.C. NNP W.D. NNP W.E. NNP W.F. NNP W.G. NNP W.H. NNP W.I. NNP W.I.L.D NNP W.J. NNP W.L. NNP W.M. NNP W.N. NNP W.O. NNP W.R. NNP W.S. NNP W.T. NNP W.Va NNP W.Va. NNP W.W. NNP W/NNP.A. NN W/NNP.B/NNP.I. NN W/NNP.R.G. NNP WABC NNP WAC NNP WACS NNPS WAFA NNP WAGE NN WAIT VB WALL NNP WANES VBZ WANT VBP WAO NNP WAR NNP WARNED VBD WARNER-LAMBERT NNP WARS NNS WAS VBD WASHINGTON NNP WATCH VB WATKINS-JOHNSON NNP WAVE NNP WAZ NNP WB NNP WBAI NNP WBBM-TV NNP WBZ NNP WCI NNP WCRS NNP WCRS-Eurocom NNP WCRS\/Boston NNP WCVB NNP WD-40 NNP WDB NN WE PRP WEDTECH NNP WEEI NNP WEEK NN WEFA NNP WEIRTON NNP WELLS NNP WENT VBD WESLEY NNP WEST NNP WESTWOOD NNP WFAA NNP WFAA-TV NNP WFC NNP WFRR NNP WFXT NNP WFXT-TV NNP WGBH NNP WGP NNP WHAS NNP WHAT WP WHEC-TV NNP WHEN WRB WHICH WDT WHIRLPOOL NN WHISPER NN WHITMAN NNP WHO WP WHO'S JJ WHOOPS NNP WHX NNP WHY WRB WIC NNP WILL MD WIN NNP WINDOW NN WINS VBZ WINSTON-SALEM NNP WIN\ NNP WIT IN WITH IN WITHHELD VBN WITHHOLDING NN WKRP NNP WLF NNP WLIB NNP WMB NNP WNBC NNP WNBC-TV NNP WNET NNP WNYC NNP WNYC-FM NNP WNYW NNP WNYW-TV NNP WOLFSON NNP WOMEN NNS WON VBP WON'T NNP WOODSTOCK NNP WORD NN WORK VBP WORKERS NNS WORKING VBG WORKS NNP WORLD NN WORLDLY JJ WOULDN'T NNP WPA NNP WPP NNP WPPSS NNP WPS NNP WRC NNP WSJ NNP WSJ\ NNP WSJ\/NBC NNP WSY NNP WTBS NNP WTD NNP WTI NNP WTPI-FM NNP WTV NNP WTVJ NNP WTXF NNP WW NNP WWL NNP WWOR NNP WWRL NNP WXRK NNP WXRK-FM NNP WYSE NNP W\/O NNP Wa NNP Waal NNP Waban NNP Wabash NNP Wachovia NNP Wachsman NNP Wachtel NNP Wachtell NNP Wachter NNP Wachtler NNP Wackenhut NNP Wacker NNP Wackers NNPS Wacklin NNP Wacky NNP Waco NNP Wacoal NNP Wada NNP Waddell NNP Wade NNP Wade-Evans NNP Wadsworth NNP Waertsilae NNP Wafaa NNP Waffen NNP Wage NN Wage-price JJ Wage-settlement JJ Wagg NNP Waggin NNP Waggoner NNP Wagner NNP Wagner-Peyser NNP Wagnerian JJ Wagon NNP Wagoneer NNP Wagons NNS Wah NNP Waigel NNP Waikiki NNP Waikikians NNPS Waikoloa NNP Wailbri NNP Wain NNP Wainaina NNP Wainwright NNP Waist-High JJ Wait VB Waite NNP Waited VBN Waiting VBG Wakabayashi NNP Wakako NNP Wakayama NNP Wake VB Wake-Up NNP Wakefield NNP Wakeman NNP Wakes NNP Waking VBG Wako NNP Waksman NNP Wakui NNP Wal-Mart NNP Walbancke NNP Walbrecher NNP Walbridge NNP Walcott NNP Wald NNP Waldbaum NNP Walden NNP Waldenbooks NNP Waldensian JJ Waldheim NNP Waldholz NNP Waldman NNP Waldo NNP Waldorf NNP Waldorf-Astoria NNP Waldron NNP Wales NNP Walesa NNP Waleson NNP Walford NNP Walgreen NNP Walinsky NNP Walinsky-Rubinstein NNP Walitzee NNP Walk VB Walk-in JJ Walker NNP Walkers NNPS Walkin NNP Walking VBG Walkman NNP Walkman-style JJ Walkmen NNP Wall NNP Wall-Tex NN Walla NNP Wallace NNP Wallach NNP Wallachs NNP Walle NNP Wallenberg NNP Wallenstein NNP Wallingford NNP Walloons NNPS Wallop NNP Walls NNS Wallstreet NNP Wally NNP Walmart NNP Walnut NNP Walpole NNP Walsh NNP Walsifer NNP Walt NNP Waltana NNP Waltch NNP Walter NNP Waltermire NNP Walters NNP Walters-Donaldson NNP Waltham NNP Walther NNP Walton NNP Walzer NNP Wambui NNP Wames NNP Wamre NNP Wan NNP Wanda NNP Wander VB Wander-Years NNP Wanderjahr NN Wanders NNP Wang NNP Wangemans NNPS Wangenheim NNP Wanger NNP Waning JJ Wankui NNP Wanna VB Wanniski NNP Wansee NNP Wansley NNP Want VB Wanted VBN Wants VBZ Wappinger NNP War NNP War-era NNP War-related JJ Warburg NNP Warburgs NNPS Ward NNP Wardair NNP Warden NNP Wards NNP Wardwell NNP Ware NNP Warehouse NNP Warfield NNP Warhol NNP Waring NNP Warm JJ Warman NNP Warming VBG Warmly RB Warmongering VBG Warnaco NNP Warned VBD Warner NNP Warner-Chilcott NNP Warner-Lambart NNP Warner-Lambert NNP Warners NNS Warning NNP Warnke NNP Warnock NNP Warranties NNS Warrants NNS Warren NNP Warrens NNS Warrenton NNP Warrick NNP Warring NNP Warrior NNP Warriors NNP Wars NNPS Warsaw NNP Warshaw NNP Wartburgs NNPS Wartzman NNP Warwick NNP Warwickshire NNP Wary JJ Was VBD Wasatch NNP Waseda NNP Wash NNP Wash. NNP Wash.-based JJ Washburn NNP Washed VBN Washing NN Washington NNP Washington-Alexandria NNP Washington-Oregon NNP Washington-area JJ Washington-based JJ Washingtons NNPS Washizu NNP Washoe NNP Waslic NNP Wasserstein NNP Wassily NNP Wasson NNP Waste NNP Waste-management NN Wastewater NNP Wastrel NN Watanabe NNP Watch NN Watchers NNPS Watches NNS Watching VBG Watchmen NNP Water NNP Water-soluble JJ Waterbury NNP Watercolor NNP Waterford NNP Watergate NNP Watergate-beleaguered JJ Waterhouse NNP Waterloo NN Waterman NNP Waters NNP Waterseller NNP Waterston NNP Watertown NNP Waterville NNP Watervliet NNP Waterways NNS Wathen NNP Watkins NNP Watkins-Johnson NNP Watling NNP Watrous NNP Watson NNP Watson-Watt NNP Watsonville NNP Watt NNP Wattenberg NNP Watterson NNP Wattie NNP Wattley NNP Watts NNP Waugh NNP Waukegan NNP Waukesha NNP Wave NNP Waveland NNP Waverly NNP Waving VBG Wavy JJ Waxman NNP Waxworks NNP Way NN WayMar NNP Waycross NNP Wayland NNP Waymire NNP Waymouth NNP Wayne NNP Ways NNPS Wazir NNP We PRP We'll MD We've NN Weak JJ Weaken VB Weakening VBG Weakens VBZ Weakest JJS Weakness NN Wealth NNP Wealthy NNP Weaning NNP Weapon NNP Weapons NNP Wear VB Wearing VBG Weart NNP Weary JJ Weasel NNP Weather NNP Weatherford NNP Weatherly NNP Weathers NNPS Weaver NNP Weavers NNS Weaving VBG Web NNP Webb NNP Webber NNP Weber NNP Weber-controlled JJ Webern NNP Webster NNP Webster\ NNP Webster\/Eagle NNP Websterville NNP Wechsler NNP Weckel NNP Wedbush NNP Wedd NNP Wedding NN Wedel NNP Wedged VBN Wedgeworth NNP Wedgwood NNP Wednesday NNP Wednesdays NNS Wedtech NNP Wee NNP Weede NNP Weedon NNP Weeds NNS Week NNP Week-e NN Week-end NN Week-r NN Weekend NNP Weekes NNP Weekly NNP Weeks NNP Weems NNP Weep VB Weerasinghe NNP Weevil NNP Wegener NNP Wei NNP Weichern NNP Weici NNP Weickerian JJ Weidenfeld NNP Weider NNP Weidman NNP Weigand NNP Weigel NNP Weighing VBG Weight NN Weighted NNP Weigle NNP Weil NNP Weiler NNP Weill NNP Weill\/Bertolt NNP Weimar NNP Wein NNP Weinbach NNP Weinberg NNP Weinberger NNP Weiner NNP Weingarten NNP Weingarten-Siegel NNP Weinroth NNP Weinshienk NNP Weinstein NNP Weir NNP Weird JJ Weirton NNP Weisberg NNP Weisbord NNP Weisbrod NNP Weisel NNP Weisfield NNP Weisman NNP Weisner NNP Weiss NNP Weissman NNP Weissmuller NNP Weithas NNP Weitz NNP Weitzel NNP Weitzen NNP Weizsacker NNP Weizsaecker NNP Weksel NNP Welborn NNP Welby NNP Welch NNP Welcome NNP Weld NNP Weldon NNP Weldwood NNP Welfare NNP Welko NNP Well UH Well-Seasoned JJ Well-Tempered JJ Well-educated JJ Well-intentioned JJ Well-received JJ Well-stretched JJ Well-to-Do JJ Well-trained JJ Well-wishers NNS Welland NNP Wellcome NNP Weller NNP Welles NNP Wellesley NNP Welling NNP Wellington NNP Wellman NNP Wells NNP Wellsley NNP Wellsville NNP Welmers NNS Welsh NNP Welt NNP Weltanschauung NN Welton NNP Welty NNP Wemmick NNP Wempner NNP Wenberg NNP Wenceslas NNP Wendee NNP Wendel NNP Wendell NNP Wendells NNPS Wendler NNP Wendy NNP Wenger NNP Wenham NNP Went VBD Wentworth NNP Wenz NNP Werdell NNP Were VBD Wergeland NNP Werke NNP Werkstell NNP Werner NNP Wert NNP Werter NNP Wertheim NNP Wertheimer NNP Werther NNP Wes NNP Wesco NNP Wesker NNP Wesley NNP Wesleyan NNP Weslock NNP Wessel NNP Wessels NNP Wesson NNP West NNP West-End NNP West-German JJ West-Point NNP West... : WestAir NNP WestLB NNP Westamerica NNP Westboro NNP Westborough NNP Westbound NNP Westbrook NNP Westburne NNP Westchester NNP Westcoast NNP Westcom NNP Westdeutsche NNP Westendorf NNP Westerly NNP Western JJ Western-Central JJ Western-Mobile NNP Western-owned JJ Western-style JJ Westerner NNP Westerners NNPS Westerns NNS Westfield NNP Westford NNP Westhampton NNP Westheimer NNP Westin NNP Westinghouse NNP Westinghouse-Mitsubishi NNP Westlake NNP Westland NNP Westmin NNP Westminister NNP Westminster NNP Westmore NNP Westmoreland NNP Weston NNP Westpac NNP Westphalia NNP Westpheldt NNP Westport NNP Westridge NNP Westside NNP Westvaco NNP Westview NNP Westwood NNP Wet JJ Wetherell NNP Wetherill NNP Wetten FW Wetter NNP Wetzel NNP Wetzler NNP Wexler NNP Weybosset NNP Weyerhaeuser NNP Weyerhauser NNP Weymouth NNP Wha WP Whah WRB Whaler NNP Whaley NNP Wham UH Whampoa NNP Wharf NNP Wharton NNP What WP What's VBZ Whatever WDT Whatman NNP Wheat NNP Wheat-germ NN Wheatena NNP Wheatfield NNP Wheaties NNPS Wheaties-box JJ Wheatley NNP Wheaton NNP Whee NNP Wheel NNP Wheelabrator NNP Wheelan NNP Wheeland NNP Wheeler NNP Wheeling NNP Wheeling-Pittsburgh NNP Wheelock NNP Wheels NNP Whelan NNP Whelen NNP When WRB Whence WRB Whenever WRB Where WRB Where's VBZ Whereas IN Wherefore NN Wherever WRB Whether IN Which WDT Whichever WDT Whig NN Whigs NNPS While IN Whimsey NNP Whinney NNP Whip NNP Whippet NNP Whipple NNP Whipsawed JJ Whipsnade NNP Whirling JJ Whirlpool NNP Whirlwind NNP Whirpool NNP Whiskey NNP Whisky NN Whisper NNP Whit NNP Whitaker NNP Whitbread NNP Whitby NNP Whitcomb NNP White NNP White-collar JJ White-haired JJ White-shirted JJ Whiteboard NNP Whitefish NNP Whiteford NNP Whitehall NNP Whitehead NNP Whitehouse NNP Whiteleaf NNP Whiteley NNP Whitelock NNP Whiteman NNP Whitemarsh NNP Whitey NNP Whitfield NNP Whitford NNP Whiting NNP Whitley NNP Whitlock NNP Whitlow NNP Whitman NNP Whitmore NNP Whitney NNP Whitrow NNP Whittaker NNP Whitten NNP Whittenburg NNP Whittier NNP Whittington NNP Whittle NNP Whittlesey NNP Whiz NNP Who WP Who's VBZ Whoa UH Whoever WP Whole JJ Wholesale JJ Wholesaler-Distributors NNP Wholesalers NNS Wholesome JJ Whom WP Whoopee NN Whose WP$ Whosever WP Whosoever NN Why WRB Why'n WRB Wichita NNP Wichterle NNP Wick NNP Wickcliffe NNP Wicked NNP Wickersham NNP Wickes NNP Wickham NNP Wickhams NNP Wickliffe NNP Wide NNP Widely NN Widen VB Widened VBD Widener NNP Wider JJR Widespread JJ Widget NNP Widmark NNP Widow NN Widowers NNS Widsith NNP Widuri NNP Wiedemann NNP Wieden NNP Wiederaufbau NNP Wiegers NNP Wieland NNP Wiener NNP Wierton NNP Wiesbaden NNP Wiesel NNP Wiesenthal NNP Wieslawa NNP Wiess NNP Wife NN Wiggins NNP Wigglesworth NNP Wight NNP Wigs NNS Wilber NNP Wilberforce NNP Wilbur NNP Wilcher NNP Wilcke NNP Wilcock NNP Wilcox NNP Wild NNP Wildbad NNP Wildcat NNP Wilde NNP Wildenstein NNP Wilder NNP Wilderness NN Wildhack NNP Wildlife NNP Wildly RB Wildman NNP Wildwater NNP Wildwood NNP Wile NNP Wiley NNP Wilfred NNP Wilfrid NNP Wilhelm NNP Wilhelmina NNP Wilhite NNP Wiligis NNP Wilk NNP Wilke NNP Wilkes VBZ Wilkes-Barre NNP Wilkey NNP Wilkins NNP Wilkinson NNP Wilks NNP Will MD Willa NNP Willam NNP Willamette NNP Willard NNP Willcox NNP Willem NNP Willens NNP Willenson NNP Willett NNP Willetts NNP William NNP Williams NNP Williamsburg NNP Williamsesque JJ Williamson NNP Williamstown NNP Willie NNP Willing JJ Willingness NN Willings NNP Willis NNP Willkie NNP Willman NNP Willmott NNP Willoughby NNP Willow NNP Willowbridge NNP Willows NNS Wills NNP Willson NNP Willy NNP Wilm NNP Wilma NNP Wilmer NNP Wilmette NNP Wilmington NNP Wilmot NNP Wilmouth NNP Wilms NNP Wilpers NNP Wilshire NNP Wilson NNP Wilson-to-Jim JJ Wilsonian JJ Wilton NNP Wimbledon NNP Wimpy NNP Wimpys NNP Wimsatt NNP Win NNP Winawer NNP Winch NNP Winchell NNP Winchester NNP Wind NNP Windahall NNP Windels NNP Windex NNP Windfall NN Windflower NNP Windham NNP Windheim NNP Windhoek NNP Windle NNP Windmere NNP Window NN Windows NNP Winds NNP Windsor NNP Windy NNP Wine NNP Winery NNP Wines NNP Winfield NNP Winfrey NNP Wing NNP Wingback NNP Winger NNP Wingman NN Wings NNPS Winiarski NNP Wink NNP Winking VBG Winkler NNP Winn NNP Winn-Dixie NNP Winnebago NNP Winner NNP Winners NNS Winnetka NNP Winnick NNP Winnie NNP Winning VBG Winnipeg NNP Winnipesaukee NNP Winooski NNP Winsett NNP Winslow NNP Winsor NNP Winston NNP Winston-Salem NNP Winter NNP Winterhalder NNP Winters NNP Winterthur-based JJ Winthrop NNP Winthrop-University NNP Winton NNP Wintour NNP Winzer NNP Wipe VB Wire NNP Wireless NNP Wires NNS Wirth NNP Wirthlin NNP Wirtz NNP Wiry JJ Wis NNP Wis. NNP Wis.-based JJ Wisconsin NNP Wisdom NNP Wise NNP Wised NNP Wiseguy NNP Wisely RB Wiseman NNP Wish VB Wish-List NN Wishart NNP Wishes NNS Wishing VBG Wisman NNP Wisner NNP Wissahickon NNP Wister NNP Witcher NNP With IN Withdrawals NNS Witherspoon NNP Withhold VB Withholding NN Within IN Without IN Withrow NNP Withuhn NNP Witkin NNP Witman NNP Witness VB Witnesses NNS Witnessing VBG Witold NNP Witt NNP Witten NNP Wittenberg NNP Witter NNP Wittgreen NNP Wives NNPS Wixom NNP Wizard NNP Wizards NNPS Wm. NNP Wo MD Woburn NNP Wockenfuss NNP Woe NN Woessner NNP Wogan NNP Wohlstetter NNP Wolcott NNP Wolcyrz NNP Wolder NNP Wolf NNP Wolfe NNP Wolfes NNPS Wolff NNP Wolfgang NNP Wolfsburg NNP Wolfson NNP Wolkind NNP Wollaeger NNP Wollman NNP Wollo NNP Wolohan NNP Wolpe NNP Wolstenholme NNP Wolters-Kluwer NNP Wolverine NNP Wolverton NNP Wolzein NNP Womack NNP Woman NNP Woman\/McCall NNP Women NNP Won NNP Wonda NNP Wonder NNP Wonderful JJ Wondering VBG Wonderland NNP Wong NNP Wonham NNP Wonjerika NNP Woo NNP Wood NNP Wood-products NNS WoodMac NNP Woodberry NNP Woodbridge NNP Woodbury NNP Woodcliff NNP Woodcock NNP Wooded JJ Wooden JJ Woodhaven NNP Woodin NNP Woodland NNP Woodmac NNP Woodman NNP Woodrow NNP Woodruff NNP Woods NNP Woodside NNP Woodstream NNP Woodward NNP Woodwards NNP Woodwell NNP Woodworth NNP Woody NNP Woodyard NNP Woolard NNP Woolen NNP Woollcott NNP Woolsey NNP Woolworth NNP Woonasquatucket NNP Woong NNP Woonsocket NNP Woos VBZ Wooten NNP Wootton NNP Worcester NNP Worcestershire JJ Word NNP WordStar NNP Words NNS Wordsworth NNP Work NN Work-outs NNS Worker NNP Workers NNPS Workforce NNP Working NNP Workmen NNS Workplace NN Workplaces NNS Works NNP Worksheets NNS Workshop NNP Workshops NNS Workstations NNS World NNP World's NNS World-Journal-Tribune NNP World-Telegram NNP World-Wide NNP World-wide JJ Worlders NNPS Worldly RB Worlds NNPS Worldscope NNP Worldwatch NNP Worldwide NNP Worms NNPS Worn VBN Woronoff NNP Worrell NNP Worried VBN Worriers NNS Worries NNS Worry NN Worse JJR Worship NNP Worst JJS Worth NNP Worth-based JJ Wortham NNP Worthington NNP Worthless JJ Worthy NNP Would MD Would-be JJ Wound-tumor NN Woven VBN Wow UH Wozniak NNP Wozzek NNP Wragge NNP Wrangham NNP Wrangle VB Wrangler NNP Wrangling VBG Wrap NNP Wrath NN Wratten NNP Wray NNP Wreckage NN Wrecking NN Wrecks VBZ Wrestlemania NNP Wright NNP Wright-style JJ Wrighting NN Wrightson NNP Wrigley NNP Wrist NN Write VB Write-offs NNS Writer NNP Writers NNP Writes NNP Writing VBG Written VBN Wrong JJ Wrongdoers NNS Wrongs NNS Wrote VBD Wu NNP Wuer NNP Wunderman NNP Wuon NNP Wurm NNP Wurtzel NNP Wussler NNP Wustman NNP Wyatt NNP Wyche NNP Wyckoff NNP Wycliffe NNP Wycoff NNP Wycombe NNP Wyden NNP Wyeth NNP Wyeth-Ayerst NNP Wylie NNP Wyly NNP Wyman NNP Wyn NNP Wyndham NNP Wynn NNP Wynston NNP Wyo NNP Wyo. NNP Wyoming NNP Wyse NNP Wyser-Pratte NNP Wyss NNP Wyvern NNP X NN X-MP NNP X-Tru-Coat NNP X-chromosome NN X-gyro NN X-linked JJ X-marked JJ X-rated JJ X-ray NN X-ray-proof JJ X-rayed VBN X-rays NNS X-region NN X-tend NN X. NNP XA2000 NNP XCEL NNP XD SYM XFI NNP XIII NNP XJ6 NNP XL NNP XL\/Datacomp NNP XR-7 NNP XR4Ti NNP XRAL NNP XRELEASE NN XRESERVE NN XYLOGICS NNP XYVISION NNP Xanadu NNP Xanax NNP Xavier NNP Xenia NNP Xerox NNP Xia NNP Xiang NNP Xiangyang NNP Xiao NNP Xiaobo NNP Xiaoping NNP Xiaoqing NNP Xidex NNP Ximenez-Vargas NNP Xinhua NNP Xoma NNP Xomen-E5 NNP Xtra NNP Xu NNP Xuanping NNP Xydis NNP Xylogics NNP Xyvision NNP Y NNP Y&R NNP Y'all DT Y'r PRP|VBP Y-MP NNP Y-MP8-232 NNP Y-MP\/832 NNP Y-Teen NNP Y-cell NN Y-cells NNS Y-gyro NN Y-region NN Y-regions NNS Y. NNP Y.J. NNP Y.M.C.A. NNP Y.M.H.A. NNP Y.S. NNP Y.W.C.A. NNP YALE NNP YEARS NNS YEEECH UH YEEEEEECH UH YES NNP YMCA NNP YO UH YOM NNP YORK NNP YORK'S NNP YOU PRP YOU'RE PRP YOUNG JJ YOUR JJ YUP UH YWCA NNP Yaaba NNP Yacht NNP Yachtel NN Yachtsman NNP Yacos NNP Yaddo NNP Yaffe NNP Yahoo NNP Yahwe NNP Yair NNP Yak NNP Yakima NNP Yakkety NNP Yaklin NNP Yakov NNP Yakovlevich NNP Yalagaloo UH Yale NNP Yale-Army NNP Yale-New NNP Yalies NNS Yall PRP Yalobusha NNP Yalta NNP Yamabe NNP Yamada NNP Yamaguchi NNP Yamaichi NNP Yamamoto NNP Yamane NNP Yamanouchi NNP Yamashita NNP Yamata NNP Yamatake NNP Yamatake-Honeywell NNP Yamatane NNP Yan NNP Yancey-6 NN Yancy-6 NN Yanes NNP Yang NNP Yaniv NNP Yank NN Yank-oriented JJ Yankee NNP Yankee-come-lately JJ Yankee-hatred NN Yankeefication NNP Yankees NNP Yankees-Brooklyn NNP Yankees-Mets JJ Yankelovich NNP Yanks NNS Yankton NNP Yankus NNP Yao NNP Yaobang NNP Yaohan NNP Yaqui NNP Yarchoan NNP Yard NNP Yardeni NNP Yards NNP Yardumian NNP Yarnell NNP Yarrow NNP Yass NNP Yasser NNP Yastrow NNP Yastrzemski NNP Yasuda NNP Yasumichi NNP Yasuo NNP Yasushige NNP Yasutomi NNP Yates NNP Yavapai NNP Yazov NNP Ye NNP Yea UH Yeager NNP Yeah UH Year NN Year-End JJ Year-ago JJ Year-earlier JJ Year-round RB Year-to-date JJ Yearbook NNP Yeargin NNP Yearly NNP Years NNS Yeast NN Yeats NNP Yedisan NNP Yegor NNP Yeh NNP Yehhh UH Yehuda NNP Yehudi NNP Yell NNP Yellen NNP Yeller JJ Yellow NNP Yellow-pages NN Yellowknife NNP Yemelyanenko NNP Yemen NNP Yemeni JJ Yemenis NNPS Yemens NNPS Yemma NNP Yen NNP Yenakiyevo NNP Yeni NNP Yeres NNP Yerevan NNP Yes UH Yesiree UH Yesterday NN Yet RB Yetnikoff NNP Yeung NNP Yeutter NNP Yevgeny NNP Yew NNP Yewaisis NNP Yff IN Yiddish NNP Yield NNP Yields NNS Yigal NNP Yilin NNP Yin NNP Yin-Yang NNP Ying-shek NNP Yinger NNP Yippies NNPS Yiren NNP Yitzhak NNP Yizi NNP Yo NNP Yocam NNP Yocum NNP Yoder NNP Yogi NNP Yoichi NNP Yok. NNP Yokel NNP Yokich NNP Yoknapatawpha NNP Yokogawa NNP Yokohama NNP Yokosuka NNP Yokum NNP Yokuts NNP Yom NNP Yoneda NNP Yonehara NNP Yoneyama NNP Yongjian NNP Yonkers NNP Yontz NNP Yooee UH Yoon NNP Yoorick NNP Yoran NNP Yorba NNP York NNP York-Moscow NNP York-Pennsylvania NNP York-SF NNP York-area JJ York-based JJ York-born NNP|VBN York-mind NNP|NN Yorker NNP Yorkers NNPS Yorkshire NNP Yorkshire-based JJ Yorktown NNP Yosemite NNP Yoshi NNP Yoshiaki NNP Yoshida NNP Yoshiharu NNP Yoshihashi NNP Yoshihisa NNP Yoshimoto NNP Yoshio NNP Yoshiro NNP Yoshitoki NNP Yoshiyuki NNP Yoshizawa NNP Yosi NNP Yost NNP You PRP You're VBP You've NN YouTube NNP Young NNP Young-Jin NNP Youngberg NNP Youngblood NNP Younger JJR Youngest JJS Youngish JJ Youngsters NNS Youngstown NNP Younis NNP Younkers NNP Your PRP$ Yours PRP Youth NNP Youths NNP Yquem NNP Yr NN Yu NNP Yuan NNP Yuba NNP Yucaipa NNP Yucatan NNP Yuen NNP Yugolsavia NNP Yugoslav NNP Yugoslav-born JJ Yugoslavia NNP Yugoslavs NNS Yujobo NNP Yuk-sui NNP Yuki NNP Yukihiro NNP Yukio NNP Yuko NNP Yukon NNP Yuli NNP Yum-Yum NNP Yumiko NNP Yun NNP Yunian NNP Yup UH Yuppie NNP Yuppies NNS Yuppily RB Yurek NNP Yuri NNP Yurochka NNP Yusaku NNP Yusen NNP Yutaka NNP Yuzek NNP Yuzuru NNP Yves NNP Yvette NNP Yvon NNP Z NNP Z-axis NN Z-gyro NN Z. NNP ZBB NNP ZDF NNP ZENITH NNP ZZZZ NNP Zabel NNP Zach NNP Zacharias NNP Zachau NNP Zachrisson NNP Zack NNP Zacks NNP Zadel NNP Zaffarano NNP Zaffius NNP Zaffuto NNP Zafris NNP Zagaria NNP Zagros NNP Zaharah NNP Zainuddin NNP Zaire NNP Zairean JJ Zaishuo NNP Zaita NNP Zajick NNP Zakes NNP Zalles NNP Zalubice NNP Zama NNP Zambia NNP Zambian JJ Zambon NNP Zambrano NNP Zamiatin NNP Zamislov NNP Zamora NNP Zamya NNP Zane NNP Zantac NNP Zanzibar JJ Zapala NNP Zapata NNP Zapfel NNP Zaporogian NNP Zapotec JJ Zappa NNP Zara NNP Zarett NNP Zarnowitz NNP Zaroubin NNP Zaves NNP Zawia NNP Zayadi NNP Zayed NNP Zayre NNP Zbigniew NNP Zeal NNP Zealand NNP Zealand-based JJ Zealand-dollar NN Zealander NNP Zebek NNP Zedmark NNP Zeffirelli NNP Zehnder NNP Zeidner NNP Zeien NNP Zeiger NNP Zeising NNP Zeisler NNP Zeiss NNP Zeitgeist NNP Zeitung NNP Zeke NNP Zel NNP Zela NNP Zelda NNP Zelig NNP Zell NNP Zeller NNP Zellerbach NNP Zellers NNP Zeme NNP Zemin NNP Zemlinsky NNP Zemlya NNP Zen NNP Zen-like JJ Zenaida NNP Zend-Avesta NNP Zendo NNP Zenith NNP Zennist NN Zeon NNP Zermatt NNP Zero NN Zero-Based NNP Zero-coupon JJ Zeron NNP Zeros NNS Zeta NNP Zey PRP Zhang NNP Zhao NNP Zhaoxing NNP Zhejiang NNP Zhijie NNP Zhitkov NNP Zhitzhakli NNP Zhok NNP Zhong NNP Zhongshan NNP Zhu NNP Zia NNP Ziari NNP Zicklin NNP Ziebarth NNP Ziegfeld NNP Ziegler NNP Zielinski NNP Ziff NNP Ziff-Davis NNP Ziffren NNP Zigarlick NNP Ziggy NNP Zilligen NNP Zimbabwe NNP Zimbabwean NNP Zimbalist NNP Zimet NNP Ziminska-Sygietynska NNP Zimmer NNP Zimmerman NNP Zinc NN Zing NNP Zingggg-O UH Zink NNP Zinman NNP Zinser NNP Zion NNP Zionism NNP Zionist JJ Zionists NNPS Zipper NNP Zipperstein NNP Zipser NNP Ziraldo NNP Zirbel NNP Zita NNP Zitin NNP Zivley NNP Ziyang NNP Znaniye NNP Zodiacal JJ Zoe NNP Zoeller NNP Zoellick NNP Zoete NNP Zoghby NNP Zola NNP Zoladex NNP Zollinger-Ellison NNP Zolo NNP Zomax NNP Zombie NNP Zone NNP Zones NNS Zoning NNP Zoo NNP Zooey NNP Zorn NNP Zorro NNP Zosen NNP Zsa NNP Zubin NNP Zubkovskaya NNP Zucker NNP Zuckerman NNP Zuercher NNP Zug NNP Zukin NNP Zulu NNP Zumbrunn NNP Zuni NNP Zupan NNP Zur FW Zuratas NNP Zurcher NNP Zurek NNP Zurich NNP Zurich-based JJ Zurkuhlen NNP Zurn NNP Zvi NNP Zwei NNP Zweibel NNP Zweig NNP Zwelakhe NNP Zwiren NNP Zworykin NNP Zycher NNP Zygmunt NNP [ ( \* SYM \*\* SYM \*\*\* SYM ] ) ]* NN ]: SYM ^_^ SYM ` `` `` `` ``... : ``` NN a DT a'back-to-basics JJ a'break-up NN a'junk-junk JJ a'mea FW a'muddle VB a'show VB a'skip-a-month JJ a'to-whom-er NN a-Average JJ a-Discounted JJ a-Ex-dividend NN a-GM NNP a-Includes VBZ a-Monthly JJ a-Totals NNS a-coming VBG a-crowing VBG a-drinking NN a-gracious JJ a-la-Aristotle NN a-raising VBG a-reflects VBZ a-stoopin VBG a-tall JJ a-wing NN a. NN a.k.a JJ a.k.a. JJ a.m RB a.m. NN a.m.-10 CD a.m.-1:30 CD a.m.-6 CD a.m.-7 CD a.m.-8 CD a\/k\/a NN aahs NNS ab NN aback RB abacuses NNS abalone NN abandon VB abandoned VBN abandoning VBG abandonment NN abandons VBZ abaringe NN abasement NN abashed JJ abate VB abated VBN abatement NN abates VBZ abating VBG abberations NNS abbey NN abbot NN abbreviated JJ abbreviation NN abbreviations NNS abdicate VBP abdomen NN abdomens NNS abdominal JJ abdominis NN abducted VBN abduction NN abed RB aber FW aberrant JJ aberrantly RB aberration NN aberrations NNS abetted VBN abetting VBG abeyance NN abhor VB abhorred VBD abhorrent JJ abhorrently RB abide VB abides VBZ abiding JJ abilities NNS ability NN ability... : abject JJ abjection NN abjectly RB ablated VBN ablation NN ablaze JJ able JJ able-bodied JJ abler JJR ably RB abnormal JJ abnormalities NNS abnormality NN abnormally RB aboard IN abode NN abolish VB abolished VBN abolishing VBG abolition NN abolitionist NN abolitionists NNS abominable JJ abomination NN aboriginal JJ aborigine NN aborigines NNS aborning RB abort VB aborted JJ abortifacient NN aborting VBG abortion NN abortion-funding JJ abortion-related JJ abortion-rights NNS abortionist NN abortions NNS abortive JJ abound VBP abounded VBD abounding VBG abounds VBZ about IN about-face NN about-faced VBD above IN above-average JJ above-ceiling NN above-ground JJ above-market JJ above-mentioned JJ above-normal JJ above-noted JJ above-target JJ above-water JJ aboveboard JJ aboveground JJ abrasion-resistant NN abrasive JJ abrasives NNS abreaction NN abreast RB abridged VBN abridges VBZ abridging VBG abridgment NN abroad RB abroade RB abrogate VB abrogated VBN abrupt JJ abruptly RB abruptness NN abscess NN abscesses NNS abscissa NN absence NN absences NNS absense NN absent JJ absent-minded JJ absent-mindedly RB absented VBD absentee JJ absentee-ballot NN absenteeism NN absentees NNS absentia FW absently RB absentmindedly RB absinthe NN absolute JJ absolutely RB absoluteness NN absolutes NNS absolution NN absolutism NN absolve VBP absolved VBD absolving VBG absorb VB absorbed VBN absorbedthe VB absorbency NN absorbent JJ absorber NN absorbers NNS absorbing VBG absorbs VBZ absorption NN absorptions NNS absorptive JJ abstain VB abstained VBD abstaining VBG abstention NN abstentions NNS abstinence NN abstract JJ abstracted JJ abstractedness NN abstracting VBG abstraction NN abstractionism NN abstractionists NNS abstractions NNS abstractive JJ abstractly RB abstractors NNS abstracts NNS abstruse JJ abstrusenesses NNS absurd JJ absurdist JJ absurdities NNS absurdity NN absurdly RB abt IN abundance NN abundant JJ abundantly RB abusable JJ abuse NN abused VBN abuser NN abusers NNS abuses NNS abusing VBG abusive JJ abutments NNS abuzz JJ abysmal JJ abyss NN acacia NN academe NN academeh NN academia NN academic JJ academically RB academician NN academics NNS academies NNS academy NN acccounting NN accede VB acceded VBD accelerate VB accelerated VBN accelerates VBZ accelerating VBG acceleration NN accelerations NNS accelerator NN accelerators NNS accelerometer NN accelerometers NNS accent NN accented VBN accenting NN accents NNS accentual JJ accentuate VB accentuated VBN accentuates VBZ accept VB acceptability NN acceptable JJ acceptance NN acceptances NNS accepted VBN accepting VBG accepts VBZ accesory NN access NN accessed VBN accesses NNS accessibility NN accessible JJ accessions NNS accessories NNS accessory NN accident NN accidental JJ accidental-war NN accidentally RB accidently RB accidents NNS acclaim NN acclaimed VBN acclaims VBZ acclamation NN acclimatized VBN accolade NN accolades NNS accommodate VB accommodated VBN accommodates VBZ accommodating VBG accommodation NN accommodations NNS accommodative JJ accomodate VB accomodations NNS accompanied VBN accompanies VBZ accompaniment NN accompaniments NNS accompanist NN accompanists NNS accompany VB accompanying VBG accompli NN accomplice NN accomplices NNS accomplish VB accomplished VBN accomplishes VBZ accomplishing VBG accomplishment NN accomplishments NNS accompnaying VBG accord NN accordance NN accorded VBN according VBG accordingly RB accordion NN accordion-folding JJ accords NNS accosted VBN accosting VBG account NN account-churning NN accountability NN accountable JJ accountant NN accountants NNS accountants... : accounted VBD accounting NN accounting-rules JJ accounts NNS accouterments NNS accreditation NN accredited VBD accrediting NN accreted VBN accretion NN accretions NNS accrual NN accruals NNS accrue VB accrued VBN accrues VBZ accruing VBG acculturated VBN acculturation NN accumulate VB accumulated VBN accumulates VBZ accumulating VBG accumulation NN accumulator NN accuracy NN accurate JJ accurately RB accusation NN accusations NNS accusatory JJ accuse VB accused VBN accuser NN accusers NNS accuses VBZ accusing VBG accusingly RB accustomed VBN accustoms VBZ ace NN acerbic JJ aces NNS acetate NN acetominophen NN acetone NN acetonemia NN acetylene NN acetylene-fueled JJ ache NN ached VBD aches NNS achievable JJ achieve VB achieved VBN achievement NN achievement-test NN achievements NNS achieves VBZ achieving VBG aching VBG acid NN acid-fast JJ acid-rain NN acidified VBN acidity NN acidly RB acids NNS acidulous JJ aciduria NN acknowledge VBP acknowledged VBD acknowledgement NN acknowledges VBZ acknowledging VBG acknowledgment NN acknowledgments NNS acknowleged VBD acne NN acolyte NN aconte NN acorns NNS acoustic JJ acoustical JJ acoustically RB acoustics NNS acquaint VB acquaintance NN acquainted VBN acquiesce VB acquiesced VBD acquiescence NN acquiesence NN acquire VB acquired VBN acquirer NN acquirers NNS acquires VBZ acquiring VBG acquisition NN acquisition-hungry JJ acquisition-minded JJ acquisition-proof JJ acquisition... : acquisitions NNS acquisitions.s NNS acquisitive JJ acquisitiveness NN acquisiton NN acquistion NN acquit VB acquittal NN acquitted VBN acre NN acre-feet NN acreage NN acres NNS acrid JJ acrimonious JJ acrimony NN acrobacy NN acrobat NN acrobatic JJ acrobatics NNS acrobats NNS acronym NN across IN across-the-board JJ across-the-board-cuts NNS acrylic NN acrylic-fiber JJ act NN act... : acted VBD acting VBG actinometer NN action NN action-adventure JJ action-oriented JJ action-packed JJ action-results NNS action\ JJ actionable JJ actions NNS activate VBP activated VBN activating VBG activation NN active JJ active-matrix JJ active-player NN actively RB actives NNS activism NN activist NN activists NNS activities NNS activity NN actor NN actors NNS actress NN actress\ JJ actresses NNS acts NNS acts... : actual JJ actualities NNS actuality NN actually RB actuarial JJ actuarially RB actuaries NNS actuary NN actuate VB actuated VBN actuators NNS acumen NN acupuncture NN acupuncturist NN acute JJ acute-care NN acutely RB ad NN ad-agency NN ad-free JJ ad-hoc JJ ad-lib NN ad-rate NN ad-supported JJ adage NN adagio NN adagios NNS adamant JJ adamantly RB adapt VB adaptability NN adaptable JJ adaptation NN adaptations NNS adapted VBN adapter NN adapters NNS adapting VBG adaptor NN adapts VBZ add VB add-on JJ add-ons NNS added VBD added-value JJ added:`` `` addict NN addicted VBN addiction NN addiction-treatment JJ addictions NNS addictive JJ addicts NNS adding VBG addition NN additional JJ additionally RB additions NNS additive NN additives NNS addle-brained JJ addled JJ address NN addressed VBN addressee NN addressees NNS addresses NNS addressing VBG addresss NNS adds VBZ adduce VB adenocard NN adenomas NN adept JJ adepts NNS adequacy NN adequate JJ adequately RB adhere VB adhered VBN adherence NN adherent JJ adherents NNS adheres VBZ adhering VBG adhesion NN adhesive JJ adhesives NNS adieu FW adipic JJ adjacent JJ adjectival JJ adjective NN adjectives NNS adjoined VBD adjoining VBG adjoins VBZ adjourn VB adjourned VBD adjourning NN adjournment NN adjourns VBZ adjudged VBN adjudging VBG adjudicate VB adjudication NN adjudicator NN adjudicators NNS adjunct NN adjuncts NNS adjust VB adjustable JJ adjustable-rate JJ adjustablerate NN adjustables NNS adjusted VBN adjuster NN adjusters NNS adjusting VBG adjustment NN adjustments NNS adjusts VBZ adman NN admen NNS administer VB administered VBN administering VBG administers VBZ administrate VB administration NN administration-Fed JJ administration... : administrations NNS administrative JJ administratively RB administrator NN administrator-general NN administrators NNS adminstration NN adminstrative JJ admirable JJ admirably RB admiral NN admirals NNS admiralty NN admiration NN admire VB admired VBD admirer NN admirers NNS admires VBZ admiring VBG admiringly RB admissible JJ admission NN admissions NNS admit VB admits VBZ admittance NN admittances NNS admitted VBD admittedly RB admittees NNS admitting VBG admixed VBN admonished VBD admonishing VBG admonishments NNS admonition NN admonitions NNS ado NN adobe NN adolescence NN adolescent NN adolescents NNS adopt VB adoptable JJ adopted VBN adoptee NN adoptees NNS adopters NNS adopting VBG adoption NN adoption-assistance JJ adoption-business NN adoptions NNS adoptive JJ adopts VBZ adorable JJ adore VBP adored VBD adores VBZ adoring VBG adorn VB adorned VBN adornments NNS adorns VBZ adrenal JJ adrenaline NN adrift RB adroit JJ adroitly RB adroitness NN ads NNS adsorbed VBN adsorbs VBZ adulation NN adult NN adult-literacy NN adult-training JJ adulterate VB adulterated VBN adulterers NNS adulterous JJ adultery NN adulthood NN adults NNS advance NN advance-purchase JJ advanced VBD advanced-ceramics NN advanced-materials JJ advanced-technology JJ advancement NN advancements NNS advancer NN advancers NNS advances NNS advancing VBG advantage NN advantageous JJ advantageously RB advantages NNS advent NN adventitious JJ adventure NN adventure-based JJ adventure-loving JJ adventurer NN adventurers NNS adventures NNS adventuresome JJ adventuring NN adventurism NN adventurist JJ adventurous JJ adventurously RB adverb NN adverbial JJ adverbs NNS adversarial JJ adversaries NNS adversary NN adverse JJ adversely RB adversities NNS adversity NN advert NN advertise VB advertised VBN advertisement NN advertisements NNS advertiser NN advertiser-bankrolled JJ advertiser-programming NN advertiser-sponsored JJ advertisers NNS advertises VBZ advertising NN advertising-backed JJ advertising-conscious JJ advertorial JJ advice NN advisability NN advisable JJ advise VB advised VBN advisedly RB advisement NN adviser NN advisers NNS advises VBZ advising VBG advisor NN advisories NNS advisors NNS advisory JJ advocacy NN advocate NN advocated VBN advocates NNS advocating VBG aegis NN aeon NN aerate VB aerated VBN aerates VBZ aeration NN aerator NN aerial JJ aerialists NNS aerials NNS aerobic JJ aerobics NN aerodynamic JJ aerogenes NNS aeromedical JJ aeronautical JJ aerosal NN aerosol NN aerosolized VBN aerosols NNS aerospace NN aerospace-industry NN aesthetes NNS aesthetic JJ aesthetically RB aesthetics NNS aeterna FW aeternitatis FW afar RB affable JJ affadavit NN affair NN affairs NNS affect VB affectation NN affectations NNS affected VBN affecting VBG affectingly RB affection NN affectionate JJ affectionately RB affections NNS affects VBZ afferent JJ affianced VBN affidavit NN affidavits NNS affied VBD affilates NNS affiliate NN affiliated VBN affiliates NNS affiliating VBG affiliation NN affiliations NNS affilliate NN affinities NNS affinity NN affirm VB affirmation NN affirmations NNS affirmative JJ affirmative-action NN affirmed VBD affirming VBG affirms VBZ affix VB affixed VBN afflict VB afflicted VBN afflicting VBG affliction NN afflictions NNS afflicts VBZ affluence NN affluent JJ afford VB affordability NN affordable JJ afforded VBN affording VBG affords VBZ affront NN affronted VBN affronting VBG afghan NN aficionado NN afield RB afire RB aflame JJ aflatoxin NN aflatoxin-free JJ aflatoxin-producing JJ aflatoxin-related JJ afloat RB afoot RB aforementioned JJ aforesaid JJ aforethought JJ afoul RB afraid JJ afresh RB aft JJ after IN after-dinner JJ after-duty JJ after-effects NNS after-hours JJ after-run JJ after-school JJ after-tax JJ afterburners NNS aftereffects NNS afterglow NN aftermarket JJ aftermath NN aftermaths NNS afternoon NN afternoons NNS aftershave NN aftershock NN aftershock-damping JJ aftershock-resistant JJ aftershocks NNS aftertax JJ afterthought NN afterward RB afterwards RB aftuh RB ag NN again RB against IN againt NN agates NNS agave NN agayne RB age NN age-and-sex JJ age-bias JJ age-discrimination JJ age-old JJ age-specific JJ aged VBN aged-care NN ageless JJ agencies NNS agency NN agency-dealing JJ agenda NN agenda-setter NN agendas NNS agent NN agents NNS agents-in-training NNS ages NNS agglomerate NN agglomeration NN agglutinating VBG agglutination NN agglutinin NN agglutinins NNS aggrandizing VBG aggravate VBP aggravated VBN aggravates VBZ aggravating VBG aggregate JJ aggregates NNS aggregation NN aggregations NNS aggression NN aggressions NNS aggressive JJ aggressively RB aggressiveness NN aggressor NN aggrieved VBN aghast JJ agile JJ agilely RB agility NN agin IN aging VBG agitate VBP agitated VBD agitating VBG agitation NN agitator NN agitators NNS agleam JJ aglimmering VBG agnomen NN agnostics NNS ago RB ago,'crack NN ago. RB agonies NNS agonize VB agonized VBD agonizes VBZ agonizing JJ agony NN agranulocytosis NN agrarian JJ agrarian-reform JJ agree VB agree. VB agreeable JJ agreeableness NN agreeably RB agreed VBD agreed-on JJ agreed-to JJ agreed-upon IN agreeement NN agreeing VBG agreement NN agreements NNS agrees VBZ agressive JJ agribusiness NN agricolas FW agricole FW agriculteurs FW agricultural JJ agricultural-research JJ agriculturally RB agriculturals NNS agriculture NN agriculture-based JJ agriculture-chemicals NNS agriculture-extension NN agriculture-related JJ agriproducts NNS agro-chemicals NNS agro-industrial JJ agro-industry JJ agrochemical NN agronomist NN aground RB ague NN ah UH aha UH ahdawam UH ahead RB ahem UH ahs UH ai VBP aid NN aid-to-education NN aide NN aide-de-camp NN aided VBN aides NNS aiding VBG aids NNS aikido FW ailerons NNS ailing VBG ailment NN ailments NNS ails NNS aim NN aimed VBN aiming VBG aimless JJ aimlessly RB aims VBZ ain't VB ain't-it-great-to-be-a-Texan JJ aint VBZ air NN air-cargo NN air-cell JJ air-charter JJ air-conditioned JJ air-conditioner NN air-conditioners NNS air-conditioning NN air-defense JJ air-express NN air-frame NN air-freight NN air-freight-forwarding JJ air-injection NN air-interdiction NN air-launched JJ air-passenger NN air-pollution NN air-quality NN air-separation NN air-service NN air-tickets NNS air-to-air JJ air-to-ground JJ air-to-surface JJ air-traffic NN air-traffic-control NN air-water JJ air-waybill JJ airbags NNS airborne JJ airborne-radar NN airconditioner JJR aircraft NN aircraft-electronics NN aircraft-engine JJ aircraft-engine-maintenance JJ aircraft-navigation NN aircraft-test JJ airdrops NNS aired VBN airfare NN airfield NN airfields NNS airflow NN airframe NN airframes NNS airheads NNS airily RB airing VBG airings NNS airless JJ airlift NN airlifted VBN airlifting VBG airline NN airline-acquisition JJ airline-crash JJ airline-deregulation NN airline-financed JJ airline-hostess NN airline-industry NN airline-interior JJ airline-landing JJ airline-related JJ airliner NN airliners NNS airlines NNS airlock NN airmail NN airmailed VBD airman NN airmen NNS airplane NN airplanes NNS airplay NN airport NN airports NNS airs NNS airspeed NN airstrip NN airstrips NNS airtime NN airwaves NNS airway NN airways NNS airworthiness NN airy JJ aisle NN aisles NNS ajar RB ajury NN akin JJ aku FW al NNS al-Assad NNP al-Faisal NNP al-Husseini NNP al. NNS alabaster NN alai FW alarm NN alarmed VBN alarming JJ alarmingly RB alarmism NN alarmist JJ alarms NNS alas UH albatross NN albeit IN albicans NNS albino NN album NN albumin NN albums NNS alchemists NNS alchemy NN alcohol NN alcohol-powered JJ alcohol-producing JJ alcohol-related JJ alcoholic JJ alcoholic-beverage NN alcoholics NNS alcoholism NN alcohols NNS alcoves NNS alderman NN aldermen NNS alders NNS ale NN aleck NN alert JJ alerted VBD alerting VBG alertly RB alertness NN alerts VBZ alfalfa NN alfresco JJ algae NNS algaecide NN algebra NN algebraic JJ algebraically RB alginates NNS algorithm NN alia FW alias NN alibi NN alibis NNS alien JJ alienate VB alienated VBN alienates VBZ alienating VBG alienation NN aliens NNS alight JJ align VB aligned VBN alignment NN alignments NNS alike RB alimony NN aliquots NNS alive JJ alizarin NN alkali NNS alkaline JJ alkalis NNS alkaloids NNS alky NN alkylarysulfonate NN alkylbenzenesulfonates NNS all DT all-America JJ all-American JJ all-American-boy NN all-Copland JJ all-Negro JJ all-New NNP all-Spanish JJ all-around JJ all-automatic JJ all-black JJ all-cargo JJ all-cash JJ all-college NN all-consuming JJ all-county JJ all-day JJ all-employee JJ all-exclusive JJ all-expenses-paid JJ all-federal JJ all-female JJ all-important JJ all-in-all RB all-inclusive JJ all-knowing JJ all-lesbian JJ all-married JJ all-natural JJ all-new JJ all-news JJ all-night JJ all-nighters NNS all-options JJ all-out JJ all-over IN all-paper JJ all-pervading JJ all-powerful JJ all-purpose JJ all-round JJ all-something-or-the-other JJ all-star JJ all-stock JJ all-student JJ all-terrain JJ all-time JJ all-too-brief JJ all-too-familiar JJ all-too-sincere JJ all-victorious JJ all-weather JJ all-white JJ all-woman JJ allay VB allayed VBN allaying VBG allegation NN allegations NNS allege VBP alleged VBN allegedly RB alleges VBZ allegiance NN allegiances NNS alleging VBG allegoric JJ allegorical JJ allegory NN allegro JJ allergic JJ allergies NNS allergy NN alleviate VB alleviates VBZ alleviating VBG alleviation NN alley NN alleys NNS alleyways NNS allgedly RB alliance NN alliances NNS allied VBN allies NNS alligator NN alligatored VBN alligators NNS alliteration NN alliterative JJ allnight JJ allocable JJ allocate VB allocated VBN allocates VBZ allocating VBG allocation NN allocations NNS allocator NN allot VB alloted VBN allotment NN allotments NNS allotted VBN allotting VBG allout JJ allow VB allowable JJ allowance NN allowances NNS allowed VBN allowing VBG allows VBZ alloy NN alloys NNS allrightniks NNS alltime NN alluded VBD alludes VBZ alluding VBG allure NN allurement NN alluring JJ allusion NN allusions NNS allusiveness NN alluvial JJ ally NN allying VBG alma JJ almanac NN almond NN almonds NNS almost RB almost-industry NN aloes NN aloft RB alone RB alone... : aloneness NN along IN alongside IN aloof JJ aloofness NN alors FW aloud RB alpenglow NN alpha JJ alpha-beta-gammas NNS alphabet NN alphabetic JJ alphabetical JJ alphabetically RB alphabetized VBD alreadeh RB already RB already-developed JJ already-expensive JJ already-identified JJ already-known JJ already-nervous NN already-reluctant JJ already-shaky JJ already-sizable JJ already-strained JJ already-tense JJ alright UH also RB also-ran NN altar NN alter VB alter-ego NN alter-parents NNS alteration NN alterations NNS altercation NN altered VBN altering VBG alternate JJ alternated VBD alternately RB alternates VBZ alternating VBG alternation NN alternative NN alternative-energy JJ alternative-fueled JJ alternative-fuels JJ alternative-operator NN alternative... : alternatively RB alternatives NNS alters VBZ altho IN although IN altitude NN altitude-azimuth-mounted JJ altitudes NNS alto NN altogether RB altruism NN altruistic JJ altruistically RB altruists NNS alum NN alumina NN aluminum NN aluminum-hulled JJ aluminum-industry NN aluminum-makers NNS alumnae NNS alumni NNS alumnus NN alundum NN alveolar NN alveoli NNS alveolus NN always RB always-present JJ am VBP amahs NNS amalgam NN amalgamate VB amalgamated VBN amalgamation NN amalgamations NNS amanuensis NN amass VB amassed VBN amasses VBZ amassing NN amateur NN amateurish JJ amateurishness NN amateurism NN amateurs NNS amatory JJ amaze VB amazed VBN amazement NN amazing JJ amazingly RB amazons NNS ambassador NN ambassadors NNS amber JJ ambiance NN ambidextrous JJ ambiguities NNS ambiguity NN ambiguous JJ ambition NN ambitions NNS ambitious JJ ambitiously RB ambivalence NN ambivalent JJ amble VB ambled VBD ambling VBG ambrosial JJ ambulance NN ambulatory JJ ambuscade NN ambush NN ambushed VBD amelioration NN amen UH amenable JJ amend VB amendatory JJ amended VBN amending VBG amendment NN amendments NNS amenities NNS amethystine JJ amiable JJ amicable JJ amicably RB amici FW amicus NN amid IN amide NN amidst IN amigo FW amines NNS amino JJ amiss JJ amity NN ammo NN ammonia NN ammoniac JJ ammonium NN ammunition NN amnesty NN amnesty. NN amniotic JJ amok RB among IN amongst IN amor FW amoral JJ amorality NN amorist NN amorous JJ amorphous JJ amorphously RB amortization NN amortize VB amortized VBN amortizing JJ amount NN amounted VBD amounting VBG amounts NNS amours FW amp NN amphetamines NNS amphibious JJ amphibology NN amphitheater NN amphobiles NNS ample JJ amplification NN amplified VBN amplifier NN amplifiers NNS amplifies VBZ amplify VB amplifying VBG amplitude NN amply RB amps NNS amputated VBN amputation NN amputations NNS amulet NN amulets NNS amuse VB amused VBN amusedly RB amusement NN amusement\/theme NN amusements NNS amusing JJ amusingly RB an DT an'advertising DT|NN anachronism NN anachronisms NNS anachronistic JJ anachronistically RB anaconda NN anacondas NNS anaerobic JJ anaesthesia NN anagram NN analeptic JJ analgesic JJ analog NN analogies NNS analogous JJ analogously RB analogue NN analogues NNS analogy NN analysed VBN analyses NNS analysis NN analyst NN analystics NNS analysts NNS analytic JJ analytical JJ analytical-instruments JJ analytically RB analyticity NN analyzable JJ analyze VB analyzed VBN analyzer NN analyzes VBZ analyzing VBG anaplasmosis NN anaprapath NN anarchic JJ anarchical JJ anarchist NN anarchist-adventurers NNS anarchy NN anastomoses NNS anastomosis NN anastomotic JJ anathema NN anatomic JJ anatomical JJ anatomically RB anatomicals NNS anatomy NN ancestor NN ancestors NNS ancestral JJ ancestry NN anchor NN anchorage NN anchorages NNS anchored VBN anchoring VBG anchorite NN anchoritism NN anchorman NN anchormen NNS anchors NNS anchorwoman NN anchovy NN ancient JJ anciently RB ancients NNS ancillary JJ and CC and'boiler NN and'divine JJ and... : and\ CC and\/or NN andrenas NNPS anecdotal JJ anecdote NN anecdotes NNS anemated VBN anemia NN anemias NNS anemic JJ anemics NNS anesthetic NN anesthetically RB anesthetics NNS anesthetized JJ anew RB angel NN angelfish NN angelic JJ angelica NN angels NNS anger NN angered VBN angering VBG angers VBZ angina NN angiotensin NN angle NN angler NN angles NNS angling VBG angora NN angriest JJS angrily RB angry JJ angst NN anguish NN anguished JJ angular JJ anhemolyticus NN anhydrous JJ anhydrously RB ani JJ aniline NN animal NN animal-based JJ animal-health NN animal-human NN animal-like JJ animal-protection NN animal-rights NNS animalcare JJ animals NNS animate JJ animated JJ animates VBZ animation NN animism NN animized VBN animosities NNS animosity NN animosity... : anion NN anionic JJ anionics NNS anions NNS anise NN aniseikonic JJ anisotropy NN ankle NN ankle-deep JJ ankles NNS anlayst NN annals NNS annee FW annex NN annexation NN annexed VBD annihilate VB annihilation NN anniversaries NNS anniversary NN annnouncement NN annointed VBN annotated VBN announce VB announced VBD announced. VBN announcement NN announcements NNS announcer NN announcers NNS announces VBZ announcing VBG announcment NN annoy VB annoyance NN annoyances NNS annoyed VBN annoying JJ annoys VBZ annual JJ annual-income NN annualized VBN annually RB annuities NNS annuity NN annulled VBD annum NN annunciated VBN anode NN anodes NNS anoint VB anointing VBG anomalies NNS anomalous JJ anomaly NN anomic JJ anomie FW anonymity NN anonymous JJ anonymously RB anorexia NN anorthic JJ another DT another... : ansuh VB answer NN answerable JJ answered VBD answering VBG answers NNS ant NN antacid NN antagonised VBN antagonism NN antagonisms NNS antagonist NN antagonistic JJ antagonists NNS antagonize VB ante NN ante-bellum FW anteater NN anteaters NNS antebellum JJ antecedent NN antecedents NNS antelope NN antenna NN antennae NNS antennas NNS anterior JJ anteriors NNS anthem NN anthems NNS anthers NNS anthology NN anthrax NN anthropic JJ anthropological JJ anthropological-religious JJ anthropologist NN anthropologists NNS anthropology NN anthropomorphic JJ anti IN anti-A NNP anti-AIDS JJ anti-American JJ anti-Americanism NN anti-B NNP anti-Bork JJ anti-Castro JJ anti-Catholic JJ anti-Catholicism NN anti-China JJ anti-Christian JJ anti-Colmer JJ anti-Communism NN anti-Communist JJ anti-Communists NNPS anti-European JJ anti-Fascist JJ anti-French JJ anti-Galileo JJ anti-Honecker JJ anti-Japanese JJ anti-Kabul JJ anti-Kennedy JJ anti-LDP JJ anti-Moscow JJ anti-NATO JJ anti-Nazi JJ anti-Nazis NNPS anti-Negro JJ anti-Newtonian JJ anti-Noriega JJ anti-Phnom NNP anti-Rh NNP anti-Sandinista JJ anti-Semites NNS anti-Semitic JJ anti-Semitism NN anti-Somoza JJ anti-Sony JJ anti-South JJ anti-Soviet JJ anti-Stalinist JJ anti-Turkish JJ anti-U.S. JJ anti-Western JJ anti-Yankee JJ anti-abortion JJ anti-abortionist NN anti-abortionists NNS anti-acne NN anti-aircraft JJ anti-airline NN anti-airline-takeover JJ anti-alcohol JJ anti-androgen JJ anti-androgens NNS anti-anemia NN anti-apartheid JJ anti-army JJ anti-assignment JJ anti-authoritarian JJ anti-ballistic-missile JJ anti-bike JJ anti-business JJ anti-cancer JJ anti-cartel JJ anti-choice JJ anti-cholesterol JJ anti-cigarette JJ anti-clericalism JJ anti-clotting JJ anti-communist JJ anti-competitive JJ anti-conservation JJ anti-contamination JJ anti-convulsive JJ anti-crime JJ anti-debt JJ anti-deer JJ anti-defense JJ anti-democratic JJ anti-depressant JJ anti-development JJ anti-diabetes JJ anti-diarrheal JJ anti-dilutive JJ anti-discrimination JJ anti-discriminatory JJ anti-drug JJ anti-drug-law NN anti-dumping JJ anti-epilepsy JJ anti-epileptic JJ anti-extortion NN anti-flag-burning JJ anti-foreign JJ anti-foreigner NN anti-fraud JJ anti-freeze JJ anti-fungal JJ anti-gay JJ anti-generic JJ anti-government JJ anti-growth JJ anti-heroes NNS anti-homosexual JJ anti-hooligan JJ anti-human JJ anti-hypertensive JJ anti-idiotypes NNS anti-infective JJ anti-infectives NNS anti-inflation JJ anti-inflationary JJ anti-intellectual JJ anti-intellectualism JJ anti-leak JJ anti-liquor JJ anti-lobbying JJ anti-lobbyist NN anti-lock JJ anti-management JJ anti-market JJ anti-men JJ anti-militarists NNS anti-miscarriage JJ anti-missile JJ anti-monopoly JJ anti-morning-sickness JJ anti-nausea JJ anti-nuclear JJ anti-oil JJ anti-opera NN anti-organization JJ anti-outsider NN anti-party JJ anti-personality JJ anti-pesticide JJ anti-plaque JJ anti-pocketbook JJ anti-polio JJ anti-pollution JJ anti-price-fixing JJ anti-productive JJ anti-profiteering JJ anti-program JJ anti-program-trading JJ anti-programmers NNS anti-prostitution JJ anti-psychotic JJ anti-racketeering JJ anti-recession JJ anti-reformers NNS anti-rejection JJ anti-rightist JJ anti-science JJ anti-scientific JJ anti-secrecy JJ anti-seizure JJ anti-semite NN anti-shock JJ anti-shoplifting JJ anti-slavery JJ anti-smokers NNS anti-smoking JJ anti-social JJ anti-socialist JJ anti-state JJ anti-statist NN anti-submarine JJ anti-switching JJ anti-takeover JJ anti-tax JJ anti-tax-shelter JJ anti-terrorism JJ anti-toxic JJ anti-trust JJ anti-ulcer JJ anti-union JJ anti-viral JJ anti-virus JJ anti-vivisectionists NNS anti-war JJ anti-war-related JJ anti-white JJ anti-wrinkling JJ antiCommunist JJ antiSony JJ antianemia JJ antibacterial JJ antibiotic NN antibiotics NNS antibodies NNS antibody NN antibody-based JJ antibody-making JJ antibody-producing JJ antic JJ anticipate VB anticipated VBN anticipates VBZ anticipating VBG anticipation NN anticipations NNS anticipatory JJ anticoagulant NN anticoagulants NNS anticoagulation NN anticompetitive JJ anticorruption NN antics NNS anticult NN anticus NN antidepressant NN antidote NN antifraud NN antifreeze NN antifundamentalist JJ antigen NN antihero NN antihistamine NN antihistorical JJ antilock JJ antimaterialism NN antimissile JJ antimonide NN antipathies NNS antipathy NN antiphonal JJ antipodes NNS antiquarian JJ antiquarians NNS antiquated JJ antique JJ antique-car NN antiques NNS antiquities NNS antiquity NN antirealistic JJ antiredeposition NN antiseptic JJ antisera NN antiserum NN antislavery JJ antismoking JJ antisocial JJ antisubmarine JJ antitakeover JJR antithesis NN antithetical JJ antithyroid JJ antitrust JJ antitrust-law JJ antiviral JJ antiwar JJ ants NNS antsy JJ anvil NN anxieties NNS anxiety NN anxiety-free JJ anxiety-released NN anxious JJ anxiously RB any DT anybody NN anye JJ anyhow RB anylabel NN anymore RB anyone NN anyplace RB anythin NN anything NN anytime RB anyway RB anyways UH anywhere RB aorta NN apace RB aparently RB apart RB apartheid NN apartment NN apartment-building NN apartments NNS apathetic JJ apathy NN ape NN aperture NN apex NN aphorisms NNS apiece RB aping VBG aplenty JJ aplomb NN apocalypse NN apocalyptic JJ apocalyptics NNS apocryphal JJ apogee NN apologetic JJ apologetically RB apologies NNS apologist NN apologists NNS apologize VB apologized VBD apologizes VBZ apologizing VBG apology NN apoplectic JJ apostates NNS apostle NN apostles NNS apostolic JJ apothecary NN apotheosis NN app NN appall VBP appalled VBN appalling JJ appallingly RB appalls VBZ appanage NN apparat NN apparatchiks FW apparatus NN apparel NN apparel-maker NN appareled VBN apparency NN apparent JJ apparently RB apparition NN apparitions NNS appartus NN appeal NN appealed VBD appealing JJ appeals NNS appeals-court NN appeals. NNS appear VB appearance NN appearances NNS appeared VBD appearin VBG appearing VBG appears VBZ appease VB appeased VBN appeasement NN appeasing NN appellant FW appellate JJ appellate-court NN appellate-litigation NN|JJ append VB appendages NNS appended VBN appestat NN appetite NN appetites NNS appetizer NN appetizing JJ applaud VBP applauded VBD applauding VBG applauds VBZ applause NN applause-happy JJ apple NN apple-flavored JJ apple-industry NN apple-pie NN apple-tree NN applejack NN applelike JJ apples NNS appliance NN appliance-controls NN appliances NNS applicability NN applicable JJ applicant NN applicants NNS application NN applications NNS applicator NN applicators NNS applied VBN applies VBZ appliques NNS apply VB applying VBG appoint VB appointed VBN appointee NN appointees NNS appointing VBG appointment NN appointments NNS appoints VBZ apportion VB apportioned VBN apportionment NN apportionments NNS appraisal NN appraisals NNS appraise VB appraised VBN appraiser NN appraisers NNS appraising VBG appraisingly RB appreciable JJ appreciably RB appreciate VB appreciated VBN appreciates VBZ appreciating VBG appreciation NN appreciations NNS appreciative JJ appreciatively RB apprehend VB apprehended VBN apprehending VBG apprehension NN apprehensions NNS apprehensive JJ apprehensively RB apprentice NN apprenticed VBN apprentices NNS apprenticeship NN apprised VBN approach NN approachable JJ approached VBD approaches NNS approaching VBG appropriate JJ appropriated VBN appropriately RB appropriateness NN appropriates VBZ appropriating VBG appropriation NN appropriations NNS appropriators NNS approval NN approvals NNS approve VB approved VBD approves VBZ approving VBG approvingly RB approximate JJ approximated VBN approximately RB approximates VBZ approximation NN approximations NNS apricot NN april NNP apron NN aprons NNS apses NNS apt JJ aptitude NN aptitudes NNS aptly RB aptness NN aqua-lung NN aquam FW aquamarine NN aquarium NN aquatic JJ aqueducts NNS aqueous JJ aquifer NN aquifers NNS aquisition NN aquisitions NNS arabesque NN arabic JJ arable JJ arak FW aramid NN arb NN arbiter NN arbitrage NN arbitrage-related JJ arbitrage`` `` arbitrager NN arbitragers NNS arbitrageur NN arbitrageurs NNS arbitraging VBG arbitrarily RB arbitrary JJ arbitrate VB arbitrated VBN arbitrates VBZ arbitrating VBG arbitration NN arbitration-eligibility NN arbitration. NN arbitrator NN arbitrators NNS arboreal JJ arborists NNS arbs NNS arc NN arcade NN arcaded JJ arcades NNS arcane JJ arch NN arch-enemy NN arch-heretic NN arch-opponent NN arch-rival JJ archaeological JJ archaeologist NN archaeologists NNS archaeology NN archaic JJ archaism NN archaized VBD archangels NNS archbishop NN archdiocese NN arched JJ archenemy NN archeological JJ archery NN arches NNS archetype NN archetypes NNS archetypical JJ archfool NN arching VBG archipelago NN architect NN architect-developer NN architectonic JJ architects NNS architectural JJ architecturally RB architecture NN architectures NNS archival JJ archive NN archives NNS archivist NN archness NN archrival JJ archtype NN arclike JJ arcs NNS arctic JJ arcus NN ardent JJ ardently RB ardor NN arduous JJ are VBP are... : area NN area-code JJ area-sales JJ area-wide JJ areas NNS areaways NNS aren't VB arena NN arenas NNS areosol NN argon NN argot NN argriculture NN arguably RB argue VBP argued VBD argues VBZ argues... : arguing VBG argument NN argumentation NN arguments NNS aria NN arias NNS arid JJ aridity NN arise VB arisen VBN arises VBZ arising VBG aristocracy NN aristocrat NN aristocratic JJ aristocratically RB aristocrats NNS arithmetic NN arithmetical JJ arithmetized VBN arkylbenzene NN arm NN arm-elevation NN arm-levitation NN arm-rise NN arm-twisting NNP armadillo NN armadillos NNS armament NN armaments NNS armata NNP armchair NN armchairs NNS armed VBN armful NN armhole NN armies NNS arming NN armistice NN armload NN armoire NN armor NN armored JJ armored-vehicle JJ armory NN armpit NN armpits NNS arms NNS arms-control NN arms-export JJ arms-kickback NN arms-making NN arms-production NN arms-reduction NN arms-sales JJ army NN arnica NN aroma NN aromas NNS aromatic JJ aromatick JJ aromatics NNS arose VBD around IN around-the-clock JJ around-the-world JJ around... : arousal JJ arouse VB aroused VBN arouses VBZ arousing VBG arpeggios NNS arraigned VBD arraigning VBG arrange VB arranged VBN arrangement NN arrangements NNS arrangers NNS arranges VBZ arranging VBG array NN arrayed VBN arrays NNS arrearage NN arrearages NNS arrears NNS arrest NN arrested VBN arresting VBG arrests NNS arrival NN arrivals NNS arrive VB arrived VBD arrives VBZ arriving VBG arrogance NN arrogant JJ arrogantly RB arrogate VB arrogating VBG arrow NN arrowed JJ arrowheads NNS arrows NNS arroyo NN arsenal NN arsenals NNS arsenic NN arsenide NN arside NN arsines NNS arson NN arsonist NN art NN art-acquisition JJ art-auction NN art-dealing JJ art-filled JJ art-historian NN art-historical JJ art-nouveau JJ art-shop NN art-world NN artemisia NN arterial JJ arteries NNS arteriolar JJ arteriolar-pulmonary JJ arterioles NNS arteriolosclerosis NN arteriosclerosis NN artery NN artery-clogging NN artery-pulmonary NN artful JJ artfully RB artfulness NN arthritic JJ arthritis NN artichoke NN article NN articles NNS articulate JJ articulated VBN articulation NN articulations NNS artifact NN artifacts NNS artifical JJ artifically RB artifice NN artificial JJ artificial-heart JJ artificiality NN artificially RB artillerist NN artillerists NNS artillery NN artisan NN artisans NNS artist NN artist-author NN artist-nature NN artistas NNS artistic JJ artistically RB artistry NN artists NNS artless JJ arts NNS artsy JJ artwork NN artworks NNS arty JJ aryl NN arylesterase NN arylesterases NNS as IN as'housing VBG as-Sa'dawi NNP as-it-were RB as-yet RB asbestos NN asbestos-abatement JJ asbestos-containing JJ asbestos-disease NN asbestos-related JJ asbestos-removal NN asbestosis NN ascend VB ascendancy NN ascended VBD ascendency NN ascending VBG ascension NN ascent NN ascents NNS ascertain VB ascertainable JJ ascertained VBN ascetic NN asceticism NN ascetics NNS ascribe VBP ascribed VBN ascribes VBZ aseptic JJ aseptically RB ash NN ash-blonde JJ asham JJ ashamed JJ ashare NN ashen JJ ashes NNS ashore RB ashtrays NNS aside RB asides NNS asinine JJ ask VB askance RB asked VBD asked... : askew RB askin VBG asking VBG asks VBZ asleep RB asocial JJ asparagus NN aspect NN aspects NNS aspen NN aspens NNS aspersion NN aspersions NNS asphalt NN asphalt-hard JJ asphyxia NN aspirant NN aspirants NNS aspiration NN aspirational JJ aspirations NNS aspire VB aspired VBD aspires VBZ aspirin NN aspiring JJ ass NN assai FW assail VB assailant NN assailants NNS assailed VBN assailing VBG assails VBZ assassin NN assassinate VB assassinated VBN assassinating VBG assassination NN assassinations NNS assassins NNS assault NN assault-weapons JJ assaulted VBD assaulting VBG assaults NNS assay NN assayed VBN assaying VBG assays NNS asseet NN assemblage NN assemblages NNS assemble VB assembled VBN assembles VBZ assemblies NNS assembling VBG assembly NN assembly-line NN assent NN assented VBD assert VB asserted VBD assertedly RB asserting VBG assertion NN assertions NNS assertive JJ assertiveness NN asserts VBZ asses NNS assesment NN assess VB assessed VBN assesses VBZ assessing VBG assessment NN assessments NNS assessor NN assessories NNS assessors NNS asset NN asset-allocation JJ asset-backed JJ asset-based JJ asset-forfeiture NN asset-growth NN asset-liability JJ asset-management NN asset-quality JJ asset-rich JJ asset-sale JJ asset-stripping JJ asset-trading NN asset-valuation NN assets NNS assets* NNS assiduity NN assiduously RB assign VB assigned VBN assigned-risk NN assignee NN assigning VBG assignment NN assignments NNS assigns VBZ assimilable JJ assimilate VB assimilated VBN assimilating VBG assimilation NN assist VB assistance NN assistant NN assistants NNS assisted VBN assisted-living JJ assisting VBG assists VBZ associaitons NNS associate JJ associate-label JJ associated VBN associates NNS associating VBG association NN association... : associations NNS associatively RB assorted JJ assortment NN assortments NNS assuage VB assuaged VBN assuaging VBG assume VB assumed VBN assumes VBZ assuming VBG assumption NN assumptions NNS assurance NN assurances NNS assure VB assured VBN assuredly RB assures VBZ assuring VBG ast JJ asterisks NNS asteroid JJ asteroids NNS asters NNS asthma NN astigmatism NN astir JJ astonished VBN astonishing JJ astonishingly RB astonishment NN astound VB astounded VBN astounding JJ astoundingly RB astounds VBZ astral JJ astray RB astride IN astringency NN astringent JJ astrological JJ astrology NN astronaut NN astronauts NNS astronomer NN astronomical JJ astronomically RB astronomy NN astrophysicist NN astrophysics NNS astute JJ astuteness NN asunder RB asw NN asylum NN asymmetric JJ asymmetrically RB asymmetry NN asymptomatic JJ asymptotic JJ asymptotically RB asynchrony NN at IN at-bat NN at-bats NNS at-home JJ at-large JJ at-market JJ at-risk JJ atCrcial NNP atavistic JJ ataxia NN ate VBD atelier NN atheism NN atheist JJ atheistic JJ atheists NNS atheromatous JJ athlete NN athlete-payoff JJ athlete-s NN athlete-student NN athletes NNS athletic JJ athletic-shoe JJ athletically RB athleticism NN athletics NNS atm NN atmosphere NN atmospheres NNS atmospheric JJ atolls NNS atom NN atom-like JJ atom-smashing NN atomic JJ atomisation NN atoms NNS atonal JJ atonally RB atone VB atonement NN atop IN atrium NN atrocious JJ atrociously RB atrocities NNS atrocity NN atrophic JJ atrophied VBN atrophy NN atrun JJ att IN attach VB attache NN attached VBN attaches VBZ attaching VBG attachment NN attachments NNS attack NN attacked VBN attacker NN attackers NNS attacking VBG attacks NNS attacks. NN attactive JJ attain VB attainable JJ attained VBD attaining VBG attainment NN attainments NNS attains VBZ attarcks NNS attempt NN attempted VBD attempting VBG attempts NNS attend VB attendance NN attendant NN attendants NNS attended VBD attendee NN attendees NNS attendent NN attendents NNS attending VBG attends VBZ attention NN attention-grabbing JJ attention... : attentions NNS attentive JJ attentively RB attest VB attested VBN attesting VBG attests VBZ attic NN attics NNS attire NN attired JJ attis NN attitude NN attitudes NNS attitudinizing NN attorney NN attorney-client JJ attorney-consultant NN attorney-disciplinary JJ attorneys NNS attract VB attractant NN attracted VBN attracting VBG attraction NN attractions NNS attractive JJ attractively RB attractiveness NN attracts VBZ attributable JJ attribute VBP attributed VBD attributes NNS attributing VBG attributions NNS attrition NN attuned VBN atune NN atypical JJ au FW auburn JJ auction NN auction-fee JJ auction-house NN auctioned VBN auctioneer NN auctioning NN auctions NNS audacious JJ audacity NN audible JJ audibly RB audience NN audience-friendly JJ audiences NNS audio JJ audio-specialty NN audio-visual JJ audio\/visual JJ audiocassettes NNS audiophiles NNS audiotex NN audiovisual JJ audit NN audited VBN auditing NN audition NN auditioning VBG auditions NNS auditor NN auditor-general NN auditorium NN auditors NNS audits NN audivi FW auf FW augen FW augment VB augmented VBN augmenting VBG augur VBP augurs VBZ august JJ aujourd'hui FW aunt NN aunts NNS aura NN aural JJ aurally RB aureus NN auspices NNS auspicious JJ auspiciously RB austere JJ austerely RB austerity NN authentic JJ authentically RB authenticate VBP authentication NN authentications NNS authenticator NN authenticity NN author NN authored VBN authoring VBG authoritarian JJ authoritarianism NN authoritative JJ authoritatively RB authorities NNS authority NN authorization NN authorizations NNS authorize VB authorized VBN authorizes VBZ authorizing VBG authors NNS authorship NN autions NNS autism NN autistic JJ auto NN auto-assembly NN auto-buying NN auto-dealer NN auto-emission NN auto-emissions NNS auto-financing NN auto-immune JJ auto-industry NN auto-insurance NN auto-limitation NN auto-loaders NNS auto-loan JJ auto-maker NN auto-making NN auto-market NN auto-obscuria NN auto-parts JJ auto-repair JJ auto-safety JJ auto-sales NNS auto-strop JJ auto\/homeowners NNS autobiographic JJ autobiographical JJ autobiography NN autoclave NN autocollimator NN autocracies NNS autocracy NN autocrat NN autocratic JJ autocrats NNS autofluorescence NN autograph NN autographed VBN autographer NN autographs NNS autoimmune JJ autoloader NN automaker NN automakers NNS automate VB automated VBN automated-pit-trading NN automated-quotation NN automated-teller JJ automated-teller-machine JJ automated-trading NN automates VBZ automatic JJ automatically RB automating VBG automation NN automaton NN automobile NN automobile-manufacturing JJ automobile-parts JJ automobile-tire JJ automobiles NNS automotive JJ automotive-emissions-testing JJ automotive-industry NN automotive-lighting JJ automotive-parts JJ automotive-product NN autonavigator NN autonomic JJ autonomic-somatic JJ autonomous JJ autonomously RB autonomy NN autopsied VBN autopsies NNS autopsy NN autos NNS autumn NN autumn-touched JJ autumnal JJ autumns NNS aux FW auxiliaries NNS auxiliary JJ avail NN availabilities NNS availability NN available JJ availed VBD availing VBG avalanche NN avaliable JJ avant FW avant-garde JJ avarice NN avaricious JJ avatar NN avec NNP avenge VB avenger NN avenging JJ avenue NN avenues NNS average JJ averaged VBD averages NNS averaging VBG averred VBD averse JJ aversion NN avert VB averted VBN averting VBG averts VBZ avian JJ aviary NN aviation NN aviation-services NNS aviator NN aviators NNS avid JJ avidity NN avidly RB avionics NNS avions FW avocado NN avocados NNS avocation NN avoid VB avoidable JJ avoidance NN avoided VBN avoiding VBG avoids VBZ avowed JJ avowedly RB avuncular JJ aw UH await VB awaited VBD awaiting VBG awaits VBZ awake JJ awaken VB awakened VBN awakening VBG awakens VBZ award NN award-winning JJ awarded VBN awarding VBG awards NNS aware JJ awareness NN awash JJ away RB away-from-home JJ awaye RB awe NN awe-inspiring JJ awed VBN awes VBZ awesome JJ awful JJ awfully RB awfulness NN awhile RB awkward JJ awkwardly RB awkwardness NN awnings NNS awoke VBD awry RB ax NN axe NN axes NNS axial JJ axially RB axiological JJ axiom NN axiomatic JJ axioms NNS axis NN axle NN axle-breaking JJ axles NNS aya NN ayatollah NN aye RB ayes NNS ayni NNS azalea NN azaleas NNS azure JJ b NN b-5,196,232 CD b-As IN b-Based VBN b-Current JJ b-Includes VBZ b-Percent NN b-Week NN b-day NN b-plane NN b-reflects VBZ b/c IN ba-a-a UH babbino FW babbiting NN babble NN babbled VBD babel NN babes NNS babies NNS baboon NN baboons NNS baby NN baby-boomers NNS baby-faced JJ baby-food JJ baby-products JJ baby-sitter NN babyhood NN baccalaureate NN bachelor NN bachelor-type JJ bachelors NNS baci NNS back RB back-alley JJ back-dating VBG back-disability NN back-door JJ back-end JJ back-issue JJ back-lighted JJ back-of-the-envelope JJ back-office NN back-offices NNS back-on-terra-firma JJ back-pain NN back-pay NN back-room NN back-slapping JJ back-to-back JJ back-to-school JJ back-up NN back-ups NNS back-yard JJ back... : backbeat NN backbench JJ backbend NN backbends NNS backbone NN backdated VBD backdoor JJ backdrop NN backed VBN backed-up JJ backer NN backers NNS backfield NN backfire VB backfired VBD backfires VBZ backfiring VBG backflips VBZ background NN backgrounds NNS backhand NN backhanded JJ backhoe NN backhome NN backing VBG backlash NN backlit JJ backlog NN backlogs NNS backlots NNS backpack NN backpackers NNS backpacks NNS backpedal VB backpedaling VBG backroom NN backrooms NNS backs NNS backside NN backsides NNS backslapping VBG backstage RB backstitch NN backstop NN backtracking NN backup NN backups NNS backward RB backwardness NN backwards RB backwater NN backwoods NNS backwoods-and-sand-hill JJ backyard NN backyards NNS bacon NN bacteria NNS bacteria-based JJ bacteria-contaminated JJ bacteria-free JJ bacterial JJ bacterium NN bad JJ bad-cop JJ bad-debt JJ bad-expectations JJ bad-fitting JJ bad-law NN bad-neighbor JJ bad-news JJ bad-risk JJ bad-smelling JJ baddebt JJ bade VBD badge NN badge-toter NN badgered VBD badgering VBG badges NNS badinage NN badly RB badly-needed JJ badmen NNS badminton NN badness NN bads NNS baffle VB baffled VBN baffling JJ bag NN bag'em NN bagel NN bagels NNS baggage NN bagged VBD baggy JJ bagpipe NN bags NNS baguette FW bail VB bail-jumping NN bailed VBD bailiff NN bailing VBG bailout NN bailouts NNS bait NN baited VBN bake JJ bake-offs NNS bake-oven NN baked JJ baker NN bakeries NNS bakers NNS bakery NN bakery-mix JJ bakes VBZ bakeware NN baking NN baklava NN baksheesh NN balance NN balance-of-payments NNS balance-sheet NN balance-wise JJ balanced JJ balanced-budget JJ balances NNS balancing NN balconies NNS balcony NN bald JJ bald-faced JJ balding JJ baldish JJ baldness NN bale NN baleful JJ bales NNS balk VB balk. VBP balkanized JJ balked VBD balkiness NN balking VBG balks VBZ ball NN ball-bearing NN ball-carriers NNS ball-hawking JJ ballad NN ballads NNS ballards NNS ballast NN balled VBN ballerina NN ballerinas NNS ballet NN balletic JJ balletomane NN ballets NNS ballfields NNS ballgowns NNS balling VBG ballistic JJ ballistics NNS balloon NN ballooned VBN ballooning NN balloonists NNS balloons NNS ballot NN ballot-burning JJ balloting NN ballots NNS ballpark NN ballparks NNS ballplayer NN ballplayers NNS ballroom NN balls NNS ballyhoo NN ballyhooed VBN ballyhooey NN balm NN balm-of-Gilead NN balmy JJ baloney NN balsams NNS balustrade NN bam UH bambino NN bamboo NN bamboozled VBN ban NN banal JJ banalities NNS banalization NN banana NN banana-exporting JJ bananas NNS band NN band-wagon JJ bandage NN bandaged VBN bandages NNS banded VBN bandied VBN banding VBG bandit NN banditos NNS bandits NNS bandoleers NNS bands NNS bandstand NN bandwagon NN bandwidth NN bane NN baneful JJ bang NN bang-sashes NNS banged VBD banging VBG bangish JJ bangs NNS banish VB banished VBN banishes VBZ banishing VBG banishment NN banister NN banisters NNS banjo NN bank NN bank-affiliated JJ bank-backed JJ bank-baiting JJ bank-branch JJ bank-credit NN bank-debt NN bank-director NN bank-embezzlement JJ bank-fraud NN bank-holding JJ bank-looting JJ bank-owned JJ bank-sponsored JJ bank-teller NN banked VBD banker NN banker-editor NN bankers NNS bankholding VBG banking NN banking-related JJ bankroll VB bankrolled VBD bankrolling VBG bankrupcy NN bankrupt JJ bankruptcies NNS bankruptcy NN bankruptcy-court NN bankruptcy-law NN bankruptcy-proceedings NNS bankruptcy-reorganization NN bankruptcylaw NN bankrupts VBZ bankrupty-law NN banks NNS banned VBN banner NN banners NNS banning VBG bannnnnng VB banquet NN banquet-hall NN banquetings NNS banquets NNS bans NNS banshee NN banshees NNS banter NN bantered VBN bantering VBG baptism NN baptismal JJ baptisms NNS baptistery NN baptized VBN bar NN bar'l NN bar-buddy NN bar-code JJ bar-staged JJ barb NN barbarian NN barbarians NNS barbaric JJ barbarisms NNS barbarous JJ barbecue NN barbecued VBN barbecues NNS barbed JJ barbed-wire JJ barbell NN barbequed JJ barber NN barbers NNS barbital NN barbiturate NN barbs NNS bard NN bards NNS bare JJ bare-armed JJ bare-bones JJ bare-footed JJ bared VBD barefoot RB barefooted JJ barely RB barest JJS barflies NNS bargain NN bargain-basement JJ bargain-buying JJ bargain-hunt VB bargain-hunters NNS bargain-hunting NN bargain-priced JJ bargained VBD bargaining NN bargaining-chip NN bargains NNS barge NN barged VBN bargelike JJ bargen VBP barges NNS barging VBG baring VBG baritone NN barium NN bark NN bark-nibbling JJ barked VBD barkeep NN barking VBG barks VBZ barley NN barn NN barn-burner NN barnacles NNS barns NNS barnsful NN barnstormer NN barnyard NN barnyards NNS barometer NN barometers NNS barometric JJ baron NN baroness NN baronial JJ barons NNS barony NN baroque JJ baroreceptor NN barrack NN barracks NN barrage NN barred VBN barrel NN barrel-a-day JJ barrel-chested JJ barrel-per-day JJ barrel-vaulted JJ barrel-wide JJ barreling VBG barrels NNS barrels-a-day JJ barren JJ barricade NN barricades NNS barrier NN barrier-free JJ barrier-island NN barriers NNS barring VBG barrio NN barrister NN barristers NNS barroom NN barrow NN bars NNS bartender NN bartenders NNS barter NN bartered VBN bartering NN bas-relief NN bas-reliefs NNS bascially RB base NN base-metal NN base-metals NNS base-price NN base-rate JJ base-runner NN base-stealing JJ base-wage JJ baseball NN baseball-card JJ baseball-loving JJ baseball-watching JJ baseballight NN baseballs NNS based VBN based-CAE JJ|NP based. VBN baseless JJ baseline NN baseman NN basement NN basements NNS baser JJR bases NNS bash NN bashed VBD basher NN bashes NNS bashful JJ bashing JJ basic JJ basic-cable JJ basically RB basics NNS basil NN basileis NNS basin NN basing VBG basins NNS basis NN basis-point NN basked VBD basket NN basketball NN basketball-cutback NN basketball-playing NN baskets NNS basking VBG basophilic JJ bass NN basses NNS bassinet NN bassist NN basso NN bassoon NN bastard NN bastards NNS basting NN bastion NN bastions NNS bat NN bat-roost JJ batch NN batches NNS bateau JJ bated JJ bath NN bath-supplies NNS bathe VB bathed VBN bathers NNS bathing NN bathos NN bathrobe NN bathrobes NNS bathroom NN bathrooms NNS baths NNS bathtub NN bathtubs NNS bathwater NN batmobile NN baton NN bats NNS batsman NN battalion NN battalions NNS batted VBD batten NN battens NNS batter NN battered VBN batterie NN batteries NNS battering VBG batters NNS battery NN battery-driven JJ battery-operated JJ battery-powered JJ batting VBG battle NN battle-ax NN battle-cries NN battle-cry NN battle-shattered JJ battled VBD battlefield NN battlefield-electronic JJ battlefields NNS battlefront NN battleground NN battlegrounds NNS battlegroups NNS battlements NNS battles NNS battling VBG batwings NNS bauble NN baubles NNS bawdy JJ bawh NN bawhs NNS bawled VBD bawling VBG bay NN bayed VBD baying NN bayleefe NN bayly NN bayonet NN bayonets NNS bays NNS bazaar NN bazaars NNS bc IN bd NNS be VB be'greenlined VBN be'somewhat VB be'your NN be-that VB be-thonged JJ be... : be.... : beach NN beach-drift NN beach-head NN beach-house NN beach-party NN beached JJ beaches NNS beachfront NN beachhead NN beaching VBG beacon NN bead-like JJ beaded VBN beadle NN beads NNS beadsman NN beadwork NN beady JJ beak NN beaker NN beakers NNS beam NN beamed VBN beaming VBG beams NNS bean NN bean-counting NN beanballs NNS beans NNS beanstalk NN bear VB bear-like JJ bear-market NN bearable JJ beard NN bearded JJ beardless JJ beardown JJ beards NNS bearer NN bearing VBG bearings NNS bearish JJ bearishly RB bearishness NN bears VBZ beast NN beasties NNS beastly JJ beasts NNS beat VB beat-up JJ beaten VBN beatific JJ beatification NN beating VBG beatings NNS beatnik NN beatniks NNS beats VBZ beau NN beauteous JJ beauticians NNS beauties NNS beautiful JJ beautifully RB beautifully-built JJ beautifully-tapered JJ beautify VBP beautifying VBG beauty NN beauty-care JJ beauty-idiom NN beaver NN beavered VBD beavers NNS beavertail NN bebop NN becalmed JJ became VBD becase IN because IN beckon VBP beckoned VBD beckoning VBG beckons VBZ become VB becomed VBN becomes VBZ becometh VBZ becomin VBG becoming VBG bed NN bed-and-breakfast JJ bed-hopped VBD bed-liner NN bed-time NN bed-type JJ bedazzled VBN bedazzlement NN bedded VBN bedding NN bedevil VB bedeviled VBN bedfast JJ bedfellows NNS bedground NN bedlam NN bedpans NNS bedpost NN bedraggled JJ bedridden JJ bedrock NN bedroom NN bedrooms NNS beds NNS bedside NN bedspread NN bedsprings NNS bedstraw NN bedtime NN bee NN beebread NN beech NN beef NN beef-fat JJ beef-feeding JJ beef-hungry JJ beef-import JJ beef-jerky NN beefed VBN beefed-up JJ beefing VBG beefore IN beefs VBZ beefsteak NN beefy JJ beehive NN been VBN beep NN beeped VBN beeper NN beepers NNS beeping VBG beeps NNS beer NN beer-bellied JJ beer-belly NN beer-cooling VBG beer-distribution NN beer-drinker NN beer-guzzling JJ beer-industry NN beer-related JJ beer-runner NN beer-runners NNS beer-running NN beer-tax JJ beers NNS bees NNS beeswax NN beet NN beetle NN beetle-browed JJ beetles NNS beetling JJ beets NNS befall VB befallen VBN befell VBD befits VBZ befitting VBG befogged JJ befoh RB before IN before-and-after JJ before-school JJ before-tax JJ beforehand RB befouled VBN befriended VBD befriends VBZ befuddled VBD befuddles VBZ befuddling VBG beg VBP began VBD begat VBD beget VB begets VBZ beggar NN beggar-thy-neighbor JJ beggars NNS beggary NN begged VBD begging VBG begin VB begining NN beginner NN beginners NNS beginning VBG beginnings NNS begins VBZ begonia NN begot VBD begotten VBN begrudge VB begs VBZ beguile VBP beguiled VBN beguiling JJ begun VBN behahn RB behalf NN behave VB behaved VBD behaves VBZ behaving VBG behavior NN behavior-modification NN behavioral JJ behaviorally RB behaviors NNS behaviour NN beheaded VBD beheading NN beheld VBD behemoth NN behemoths NNS behest NN behind IN behind-schedule JJ behind-the-scenes JJ behold VB beholden JJ beholder NN beholds VBZ behooves VBZ behynde IN beige JJ bein VBG being VBG being'imprinted VBN beinge VBG beings NNS bel FW belaboring VBG belated JJ belatedly RB belch NN belched VBD belching NN beleaguered JJ belfries NNS belfry NN belie VBP belied VBD belief NN beliefs NNS belies VBZ believability NN believable JJ believably RB believe VBP believed VBD believer NN believers NNS believes VBZ believeth VBZ believing VBG belittle VBP belittled JJ belittling VBG bell NN bell-ringer NN bell-ringers NNS bell-ringing JJ bellboy NN bellboys NNS belle FW belled JJ belles NNS bellhops NNS bellicosity NN bellies NNS belligerence NN belligerent JJ belligerently RB bellow NN bellowed VBD bellowing VBG bellows VBZ bellringers NNS bells NNS bellwether NN bellwethers NNS belly NN belly-flopped VBD belly-up JJ bellyaching NN bellyfull NN belong VB belonged VBD belonging VBG belongings NNS belongs VBZ beloved JJ below IN below-average JJ below-investment JJ below-investment-grade JJ below-market JJ belowground NN belt NN belt-driven JJ belt-tightening NNS belted VBD belting NN belts NNS beltway NN beluga NN belying VBG bemaddening VBG bemoan VB bemoaned VBD bemoaning VBG bemoans VBZ bemused JJ bench NN bench... : benches NNS benchmark NN benchmarks NNS bend VB bending VBG bends NNS beneath IN benediction NN benefactor NN benefactors NNS beneficence NN beneficial JJ beneficially RB beneficiaries NNS beneficiary NN beneficient JJ benefit NN benefit-plan JJ benefit-seeking NN benefited VBD benefiting VBG benefits NNS benefits-consulting JJ benefits-for-all JJ benefits-services JJ benevolence NN benevolent JJ benighted JJ benign JJ benignant JJ bent VBD benzene NN benzodiazepines NNS bequeath VB bequeathed VBN bequest NN bequests NNS berated VBN bereavement NN bereavements NNS bereft JJ beret NN bergs NNS beribboned JJ beriberi NN berms NNS berries NNS berry NN berserk JJ berth NN berths NNS beryllium NN beseech VBP beseiged VBN beset VBN besets VBZ besetting VBG beside IN besides IN besiege VB besieged VBN besiegers NNS besieging VBG besmirch VB besmirched VBD besmirching VBG bespeak VBP bespeaks VBZ bespectacled JJ best JJS best-case JJ best-educated JJ best-financed JJ best-gaited JJ best-hearted JJ best-known JJ best-laid JJ best-looking JJ best-managed JJ best-of-seven JJ best-performing JJ best-pitcher JJ best-preserved JJ best-run JJS best-seller NN best-sellers NNS best-selling JJ best-tempered JJ bested VBN bestes NNS bestial JJ bestiary NN besting VBG bestioles NNS bestirred VBN bestow VB bestowal NN bestowed VBN bestows VBZ bestseller NN bestsellers NNS bestselling JJ bestubbled JJ besuboru FW bet NN beta NN beta-blocker NN beta-thalassemia NN betas NNS bete JJ betel-stained JJ bethought VB betide VB betray VB betrayal NN betrayed VBN betrayer NN betraying VBG betrays VBZ betrothal JJ betrothed VBD bets NNS better JJR better-capitalized JJ better-educated JJ better-known JJ better-off JJR better-paying JJ better-prepared JJ better-quality JJ better-remembered JJ better-safe-than JJ better-selling JJ better-than-average JJ better-than-expected JJ better-than-thou JJ bettered VBD bettering VBG betterment NN betters NNS betties NNS betting VBG between IN betwen NN bevel VB beveled VBN beveling VBG bevels NNS beverage NN beverages NNS bevor FW bevy NN bewail VB beware VB beween NN bewhiskered JJ bewildered VBN bewilderedly RB bewildering VBG bewilderingly RB bewilderment NN bewilders VBZ bewitched VBN bewitching VBG bewteen IN beyond IN beyond-normal JJ bhoy NN bi IN bi-modal JJ bi-monthly JJ bi-polar JJ bi-regional JJ bianco NN biannual JJ bias NN biased VBN biases NNS bib NN bible JJ bibles NNS biblical JJ bibliographical JJ bibliographies NNS bibliography NN bibliophiles NNS bibs NNS bibulous JJ bicameral JJ bicarbonate NN bicentennial NN bicep NN biceps NNS bich NN biches NNS bickered VBN bickering NN biconcave JJ bicycle NN bicycle-auto JJ bicycles NNS bicycling NN bicyclist NN bid NN bid-asked JJ bid-rigging NN bid-to-cover JJ bid-wanted JJ bidder NN bidders NNS biddies NNS bidding NN bide VB bided VBN bids NNS bids... : bieber NNP bien FW biennial JJ biennium NN bifocal JJ bifocals NNS bifurcate VB bifurcated JJ big JJ big-boned JJ big-borrowing JJ big-bucks JJ big-budget JJ big-business JJ big-chested JJ big-city JJ big-company JJ big-daddy JJ big-deposit JJ big-fee JJ big-game JJ big-hearted JJ big-large NN big-league JJ big-money JJ big-name JJ big-risk JJ big-selling JJ big-shouldered JJ big-souled JJ big-stage JJ big-stakes JJ big-stock JJ big-ticket JJ big-time JJ big-town JJ big-tube JJ bigger JJR bigger-than-expected JJ biggest JJS biggest-ever JJ biggest-selling JJ biggie NN bigness NN bigoted JJ bigotry NN bigots NNS bigticket NN bijouterie FW bike NN biker NN bikers NNS bikes NNS biking NN bikini NN bikinis NNS bilateral JJ bile NN bilevel JJ bilge NN bilges NNS bilharziasis NN bilinear JJ bilingual JJ bilious JJ bilk VB bilked VBN bilking VBG bill NN bill-introduced NN billable JJ billboard NN billboards NNS billed VBN billet NN billets NNS billfold NN billiard NN billiards NN billing NN billings NNS billion CD billion-a JJ billion-a-year JJ billion-asset JJ billion-dollar JJ billion-franc NN billion-peso JJ billion-plus JJ billion-pound JJ billion-share JJ billion-yen JJ billionaire NN billionaires NNS billionnaire NN billions NNS billon NN billowed VBD billowing VBG billows NNS bills NNS bills-measures JJ bimbos NNS bimolecular JJ bimonthly JJ bin NN binary JJ binational JJ bind NN binder NN binders NNS binding NN bindle NN binds VBZ binge NN binges NNS bingo NN bingo-like JJ binoculars NNS binomial NN bins NNS binuclear JJ bio NN bio-analytical JJ bio-assay NN bio-medical JJ bio-medicine NN bio-research NN bioTechnology NNP biochemical JJ biochemicals NNS biochemist NN biochemistry NN biochemists NNS biodegradable JJ bioengineer VB bioengineers NNS bioequivalence-therapeutic-equivalence JJ bioequivalent JJ biofeedback NN biographer NN biographer\ NN biographers NNS biographical JJ biographies NNS biography NN bioherbicide NN bioinsecticides NNS biologic JJ biological JJ biologically RB biologist NN biologists NNS biology NN biomedical JJ biomedical-products NNS biopesticide NN biopharmaceutical JJ biophysical JJ biophysicist NN biophysics NNS biopsies NNS biopsy NN bioresearch NN biosynthesized VBN biotech JJ biotechnology NN biotechnology-based JJ bipartisan JJ bipartisanship NN biped NN biplane NN biplanes NNS biracial JJ birch NN birch-paneled JJ birches NNS bird NN bird's-eye JJ bird-brain NN birdbath NN birdcage NN birdie NN birdied VBD birdies NNS birdlike JJ birds NNS birefringence NN birth NN birth-control NN birth-defect NN birth-prevention NN birthcontrol NN birthday NN birthdays NNS birthed VBN birthmark NN birthplace NN birthrate NN birthright NN births NNS biscotti NNS biscuit NN biscuits NNS bisexual JJ bishop NN bishopry NN bishops NNS bison NN bisque NN bistros NNS bit NN bit-like JJ bitch NN bitches NNS bitchy JJ bite VB bite-sized JJ bitee NN biter NN bites NNS biting VBG bitingly RB bits NNS bitten VBN bitter JJ bitterest JJS bitterly RB bitterness NN bitters NNS bittersweet JJ bituminous JJ bivouac NN biwa FW biweekly JJ biz NN bizarre JJ bizarrely RB blabbed VBD blabs VBZ black JJ black-and-orange JJ black-and-white JJ black-and-yellow JJ black-balled VBN black-bearded JJ black-body JJ black-clad JJ black-consumer NN black-crowned JJ black-draped JJ black-eyed JJ black-figured JJ black-haired JJ black-majority JJ black-market JJ black-on-black JJ black-owned JJ black-robed JJ black-tie JJ black-tipped JJ black-white JJ blackballed VBN blackberry NN blackberry-basil NN blackbird NN blackbirds NNS blackboard NN blacked VBN blacked-in JJ blacked-out JJ blackened VBN blackening NN blacker JJR blackest JJS blacking NN blackjack NN blacklist VB blacklisting NN blackmail NN blackmailed VBN blackmailer NN blackmailers NNS blackmailing VBG blackness NN blackout NN blackouts NNS blacks NNS blacksmith NN bladder NN blade NN blades NNS blame VB blamed VBD blames VBZ blaming VBG blanche JJ blanching VBG bland JJ blander JJR blandly RB blandness NN blank JJ blank-faced JJ blanket NN blanketed VBD blankets NNS blanks NNS blared VBD blares VBZ blaring VBG blarney NN blase JJ blasphemed VBD blasphemers NNS blasphemies NNS blasphemous JJ blasphemy NN blast NN blastdown NN blasted VBD blasting VBG blasts NNS blatancy NN blatant JJ blatantly RB blaze NN blazed VBD blazer NN blazing VBG blazon VB bleach NN bleached JJ bleacher NN bleacher-type JJ bleachers NNS bleaching VBG bleak JJ bleaker JJR bleakly RB bleary JJ bleat NN bleating VBG bleats NNS blebs NNS bled VBD bleed VB bleeders NNS bleeding VBG bleedings NNS bleeps NNS blem NN blemish NN blemishes NNS blend NN blended JJ blender NN blenders NNS blending VBG blends NNS bless VB blessed VBN blessing NN blessings NNS blest VB blew VBD blight NN blighted VBN blind JJ blind-folded JJ blind-pool JJ blind-sided JJ blinded VBN blindfold NN blindfolded VBN blinding JJ blindly RB blindness NN blinds NNS blindsided VBN blini NNS blink VB blinked VBD blinkers NNS blinking JJ blinks VBZ blip NN blips NNS bliss NN blissful JJ blissfully RB blister NN blistered VBN blistering VBG blisters NNS blithe JJ blithely RB blitz NN blitzes NNS blitzing VBG blitzkrieg NN blizzard NN blizzards NNS bloat NN bloated JJ bloating NN blob NN blobby JJ bloc NN block NN block-buster NN block-grant JJ block-trading NN blockade NN blockading VBG blockages NNS blockbuster NN blockbusters NNS blocked VBN blocker NN blockhouse NN blocking VBG blocks NNS blocky JJ blocs NNS blog NN bloke NN blokes NNS blond JJ blonde JJ blonde-haired JJ blonde-headed JJ blondes NNS blood NN blood-alcohol NN blood-and-guts JJ blood-bought JJ blood-cell NN blood-chilling JJ blood-clot NN blood-clotting JJ blood-filled JJ blood-flecked JJ blood-flow NNS blood-forming JJ blood-in-the-streets NNS blood-kinship NN blood-letting NN blood-lust NN blood-pressure JJ blood-red NN blood-soaked JJ blood-specked JJ blood-sport JJ blood-stained JJ blood-thirsty JJ bloodbath NN blooded VBN bloodhounds NNS bloodied JJ bloodiest JJS bloodless JJ bloodletting VBG bloodlust NN bloodroot NN bloods NNS bloodshed NN bloodshot JJ bloodspots NNS bloodstained JJ bloodstains NNS bloodstream NN bloodsucking VBG bloodthirsty JJ bloody JJ bloody-minded JJ bloom NN bloomed VBD blooming VBG blooms NNS blooper NN bloops NNS blossom VB blossomed VBD blossoms NNS blot NN blot-appearance NN blot-like JJ blotch NN blotches NNS blots NNS blotted VBD blotting VBG blouse NN blouses NNS blow NN blow-up NN blower NN blowfish NN blowing VBG blown VBN blown-up VBN blowout NN blows NNS blowtorch NN blowup NN blubber NN bludgeon VB bludgeoned VBN bludgeoned'em NN blue JJ blue-black JJ blue-blood JJ blue-blooded JJ blue-carpeted JJ blue-chip JJ blue-chips NNS blue-collar JJ blue-collar-mail JJ blue-draped JJ blue-eyed JJ blue-eyes NNS blue-glazed JJ blue-green JJ blue-ribbon JJ blue-sky JJ blue-uniformed JJ blueberries NNS blueberry NN bluebloods NNS bluebonnets NNS bluebook NN bluebush NN bluechip JJ bluefish NNS blueprint NN blueprints NNS blues NNS bluest JJS bluestocking NN bluesy JJ bluff NN bluffing VBG bluffs NNS bluing NN bluish JJ blunder NN blundered VBD blunderings NNS blunders NNS blunt VB blunted VBD blunter NN bluntest RBS bluntly RB bluntness NN blunts VBZ blur NN blurred VBN blurring VBG blurry JJ blurt NN blurted VBD blurting VBG blush NN blushed VBD blushes NNS blushing VBG bluster NN blustered VBD blustery JJ blutwurst NN bo'sun's NN boa NN boar NNS board NN board-level JJ boarded VBD boarder NN boarding VBG boarding-home NN boardinghouses NNS boardings NNS boardroom NN boardrooms NNS boards NNS boast VBP boasted VBD boastful JJ boastfully RB boasting VBG boastings NNS boasts VBZ boat NN boat-building JJ boat-rocker... : boat-yard NN boatels NNS boaters NNS boathouses NNS boating NN boatload NN boatloads NNS boatman NN boats NNS boatsmen NNS boatswain NN boatyards NNS bobbed VBD bobbin-to-cone JJ bobbing VBG bobbins NNS bobbles NNS bobby NN bobby-sox NN bobby-soxer NN bockwurst NN bodacious JJ bode VB boded VBD bodegas NNS bodes VBZ bodice NN bodied JJ bodies NNS bodily JJ bods NNS body NN body-and-assembly JJ body-numbing JJ body-tissue NN bodybuilder NN bodybuilders NNS bodybuilding NN bodyguard NN bodyguards NNS bodyweight NN bodyworkers NNS bog VB bogey NN bogey-symbol NN bogeyed VBD bogeymen NNS bogeys NNS bogged VBD bogging VBG boggled VBD bogies NNS bogs VBZ bogus JJ bogy NN bohemian JJ boies NNS boil VB boiled VBN boiler NN boiler-burner NN boiler-room NN boilerplate NN boilers NNS boiling VBG boils VBZ bois FW boisterous JJ boite NNP boites NNS bold JJ bolder JJR boldest JJS boldly RB boldness NN boll NN bolo NN bolognaise FW bolster VB bolstered VBN bolstering VBG bolsters VBZ bolt NN bolt-action JJ bolted VBN bolting VBG bolts NNS bomb NN bomb-detection JJ bomb-plant JJ bomb-proof JJ bombard VB bombarded VBD bombarding VBG bombardment NN bombardments NNS bombast NN bombastic JJ bombed VBN bomber NN bombers NNS bombing NN bombings NNS bomblets NNS bombproof NN bombs NNS bombshell NN bon FW bona FW bonanza NN bonanzas NNS bond NN bond-equivalent JJ bond-financed JJ bond-fund NN bond-futures NNS bond-holders NNS bond-insurance JJ bond-market JJ bond-price JJ bond-rating JJ bond-trading JJ bond-underwriting JJ bondage NN bonded VBN bondholder NN bondholders NNS bondholdings NNS bonding VBG bondmarket NN bonds NNS bondsman NN bone NN bone-deep JJ bone-loss NN bone-marrow NN bone-weary JJ boned VBN bones NNS bonfire NN bonfires NNS bongo NN bonheur NN bonkers JJ bonnet NN bonnets NNS bono FW bonus NN bonuses NNS bony JJ bonzes NNS boo VB boobify VB booboo NN booboos NNS booby JJ booby-trap NN boodleoo UH booed VBD boogie NN boogieman NN booing VBG book NN book-breaking JJ book-burning JJ book-buying JJ book-entry JJ book-flogging JJ book-lined JJ book-publishing NN book-review NN book-selection NN book-to-bill JJ bookcase NN bookcases NNS booked VBN booker NN bookers NNS bookies NNS booking NN bookings NNS bookish JJ bookkeeper NN bookkeeping NN booklet NN booklets NNS booklists NNS books NNS bookseller NN bookshelf NN bookshelves NNS bookstore NN bookstores NNS boom NN boom-and-bust JJ boom-boom-boom JJ boom-boxes NNS boom-or-bust JJ boomed VBD boomerang NN boomerangs NNS boomers NNS booming JJ booms NNS boomtown NN boon NN boondoggle NN boondoggler NN boondoggles NNS boorish JJ boors NNS boos NNS boost VB boosted VBD booster NN boosters NNS boosting VBG boosts NNS boot NN boot-stomping JJ boot-wearer JJ booted VBN booth NN booths NNS booting VBG bootleg JJ bootlegged VBN bootlegger NN bootleggers NNS bootlegging NN boots NNS booty NN booze NN boozed-out JJ boozing VBG bop NN borates NNS borax NN border NN bordered VBN bordering VBG borderlands NNS borderline JJ borders NNS bore VBD bore\ VBP bored VBN boredom NN borer NN borers NNS bores NNS boring JJ boringly RB born VBN born-again JJ born-to-shop JJ borne VBN borough NN boroughs NNS borrow VB borrowed VBN borrower NN borrowers NNS borrowing NN borrowings NNS borrows VBZ bosom NN bosoms NNS bosons NNS boss NN bossed VBN bosses NNS bossman NN botanical JJ botanist NN botanists NNS botany NN botched VBN both DT bother VB bothered VBN bothering VBG bothers VBZ bothersome JJ bottle NN bottled JJ bottled-water JJ bottleneck NN bottlenecks NNS bottler NN bottlers NNS bottles NNS bottling NN bottom NN bottom-down JJ bottom-dwelling JJ bottom-fishers NNS bottom-fishing NN bottom-line JJ bottom-living JJ bottom-of-the-barrel JJ bottomed VBN bottoming VBG bottomless JJ bottoms NNS botulinum NN bouanahsha FW boucle NN bouffant JJ bouffe NN bough NN boughs NNS bought VBD boulder NN boulders NNS boulevard NN boulevards NNS boun NN bounce VB bounced VBD bounces VBZ bouncing VBG bouncy JJ bound VBN boundaries NNS boundary NN bounded VBN bounding VBG boundless JJ bounds NNS bounty NN bounty-hunting NN bountyhunters NNS bouquet NN bouquets NNS bourbon NN bourbons NNS bourgeois JJ bourgeois-bashing JJ bourgeoisie NNS bourses NNS bout NN bout-de-souffle FW boutique NN boutique-lined JJ boutique-store NN boutiques NNS bouts NNS bovine JJ bovines NNS bow NN bow-tied JJ bowed VBD bowel NN bowels NNS bower NN bowing VBG bowl NN bowl-shaped JJ bowled VBN bowling NN bowling-league NN bowling-related JJ bowls NNS bows NNS bowstring NN box NN box-office NN box-sized JJ boxcar NN boxcars NNS boxed VBN boxed-in JJ boxer NN boxes NNS boxing NN boxy JJ boy NN boy-furiendo NN boy-manager NN boy-meets-girl NN boy-name NN boyars NNS boycott NN boycotted VBN boycotting VBG boycotts NNS boyfriend NN boyfriends NNS boyhood NN boyish JJ boyish-looking JJ boys NNS bra NN brace NN braced VBN bracelet NN braces NNS brachii NNS bracing VBG bracket NN brackets NNS brackish JJ brad NN bradykinin NN brag VB braggadocio NN bragged VBD bragging VBG brags VBZ brah FW braided JJ braiding VBG braids NNS brain NN brain-damaged JJ brain-wave JJ brain-wracking JJ brainchild NN brainlessly RB brainpower NN brains NNS brainstorm NN brainwashed VBN brainwashing NN brainy JJ braised VBN brake NN brakes NNS braking VBG brambles NNS bran NN bran-processing JJ branch NN branch-by-branch RB branched VBN branches NNS branching VBG branchline JJ brand NN brand-loyal JJ brand-name JJ brand-new JJ branded VBN brandin NN brandished VBD brandishes VBZ brandishing VBG brands NNS brandy NN brash JJ brashest JJS brashness NN brass NN brass-bound JJ brasses NNS brassiere NN brassieres NNS brassiness NN brassy JJ brat NN brats NNS bratwurst NN bravado NN brave JJ braved VBD bravely RB braver JJR bravery NN bravest JJS bravest-feathered JJ braving VBG bravura NN braweling VBG brawl NN brawle NN brawling NN brawny JJ braying JJ brazen JJ brazenly RB brazenness NN brazier NN brazil NN breach NN breach-of-contract JJ breached VBD breaches NNS breaching VBG bread NN bread-and-butter JJ breadbasket NN breadbox NN breaded VBN breadth NN break VB break-away NN break-down NN break-even JJ break-in NN break-neck JJ break-the-rules JJ break-through NN break-up NN break. NN breakables NNS breakage NN breakaway NN breakdown NN breakdowns NNS breaker NN breakers NNS breakeven JJ breakfast NN breakfast-table NN breakfasted VBD breakfasts NNS breakin VBG breaking VBG breaking-out NN breakneck JJ breakoff JJ breaks NNS breakthrough NN breakthroughs NNS breakup NN breakups NNS breakwater NN breakwaters NNS breast NN breast-cancer NN breasts NNS breastworks NNS breath NN breath-taking JJ breathalyzer NN breathe VB breathed VBD breather NN breathes VBZ breathing NN breathless JJ breathlessly RB breaths NNS breathtaking JJ breathy JJ bred VBN breeches NNS breed NN breeder NN breeders NNS breeding VBG breeds NNS breeze NN breezes NNS breezier JJR breezy JJ brethren NNS brevity NN brew NN brewed VBN brewer NN breweries NNS brewers NNS brewery NN brewery-scion-turned-banker NN brewing NN brewing-assets NNS brews VBZ bribe NN bribed VBD bribers NNS bribery NN bribery-related JJ bribes NNS bribing VBG bric-a-brac NN brick NN brick-and-mortar JJ bricklayers NNS bricklaying NN bricks NNS bridal JJ bride NN bride-gift NN bridegroom NN brides NNS bridesmaids NNS bridge NN bridge-financing JJ bridge-lending JJ bridge-loan JJ bridged-T NNP bridgehead NN bridgeheads NNS bridges NNS bridgework NN bridging VBG bridle NN bridled VBN brie NN brief JJ briefcase NN briefcases NNS briefed VBN briefer JJR briefest JJS briefing NN briefings NNS briefly NN briefly-illumed VBN briefs NNS brig NN brigade NN brigades NNS brigadier NN brigands NNS bright JJ bright-eyed JJ bright-green JJ bright-looking JJ bright-red JJ brighten VB brightened VBD brightener NN brightening VBG brightens VBZ brighter JJR brightest JJS brightly RB brightness NN brilliance NN brilliant JJ brilliantly RB brim NN brimful JJ brimmed VBD brimming VBG brimstone NN brindle NN brine NN bring VB bringing VBG brings VBZ brink NN brinkmanship NN brinksmanship NN briny JJ briquette NN briquettes NNS brisk JJ brisker JJR briskly RB briskness NN bristle VBP bristled VBD bristles VBZ bristling VBG brittle JJ bro NN broach VB broached VBN broad JJ broad-appeal JJ broad-based JJ broad-brimmed JJ broad-nibbed JJ broad-scale JJ broad-scaled JJ broadcast NN broadcast-and-cable JJ broadcaster NN broadcasters NNS broadcasting NN broadcastings NNS broadcasts NNS broaden VB broadened VBN broadening VBG broadens VBZ broader JJR broader-based JJ broadest JJS broadly RB broadside JJ brocade NN brocaded JJ broccoli NNS brochure NN brochures NNS brockle NN broil NN broiled VBN broiler NN broiling VBG brok VBD broke VBD broken VBN broken-backed JJ broken-down JJ broken-nosed JJ brokenly RB broker NN broker-dealer NN broker-dealers NNS broker-sold JJ brokerage NN brokerage-by-brokerage JJ brokerage-firm JJ brokerage-house NN brokerage-stock NN brokerages NNS brokered JJ brokering VBG brokers NNS bromides NNS bromphenol NN bronc NN bronchi NNS bronchial JJ bronchiolar JJ bronchiole NN bronchioles NNS bronchiolitis NN bronchitis NN bronchus NN broncs NNS bronze NN bronzed JJ bronzes NNS bronzy-green-gold JJ brooch NN brood NN brooded VBD brooding VBG broods NNS broody JJ brook NN brooked VBD brooken VBN broom NN broth NN brothel NN brothels NNS brother NN brother-in-law NN brotherhood NN brotherism NN brotherly JJ brothers NNS brought VBN brouhaha NN brow NN brow-beating NN browbeat VB browbeaten VBN brown JJ brown-black JJ brown-coal NN brown-edged JJ brown-paper JJ brown-tobacco JJ browned VBN brownies NNS browning VBG brownish JJ brownouts NNS browny JJ browny-haired JJ brows NNS browse VB browser NN browsing VBG browsing. NN brucellosis NN bruddah FW bruh NN bruinish JJ bruise NN bruised VBN bruises NNS bruising JJ bruited VBN brunch NN brunches NNS brunette JJ brunettes NNS brunt NN brush NN brushbacks NNS brushcut NN brushed VBD brushes NNS brushfire NN brushing VBG brushlike JJ brushoff NN brushwork NN brushy JJ brusquely RB brutal JJ brutal-and JJ|CC brutalism NN brutalities NNS brutality NN brutalized VBN brutally RB brute NN brutes NNS brutish JJ brynge VBP bubble NN bubbled VBN bubblelike JJ bubbles NNS bubbling VBG bubbly JJ buccaneers NNS buccolic JJ buck NN buckaroos NNS buckboard NN buckboards NNS bucked VBD bucket NN bucket-shop JJ buckets NNS bucking VBG bucking-up NN buckle VB buckle-on JJ buckled VBD buckles NNS buckling VBG bucks NNS buckshot NN buckskin NN buckskins NNS buckwheat NN bucolic JJ bud NN budded VBD buddies NNS budding VBG buddy NN budge VB budged VBD budget NN budget$ $ budget-altering JJ budget-cutting NN budget-hotel NN budget-making JJ budget-priced JJ budget-reconciliation JJ budget-reduction JJ budget-sensitive JJ budget-strapped JJ budget-wise JJ budgetary JJ budgeted VBN budgeteers NNS budgeting NN budgets NNS buds NNS budworm NN buff NN buffalo NN buffaloes NNS buffer NN buffered VBN buffet NN buffeted VBN buffetings NNS buffets NNS buffetted VBN buffetting NN buffing VBG buffoon NN buffoons NNS buffs NNS bug NN bug-free JJ bugaboo NN bugaboos NNS bugeyed JJ bugged VBN buggers NNS buggies NNS bugging NN buggy NN bugle NN bugler NN bugless JJ buglike JJ bugs NNS build VB build'em VBP|PP build-better-for-less JJ build-up NN build-ups NNS builder NN builder-dealer JJ builders NNS buildin VBG building NN building-control NN building-materials NNS building-products NNS building-related JJ building-society JJ building-supplies NNS buildings NNS builds VBZ buildup NN built VBN built-detergent JJ built-from-kit JJ built-in JJ built-soap NN builtin JJ bulb NN bulb-making JJ bulbs NNS bulge NN bulged VBD bulging VBG bulk NN bulk-buying JJ bulk-chemical NN|JJ bulk-mail NN bulked VBD bulked-up JJ bulkhead NN bulkheads NNS bulking VBG bulks VBZ bulky JJ bull NN bull's-eye NN bull's-eyes NNS bull-headed JJ bull-like JJ bull-market NN bull-necked JJ bull-roaring JJ bull-sessions NNS bulldog JJ bulldoze VB bulldozed VBN bulldozer NN bulldozers NNS bullet NN bullet-proof JJ bullet-riddled JJ bulletin NN bulletin-board NN bulletins NNS bulletproof JJ bullets NNS bullfighter NN bullhide NN bullhorn NN bullhorns NNS bullied VBD bullies VBZ bullion NN bullish JJ bullishly RB bullishness NN bullock NN bulls NNS bullshit NN bullwhackers NNS bully NN bullyboys NNS bullying VBG bulwark NN bum NN bumble VB bumble-bee NN bumblebee NN bumblebees NNS bumbling JJ bummed VBN bumming VBG bump VB bumped VBD bumper NN bumper-sticker NN bumper-to-bumper JJ bumpers NNS bumpin VBG bumping VBG bumps NNS bumptious JJ bumpy JJ bums NNS bun NN bunch NN buncha NN bunched VBN bunches NNS bunching VBG bunco NN bundle NN bundled VBN bundles NNS bundling VBG bungalow NN bungled VBD bungling VBG bunk NN bunked VBD bunker NN bunkered VBN bunkmate NN bunkmates NNS bunko NN bunko-forgery NN bunks NNS bunnies NNS bunny NN buns NNS bunt NN bunter NN bunters NNS buoy VB buoyancy NN buoyant JJ buoyed VBN buoying VBG buoys NNS burbles VBZ burden NN burden-sharing NN burdened VBN burdening VBG burdens NNS burdensome JJ burdock NN bureacracy NN bureacratic JJ bureau NN bureau-sponsored JJ bureaucracies NNS bureaucracy NN bureaucrat NN bureaucratic JJ bureaucraticized JJ bureaucratization NN bureaucrats NNS bureauracy NN bureaus NN burgeoned VBD burgeoning VBG burger NN burger-heavy JJ burgers NNS burglar NN burglaries NNS burglarized VBN burglarproof JJ burglars NNS burglary NN burgomaster NN burgs NNS burgundy NN burial NN burials NNS buried VBN burl NN burlap NN burlesque JJ burlesques NNS burley NN burly JJ burn VB burne VB burned VBN burned-out JJ burner NN burners NNS burning VBG burnings NNS burnished VBN burnishing VBG burnout NN burnouts NNS burns NNS burnt VBN burnt-orange JJ burnt-red JJ burping VBG burr NN burr-headed JJ burrow NN burrowed VBD burrowing VBG burrows NNS burrs NNS bursitis NN burst NN bursting VBG bursts NNS bury VB burying VBG bus NN busboy NN bused VBN buses NNS bush NN bushel NN bushels NNS bushes NNS bushwhacked VBD bushwhackin JJ bushy JJ bushy-tailed JJ busied VBD busier JJR busies NNS busiest JJS busily RB business NN business-as-usual JJ business-automation NN business-class JJ business-communications NNS business-credit NN business-development NN business-interruption JJ business-judgment NN business-like JJ business-machines NNS business-migration NN business-minded JJ business-oriented JJ business-partners NNS business-promotion NN business-related JJ business-services JJ business-telephone JJ business-to-business JJ business-venture JJ business... : business.... : businesses NNS businesslike JJ businessman NN businessmen NNS businessmen-authors NN businesspeople NN businesswoman NN busing VBG busload NN busloads NNS buss NN busses NNS bust NN bust-up JJ busted JJ buster NN busters NNS bustin VBG busting VBG bustle NN bustlin NN bustling JJ busts NNS busy JJ busy-work NN busybodies NNS busyness NN but CC but-bulls IN but... : butadiene-emulsions NNS butane NN butcher NN butchered VBN butchering NN butchers NNS butchery NN butler NN butlers NNS buts NNS butt NN butted VBN butter NN butterfat NN butterfat-rich JJ butterflies NNS butterfly NN butternut NN buttery JJ butting VBG buttocks NNS button NN button-down JJ buttoned VBN buttoned-down JJ buttoned-up JJ buttonholes NNS buttons NNS buttress VB buttressed VBN buttresses NNS butts NNS butyl-lithium NN butyrate NN buxom JJ buy VB buy-and-hold JJ buy-back NN buy-backs NNS buy-now JJ buy-out NN buy-out-related JJ buy-outs NNS buy-sell JJ buy-stop JJ buy\ JJ buyback JJ buyer NN buyers NNS buyin NN buying VBG buyings NNS buyout NN buyouts NNS buys VBZ buzz NN buzz-buzz-buzz NN buzzed VBD buzzer NN buzzes NNS buzzing VBG buzzsaw NN buzzword NN buzzwords NNS by IN by-election NN by-gone JJ by-laws NNS by-pass NN by-passed VBN by-passes VBZ by-passing VBG by-product NN by-products NNS by-roads NNS by-ways NNS by-wheelchair JJ bye VB bygone JJ byinge VBG bylaw NN bylaws NNS byline NN bylines NNS bypass VB bypassed VBN bypassing VBG byplay NN byproduct NN byproducts NNS bystander NN bystanders NNS bytes NNS byway NN byways NNS byword NN byzantine JJ c NN c'n VB c-Domestic JJ c-Excludes VB c-Translated VBN c-Yields NNS c-reflects VBZ c.i.f JJ ca MD ca. IN cab NN cabal NN cabana NN cabanas NNS cabaret NN cabaret-like JJ cabbage NN cabdriver NN cabin NN cabin-crew NNS cabinet NN cabinet-level JJ cabinetmakers NNS cabinets NNS cabins NNS cable NN cable-TV NN cable-TV-system NN cable-programming JJ cable-television NN cable-television-equipped JJ cable-televison NN cabled VBD cables NNS cabs NNS cacao NN cache NN caches NNS cachet NN cachexia FW cackled VBD cackly RB cacophony NN cactus NN cadaver NN cadaverous JJ cadence NN cadenza NN cadet NN cadets NNS cadge VBP cadmium NN cadre NN cadres NNS cafe NN cafes NNS cafeteria NN cafeteria-style JJ cafeterias NNS caffeine NN caffeine-free JJ cage NN caged VBN cages NNS cagey JJ cahoots NNS cain MD cajole VB cajun JJ cake NN caked VBN cakes NNS calamities NNS calamitous JJ calamity NN calcification NN calcified VBD calcium NN calcium-supplemented JJ calculable JJ calculate VB calculated VBN calculates VBZ calculating VBG calculation NN calculations NNS calculator NN calculator-toting JJ calculators NNS calculi NNS calculus NN calendar NN calendars NNS calf NN calf's-foot NN calfskin NN caliber NN calibers NNS calibrated VBN calibrates VBZ calibrating VBG calibration NN calibrations NNS calibre NN caliche-topped JJ calico JJ calinda NN caliper NN calipers NNS caliphs NNS calisthenics NNS call VB call-backs NNS call-in JJ call-ups NNS callable JJ called VBN called'isolationism NN called'low JJ caller NN callers NNS calligraphers NNS calligraphy NN callin VBG calling VBG callipygous NN callous JJ calloused JJ callously RB callousness NN calls VBZ calluses NNS calm JJ calmed VBD calmer JJR calmest JJS calming VBG calmly RB calmness NN caloric JJ calorie NN calorie-heavy JJ calories NNS calorimeter NN calorimetric JJ calumniated VBN calumny NN calves NNS calving VBG calypso NN camaraderie NN camcorder NN camcorders NNS came VBD camel NN camellias NNS cameo NN cameo-like JJ cameos NNS camera NN cameraman NN cameramen NNS cameras NNS camouflage NN camouflaged VBN camp NN camp-made JJ campagna NN campaign NN campaign-decided NN campaign-finance JJ campaigned VBD campaigners NNS campaigning VBG campaigns NNS camped VBD camper NN campers NNS campfire NN campground NN campgrounds NNS camping NN camping-out JJ campmate NN camps NNS campsites NNS campus NN campuses NNS cams NNS can MD can't MD can.. MD canal NN canals NNS canard NN canary-colored JJ cancel VB canceled VBN canceling VBG cancellation NN cancellations NNS cancelled VBN cancelling VBG cancels VBZ cancer NN cancer-causing JJ cancer-gene JJ cancer-related JJ cancer-ridden JJ cancer-suppressing JJ cancer-suppressors NNS cancer-susceptible JJ cancerous JJ cancers NNS candid JJ candidacy NN candidate NN candidate-picking JJ candidates NNS candidly RB candies NNS candle NN candle-lit JJ candlelight NN candles NNS candlewick NN candor NN candour NN candy NN candybar NN cane NN canine JJ caning NN canister NN canisters NNS canker NN canned JJ canned-food NN canned-foods NNS canned-mushroom JJ canneries NNS canners NNS cannery NN cannibalism NN cannibalistic JJ cannibalize VB cannibalizing VBG cannibals NNS canning NN cannister NN cannisters NNS cannon NN cannonball NN cannons NNS cannot MD canny JJ canoe NN canoes NNS canon NN canonist NN canonized VBN canons NNS canopy NN cans NNS cant NN cantaloupe NN canted JJ canteen NN canter NN canter'neath VBP|IN cantered VBD cantilevers NNS canting JJ cantles NNS canto FW cantonal JJ cantonment NN cantons NNS canvas NN canvases NNS canvass NN canvassed VBN canvassers NNS canvassing VBG canyon NN canyons NNS canyonside NN cap NN cap'n NN cap-and-ball JJ cap. NN capabilities NNS capabilities. NN capability NN capability... : capable JJ capably RB capacious JJ capacitance NN capacities NNS capacitor NN capacitors NNS capacity NN capacity-controlled JJ capacity-expansion JJ cape NN caper NN capercailzie NN capering VBG capers NNS capes NNS capillary NN capita NNS capital NN capital-appreciation NN capital-assets NNS capital-boosting JJ capital-coverage NN capital-draining VBG capital-equipment NN capital-formation NN capital-gain JJ capital-gains NNS capital-gains-cut JJ capital-gains-tax JJ capital-goods NNS capital-improvement NN capital-intensive JJ capital-market JJ capital-markets JJ capital-punishment NN capital-raising JJ capital-reserve JJ capital-spending JJ capital-to-asset NN capital-to-assets JJ capitalgains NNS capitalism NN capitalist JJ capitalist-democratic JJ capitalist-exploiters-greedy-American-consumers-global JJ capitalistic JJ capitalists NNS capitalization NN capitalizations NNS capitalize VB capitalized VBN capitalizes VBZ capitalizing VBG capitalmarket NN capitals NNS capitol NN capitulated VBD capitulation NN capo NN capos NNS capped VBD capping VBG cappuccino NN capricious JJ capriciously RB capriciousness NN caps NNS capsicum NN capstan NN capsule NN capsules NNS captain NN captaincy NN captains NNS caption NN captioned VBD captions NNS captious JJ captivated VBN captivating JJ captive JJ captives NNS captivity NN captors NNS capture VB captured VBN captures VBZ capturing VBG car NN car-assembly NN car-buff JJ car-care JJ car-crash JJ car-dealers NNS car-development NN car-happy JJ car-industry NN car-leasing NN car-maker NN car-market JJ car-owners NNS car-parking JJ car-parts JJ car-rental JJ car-safety JJ car-sales NNS carabao NN caramel NN carat NN carats NNS caravan NN caravans NNS caraway JJ carbamazepine NN carbaryl NN carbide NN carbide-products NNS carbine NN carbines NNS carbohydrate NN carbon NN carbon-14 NN carbon-dioxide NN carbon-halogen NN carbon-impregnated JJ carbon-monoxide NN carbonates NNS carbons NNS carbonyl NN carborundum JJ carboxy-labeled JJ carboxymethyl NN carcass NN carcasses NNS carcinogen NN carcinogenic JJ carcinogens NNS carcinoma NN card NN card-activated JJ card-carrying JJ card-holder NN card-member JJ cardamom NN cardboard NN cardholder NN cardholders NNS cardiac JJ cardiac-drug JJ cardigan NN cardinal JJ cardinals NNS cardiologist NN cardiologists NNS cardiomegaly NN cardiovascular JJ cardmember NN cardmembers NNS cards NNS care NN care-adviser NN care-free JJ care. NN cared VBD careen VB careened VBD careening VBG career NN career-bound JJ career-risking JJ careerism NN careerists NNS careers NNS carefree JJ careful JJ carefully RB carefulness NN caregiver NN caregivers NNS careless JJ carelessly RB carelessness NN cares VBZ caress VB caressed VBD caresses NNS caressing VBG caretaker NN careworn JJ cargo NN cargo-handling NN cargoes NNS caribou NN caricature NN caricatured VBN caricatures NNS caricaturist NN carillons NNS caring VBG carinii NN carload NN carloading NN carloads NNS carnage NN carnal JJ carnality NN carne FW carnival NN carnivores NNS carnivorous JJ caro FW carob NN carousel NN carousing NN carp VBP carpal NN carpenter NN carpenters NNS carpentry NN carpet NN carpet-cleaning JJ carpetbaggers NNS carpeted VBN carpeting NN carpets NNS carping VBG carport NN carps VBZ carreer NN carriage NN carriage-step NN carriages NNS carried VBD carrier NN carrier-based JJ carrier-current JJ carriers NNS carries VBZ carrion JJ carrot NN carrots NNS carry VB carry-forward NN carry-forwards NNS carry-in JJ carry-on JJ carryforwards NNS carrying VBG carryover NN carryovers NNS cars NNS cart NN carte NN carted VBD cartel NN cartelized VBN cartels NNS cartilage NN carting VBG carton NN cartons NNS cartoon NN cartoonish JJ cartoonist NN cartoonists NNS cartoonlike JJ cartoons NNS cartridge NN cartridges NNS carts NNS cartwheels NNS carve VB carved VBN carved-out-of-solid JJ carven VBN carver NN carvers NNS carves VBZ carving VBG carvings NNS caryatides NNS casbah NN cascade NN cascaded VBD cascades VBZ cascading VBG case NN case-by-case JJ case-hardened JJ case-history NN case-law NN case-to-case JJ case... : casebook NN cased VBD casein NN caseload NN caseloads NNS cases NNS casework NN caseworkers NNS cash NN cash*/NN-flow JJ cash-and-stock JJ cash-back JJ cash-deferred JJ cash-draw JJ cash-equivalent JJ cash-flow JJ cash-flush JJ cash-hungry JJ cash-interest JJ cash-laden JJ cash-management JJ cash-only JJ cash-or-shares JJ cash-raising JJ cash-rich JJ cash-short JJ cash-squeeze NN cash-squeezed JJ cash-starved JJ cash-strapped JJ cash-up-front NN cash-value JJ cashed VBD cashews NNS cashflow NN cashier NN cashiers NNS cashing VBG cashmere NN casings NNS casino NN casino-company NN casino-hotel NN casinos NNS cask NN casket NN caskets NNS casks NNS cassette NN cassettes NNS cassocked JJ cast NN cast-iron NN cast-proof JJ castanets NNS caste NN caster NN casters NNS castigate VB castigated VBN castigates VBZ castigating VBG castigation NN casting VBG castings NNS castle NN castle-like JJ castle-themed JJ castlelike JJ castles NNS castling VBG castoff JJ castor NN castor-oil NN castorbean NN castorbeans NNS casts VBZ casual JJ casually RB casuals NNS casualties NNS casualty NN casualty-insurance NN casualty-loss JJ casuistry NN cat NN cat-and-mouse JJ cat-like JJ cataclysmic JJ cataclysms NNS catalog NN catalog-clothing-merchandiser NN cataloging VBG catalogs NNS catalogue NN catalogued VBN catalogues NNS catalyst NN catalysts NNS catalytic JJ catalyzed VBN catamaran NN catapult VB catapulted VBD catapulting VBG catapults VBZ cataract NN cataracts NNS catastrophe NN catastrophes NNS catastrophic JJ catastrophic-care NN catastrophic-health JJ catastrophic-health-care NN catastrophic-healthcare JJ catastrophic-illness NN catastrophically RB catbird JJ catcalls NNS catch VB catch-all JJ catch-up NN catchall NN catchee VB catcher NN catchers NNS catches VBZ catching VBG catchup JJ catchword NN catchwords NNS catchy JJ catechism NN catechize VB catecholamines NNS categorical JJ categorically RB categories NNS categorize VB categorized VBN categorizing VBG category NN cater VBP catered VBD caterer NN catering NN caterpillar NN caterpillars NNS caters VBZ catfish NN catharsis NN cathartic JJ cathedra FW cathedral NN cathedrals NNS catheter NN catheters NNS cathode NN cathode-ray NN cathoderay NN cathodes NNS cathodoluminescent JJ cathodophoretic JJ cathouse NN catkin NN catkins NNS catlike JJ cats NNS catsup NN cattaloe NN cattle NNS cattle-car NN cattle-lifter NN cattlemen NNS catty JJ caucus NN caucuses NNS caught VBN cauliflower NN causal JJ causally RB causative JJ cause NN cause-and-effect JJ cause... : caused VBN causes NNS causeway NN causeways NNS causing VBG caustic JJ cauterize VB caution NN cautionary JJ cautioned VBD cautioning VBG cautions VBZ cautious JJ cautiously RB cautiousness NN cavalcades NNS cavalier JJ cavalry NN cavalrymen NNS cave NN cave-in NN cave-like JJ cave-men NNS caveat NN caveats NNS caved VBD cavemen NNS cavern NN cavernous JJ caves NNS caviar NN cavin VBG caving NN cavities NNS cavity NN cavity-fighting JJ cavort VBP cavorted VBD cavorting VBG cawing VBG cayenne NN cc NN cc. NN cease VB cease-and-desist JJ cease-fire NN ceased VBD ceasefire NN ceaseless JJ ceaselessly RB ceases VBZ ceasing VBG cedar NN cedar-roofed JJ cede VB ceded VBD ceding VBG ceiling NN ceilings NNS celebrants NNS celebrate VB celebrated VBD celebrates VBZ celebrating VBG celebration NN celebrations NNS celebrators NNS celebrities NNS celebrity NN celebrity-driven JJ celebrity-oriented JJ celerity NN celery NN celestial JJ celiac JJ cell NN cell-free JJ cellar NN cellars NNS cellist NN cellists NNS cellophane NN cells NNS cellular JJ cellular-phone NN cellular-telephone JJ celluloids NNS cellulose NN celluloses NNS celtics NNPS cement NN cement-and-glass JJ cement-makers NNS cement-making JJ cement-mixing JJ cement-truck JJ cemented VBN cementing VBG cemeteries NNS cemetery NN censor VBP censored VBN censorial JJ censors NNS censorship NN censure NN censured VBD censures NNS census NN censuses NNS cent NN cent-a-bushel JJ cent-per-barrel JJ centaur NN centenarians NNS centenary JJ centennial NN center NN center-aisle NN center-field NN center-fire JJ center-punch VB center-right JJ center-stage JJ center-vented JJ centered VBN centerfielder NN centerfold NN centering VBG centerline NN centerpiece NN centers NNS centerstage NN centigrade JJ centimeter NN centimeters NNS central JJ central-bank NN central-city NN central-district JJ central-planning JJ centrality NN centralization NN centralize VB centralized JJ centralizing VBG centrally RB centre NN centrex NN centric JJ centrifugal JJ centrifugation NN centrifuge NN centrifuged VBN centrifuging VBG centrist JJ cents NNS cents-a-share JJ cents-a-unit JJ cents-off JJ cents-per-hour JJ centum NN centuries NNS centuries-old JJ centurions NNS century NN century-old JJ century... : ceramic JJ ceramics NNS cereal NN cereals NNS cerebellum NN cerebral JJ cerebrated VBN ceremonial JJ ceremonially RB ceremonies NNS ceremoniously RB ceremony NN certain JJ certainly RB certainty NN certificate NN certificate-of-need NN certificates NNS certification NN certified VBN certifies VBZ certify VB certifying VBG certin NN certiorari NNS certitudes NNS cerulean NN cervelat NN cervical JJ cervix NN cesium-137 NN cessation NN cession NN cesspools NNS cetera NN ceteras FW cf. NN cha-chas NNS chafe VBP chafed VBN chafes VBZ chaff NN chaffing VBG chafing VBG chaga NN chagrin NN chain NN chain-of-command NN chain-reaction NN chain-smoking NN chain-store JJ chain... : chained VBD chainlike JJ chains NNS chair NN chaired VBN chairing NN chairman NN chairman-designate NNP chairman-elect NN chairmanship NN chairmanships NNS chairmen NNS chairs NNS chairwoman NN chaise NN chalk NN chalk-white JJ chalked VBN chalking VBG chalky JJ challenge NN challengeable JJ challenged VBD challenger NN challengers NNS challenges NNS challenging VBG chamber NN chamber-music JJ chambered VBN chambermaid NN chambermaids NNS chamberpot NN chambers NNS chambre FW chameleon NN chameleons NNS chamfer NN chamois NN champ NN champagne NN champion NN championed VBN championing VBG champions NNS championship NN championship-team JJ championships NNS champs NNS chance NN chanced VBD chancel NN chancellor NN chanceries NNS chancery NN chances NNS chancy JJ chandelier NN chandeliers NNS chandelle VB change NN change-over NN change-ringing NN changeable JJ changed VBN changed... : changeover NN changes NNS changes... : changing VBG channel NN channel-zapping JJ channeled VBN channeling VBG channelled VBN channels NNS chansons FW chant NN chanted VBD chanter FW chanteuse NN chantey NN chantier FW chanting VBG chants NNS chaos NN chaotic JJ chap NN chap. NN chapel NN chapel-like JJ chapels NNS chaperon NN chaperone NN chaperoned JJ chaplain NN chaplains NNS chaps NNS chapter NN chapters NNS char VB char-broiled JJ char-grilled JJ character NN character-education NN character-recognition NN characteristic JJ characteristically RB characteristics NNS characterization NN characterizations NNS characterize VB characterized VBN characterizes VBZ characterizing VBG characterless JJ characters NNS charcoal NN charcoal-broiled JJ charcoaled VBN charge NN charge-a-plate NN charge-card JJ charge-excess NN charge-offs NNS charge-offs... : chargeable JJ charged VBN charges NNS chargin VBG charging VBG chariot NN charisma NN charismatic JJ charitable JJ charitably RB charities NNS charity NN charlatan NN charlatanry NN charlatans NNS charlotte NN charm NN charmed VBN charmer NN charmers NNS charming JJ charmingly RB charms NNS charred JJ chart NN chart-room JJ chartaceos NNS charted VBN charter NN charter-boat NN charter-shipping JJ charter-type JJ chartered JJ charters NNS charting NN chartings NNS chartist NN chartists NNS chartroom NN charts NNS chary JJ chase NN chased VBN chasers NNS chasing VBG chasm NN chassis NN chaste JJ chastened VBD chastised VBD chastisement NN chastises VBZ chastity NN chat NN chateau NN chateaux NN chatte FW chatted VBD chattels NNS chatter NN chattered VBD chattering VBG chattily RB chatting VBG chatty JJ chauffeur NN chauffeur-driven JJ chauffeured VBN chauffeurs NNS chaulmoogra NN chauvinism NN chauvinistic JJ chauvinists NNS chaw NN cheap JJ cheap-money NN cheap-shot JJ cheap-to-make JJ cheap-wine JJ cheapening VBG cheapens VBZ cheaper JJR cheapest JJS cheaply RB cheat VB cheated VBN cheater NN cheaters NNS cheating NN cheats VBZ check NN check-kiting JJ check-out NN check-processing JJ check-ups NNS checkbook NN checkbooks NNS checked VBN checker NN checkers NNS checkin VBG checking VBG checking-account JJ checklist NN checkout NN checkout-stand NN checkpoints NNS checks NNS checkup NN cheek NN cheek-by-jowl JJ cheek-to-cheek JJ cheek-to-jowl RB cheekbone NN cheekbones NNS cheeks NNS cheeky JJ cheer NN cheere VBP cheered VBD cheerful JJ cheerfully RB cheerfulness NN cheering VBG cheerleader NN cheerleaders NNS cheerleading NN cheers NNS cheery JJ cheese NN cheeseburgers NNS cheesecake NN cheesecloth NN cheeses NNS cheesy JJ cheetah NN cheetal JJ chef NN chefs NNS chelas NNS chelicerates NNS chemcial JJ chemical NN chemical-and-resource JJ chemical-arms NNS chemical-arms-control JJ chemical-bomb NN chemical-industry NN chemical-weapon NN chemical-weapons NNS chemically RB chemicals NNS chemicals-industry NN chemise NN chemist NN chemist-turned-entrepreneur NN chemistries NNS chemistry NN chemists NNS chemotherapy NN chenille NN cherish VB cherished VBN cherishes VBZ cherishing VBG cherries NNS cherry JJ cherry-flavored JJ cherubim NN cherubs NNS chess NN chest NN chest-back-lat-shoulder JJ chest-back-shoulder JJ chest-high JJ chest-swelling JJ chestnut NN chestnuts NNS chests NNS chevaux FW chevre NN chew VB chewed VBD chewing VBG chews NNS chi-chi FW chic JJ chicago NNP chicanery NN chick NN chicken NN chicken-and-egg JJ chicken-mutilating JJ chicken-wire JJ chickens NNS chicks NNS chicly RB chide VB chided VBN chides VBZ chiding VBG chief JJ chiefdom NN chiefdoms NNS chiefly RB chiefs NNS chieftain NN chieftains NNS chien FW chignon NN chilblains NNS child NN child-abuse NN child-as-required-yuppie-possession NN child-bearing NN child-care NN child-cloud NN child-development NN child-face NN child-oriented JJ child-parent JJ child-protection NN child-rearing NN child-safety JJ childbearing VBG childbirth NN childcare NN childhood NN childish JJ childishly RB childishness NN childless JJ childlike JJ children NNS children's-rights JJ childrens NNS chili NN chill NN chilled VBN chillier NN chillin VBG chilling VBG chillingly RB chills NNS chilly JJ chimed VBD chimera-chasing JJ chimes VBZ chimiques FW chimney NN chimneys NNS chimp NN chimpanzees NNS chimps NNS chin NN chin-out JJ chin-up IN chin-ups NNS chin-wagging JJ china NN chines NNS chinked VBN chinless JJ chinning NN chinoiserie NN chinos NNS chins NNS chintz VBP chip NN chip-design JJ chip-making NN chip-packaging NN chipped VBN chipper JJ chipping VBG chips NNS chiropractor NN chirped VBD chirping VBG chirpy JJ chisel NN chiseled VBN chisels NNS chit NN chitchat NN chivalrous JJ chivalry NN chive NN chives NNS chivying VBG chlorazepate NN chloride NN chlorides NNS chlorine NN chlorine-carbon NN chlorofluorocarbon NN chlorofluorocarbons NNS chlorothiazide NN chlorpromazine NN chock-a-block JJ chockfull JJ chocks NNS chocolate NN chocolates NNS choice NN choices NNS choicest JJS choir NN choke VB choked VBD choking VBG chole NN cholecystokinin NN cholelithiasis NN cholera NN cholesterol NN cholesterol-fearing JJ cholesterol-free JJ cholesterol-lowering JJ cholesterol-reduction NN cholesterol-rich JJ cholinesterase NN cholla NN cholorfluorocarbons NNS chomp NN chomped VBN chomping VBG choose VB chooses VBZ choosier JJR choosing VBG choosy JJ chop VB chopped JJ chopper NN choppiness NN chopping VBG choppy JJ chops NNS chopsticks NNS choral JJ chord NN chords NNS chore NN choreographed VBN choreographer NN choreographers NNS choreographic JJ choreography NN chores NNS chorines NNS choring NN|VBG chortled VBD chortles VBZ chortling VBG chorus NN chorused VBD choruses NNS chose VBD chosen VBN chouise NN chousin VBG chow NN chowder NN chowders NNS chris NNP christen VB christened VBD christening NN christianizing VBG chromatic JJ chromatics NNS chromatogram NN chromatographic JJ chromatography NN chrome NN chromed JJ chromic JJ chromium NN chromium-plated JJ chromium-substituted JJ chromosome NN chromosomes NNS chronic JJ chronically RB chronicle NN chronicled VBD chronicler NN chroniclers NNS chronicles VBZ chronicling VBG chronological JJ chronologically RB chronology NN chrysanthemums NNS chrysotile NN chubby JJ chuck NN chuck-a-luck NN chucked VBD chucking VBG chuckle NN chuckled VBD chuckles NNS chuckling VBG chuffing VBG chug VBP chugging VBG chugs NNS chum NN chumminess NN chump NN chums NNS chunk NN chunks NNS chunky JJ church NN church-goers NNS church-going JJ church-owned JJ church-state NN church-supported JJ churches NNS churchgoers NNS churchgoing JJ churchly JJ churchmen NNS churchyard NN churn VB churned VBD churning VBG churns VBZ chute NN chutney NN chutzpah NN cials NNS cicadas NNS cider NN cigar NN cigar-chomping JJ cigar-making JJ cigaret NN cigarette NN cigarette-tax NN cigarette-vending JJ cigarettes NNS cigars NNS cilia NNS ciliated VBN ciliates NNS cinch NN cinches NNS cinder NN cinder-block JJ cinderblock NN cinders NNS cinema NN cinematic JJ cinematographer NN cinematography NN cinq FW cipher VB ciphers NNS circa RB circle NN circled VBD circles NNS circling VBG circonscription NN circonscriptions NNS circuit NN circuit-board NN circuit-breaker NN circuitous JJ circuitry NN circuits NNS circular JJ circularity NN circulars NNS circulate VB circulated VBD circulates VBZ circulating VBG circulation NN circulations NNS circulatory JJ circumcision NN circumference NN circumlocution NN circumpolar JJ circumscribed JJ circumscribing VBG circumscriptions NNS circumspect JJ circumspection NN circumspectly RB circumstance NN circumstances NNS circumstantial JJ circumvent VB circumvent... : circumventing VBG circumvention NN circumvents VBZ circus NN circuses NNS cirrhosis NN cistern NN citadels NNS citation NN citations NNS cite VBP cited VBD cites VBZ cities NNS citing VBG citizen NN citizen-plaintiffs NNS citizen-sparked JJ citizenry NN citizens NNS citizenship NN cito FW citrated VBN citric JJ citron JJ citrus JJ city NN city-bred JJ city-charter NN city-dweller NN city-like JJ city-owned JJ city-states NNS city-trading NN city-wide JJ city\/regional JJ citya NN citybred JJ cityscapes NNS citywide JJ civ NN civic JJ civic-lunch JJ civics NNS civil JJ civil-investigative JJ civil-liberties NNS civil-rights NNS civil-service JJ civilian JJ civilian-aircraft NN civilians NNS civilised JJ civility NN civilization NN civilizational JJ civilizations NNS civilize VB civilized JJ civilizing VBG clad VBN cladding NN claim NN claimant NN claimants NNS claimed VBD claiming VBG claims NNS claims-processing NN clairaudiently RB clairvoyance NN clairvoyant JJ clam NN clambered VBD clambering VBG clammy JJ clamor VBP clamored VBD clamoring VBG clamorous JJ clamors VBZ clamp VB clampdown NN clampdowns NNS clamped VBD clamping VBG clamps NNS clams NNS clamshell NN clamshells NNS clan NN clandestine JJ clang NN clanged VBD clanging NN clanking VBG clannish JJ clannishness NN clap NN clapboard NN clapped VBD clapping VBG claps NNS claptrap NN claret NN clarets NNS clarification NN clarifications NNS clarified VBN clarifies VBZ clarify VB clarifying VBG clarinet NN clarinetist NN clarity NN clash NN clashed VBN clashes NNS clashing VBG clasped VBD clasping VBG class NN class-action JJ class-based JJ class-biased JJ class-conscious JJ class-warfare JJ class-warrior NN classed VBN classes NNS classic JJ classical JJ classical-music JJ classically RB classicism NN classics NNS classiest JJS classification NN classification-angle JJ classifications NNS classificatory JJ classified VBN classified-ad NN classifiers NNS classifies VBZ classify VB classifying VBG classless JJ classmate NN classmates NNS classroom NN classrooms NNS classy JJ clatter NN clattered VBD clattering VBG clattery JJ claudication NN clause NN clauses NNS claustrophobia NN claustrophobic JJ claw NN clawed VBN clawing VBG claws NNS clay NN clay-like JJ clay-mining NN clays NNS clean JJ clean-air JJ clean-bank JJ clean-burning JJ clean-cut JJ clean-fuels NNS clean-shaven JJ clean-top JJ clean-up JJ clean-water NN cleaned VBN cleaned-up JJ cleaner JJR cleaner-burning JJ cleaners NNS cleanest JJS cleaning NN cleaning-fluid NN cleanliness NN cleanly RB cleans VBZ cleanse VB cleansed VBD cleanser NN cleansers NNS cleansing NN cleanup NN cleanups NNS clear JJ clear-channel JJ clear-cut JJ clear-cutting NN clear-eyed JJ clear-headed JJ clear-it-out JJ clearance NN clearances NNS cleared VBN clearer JJR clearest JJS clearheaded JJ clearing VBG clearing-firm JJ clearinghouse NN clearly RB clearnace NN clearness NN clears VBZ cleat NN cleavage NN cleave VB cleaved VBN cleaver NN cleft NN clefts NNS clemency NN clench VB clenched JJ clenches VBZ clergy NN clergyman NN clergymen NNS cleric NN clerical JJ clerical-lay JJ clerics NNS clerk NN clerk-turned JJ clerking NN clerks NNS clever JJ cleverly RB cleverness NN cliche NN cliched JJ cliches NNS click NN clicked VBD clicking VBG clicks NNS client NN client-service JJ clientele NN clients NNS clientslose JJ cliff NN cliffhanging VBG cliffs NNS climactic JJ climate NN climates NNS climatic JJ climax NN climaxed VBD climaxes NNS climb VB climbable JJ climbed VBD climber NN climbers NNS climbing VBG climbs VBZ clime NN climes NNS clinch VB clinched VBD clincher NN clinches NNS clinching VBG cling VBP clinging VBG clings VBZ clingy JJ clinic NN clinical JJ clinical-products NNS clinically RB clinician NN clinics NNS clinked VBD clinkers NNS clip NN clipboard NN clipboard-size JJ clipboard-sized JJ clipboards NNS clipped VBN clipping NN clippings NNS clips NNS clique NN cliques NNS cloak NN cloakrooms NNS cloaks NNS clobber VB clobbered VBN clobbers VBZ clock NN clock-stopped VBN clocked VBN clocking NN clocks NNS clockwise RB clockwork NN clod NN cloddishness NN clodhoppers NNS clods NNS clog VB clogged VBN clogging VBG clogs VBZ cloistered JJ cloisters NNS clomped VBD clonazepam NN clone NN cloned VBN clones NNS clonic JJ cloning VBG close VB close-in JJ close-knit JJ close-mouthed JJ close-up NN closed VBD closed-circuit JJ closed-door JJ closed-end JJ closedown NN closedowns NNS closely RB closely-held JJ closely-packed JJ closeness NN closer JJR closes VBZ closest JJS closet NN closet-sized JJ closeted JJ closets NNS closeup JJ closeups NNS closing VBG closings NNS closure NN closures NNS clot NN clot-reducing JJ cloth NN cloth-of-gold NN clothbound JJ clothe VB clothed VBN clothes NNS clothesbrush NN clotheshorse NN clothesline NN clotheslines NNS clothier NN clothiers NNS clothing NN clothing-store NN clots NNS clotted JJ clotting VBG cloture NN cloud NN cloud-flecked JJ cloudburst NN clouded VBN clouding NN cloudless JJ clouds NNS cloudy JJ clout NN clove NN clover NN cloves NNS clown NN clowning NN clowns NNS cloying JJ clozapine NN club NN clubbed JJ clubbers NNS clubby JJ clubhouse NN clubhouses NNS clubrooms NNS clubs NNS cluck NN clucked VBD clucking VBG clucks VBZ clue NN clues NNS clump NN clumps NNS clumsily RB clumsy JJ clung VBD clunker NN clunky JJ cluster NN clustered VBN clustering VBG clusters NNS clutch NN clutched VBD clutches NNS clutching VBG clutter NN cluttered VBN cm NN cm. NN cnt VB co-anchor NN co-anchored VBN co-author NN co-authored VBN co-authors VBZ co-chaired VBN co-chairman NN co-chairmen NNS co-chairperson NN co-chief JJ co-conspirators NNS co-defendant NN co-defendants NNS co-develop VB co-developers NNS co-director NN co-edited JJ co-editor NN co-edits VBZ co-educational JJ co-exist VB co-existence NN co-extinction NN co-founded VBD co-founder NN co-founders NNS co-head NN co-heads NNS co-hero NN co-host VBP co-insurance JJ co-inventors NNS co-lead JJ co-major NN co-managed VBN co-manager NN co-managers NNS co-managing JJ co-market VB co-marketing JJ co-obligation NN co-occurring JJ co-op NN co-operate NN co-operated VBD co-operates VBZ co-operating VBG co-operation NN co-operative JJ co-ops NN co-optation NN co-opted VBN co-opting NN co-ordinate VB co-ordinated JJ co-ordinates VBZ co-ordinating VBG co-ordination NN co-ordinator NN co-owner NN co-payment JJ co-payments NNS co-pilot NN co-pilots NNS co-plaintiff NN co-presidents NNS co-produce VB co-produced VBD co-production NN co-publisher NN co-signed JJ co-signers NN co-sponsor NN co-sponsored VBD co-sponsoring JJ co-sponsors NNS co-star NN co-venture NN co-worker NN co-workers NNS co-written VBN co-wrote VBD coach NN coached VBN coaches NNS coaching NN coachman NN coachmen NNS coachwork NN coagulating VBG coahse NN coal NN coal-black JJ coal-fire JJ coal-fired JJ coal-like JJ coal-miners NNS coal-mining JJ coal-preparation JJ coal-railroad NN coal-seam-gas JJ coalesce VB coalesced VBN coalescence NN coalesces VBZ coalfields NNS coalition NN coalitions NNS coals NNS coals-to-Newcastle JJ coarse JJ coarsely RB coarsened VBN coarseness NN coast NN coast-to-coast JJ coastal JJ coasted VBD coaster NN coasters NNS coastline NN coasts NNS coat NN coat... : coated VBN coated-magnetic JJ coating NN coatings NNS coats NNS coattails NNS coax VB coaxed VBN coaxes VBZ coaxial JJ coaxing JJ cobalt NN cobalt-60 NN cobbled VBN cobbler NN cobblestone NN cobblestones NNS cobra NN cobwebs NNS coca NN cocaine NN cocaine-processing NN cocao NN coccidioidomycosis NN coccidiosis NN cochannel JJ cock NN cockatoo NN cockatoos NNS cocked VBD cockeyed JJ cockier JJR cockiness NN cockles NNS cockpit NN cockpits NNS cockroach NN cockroaches NNS cocktail NN cocktails NNS cocky JJ coco NN cocoa NN cocoa-trading JJ coconut NN coconut-containing JJ coconut-lime JJ coconuts NNS cocoon NN cocopalm NN cocotte NN cocu NN cod NN cod-liver NN coddle VBP coddled VBN coddling NN code NN code-named VBN code-related JJ code-sharing NN coded VBN codes NNS codetermines VBZ codewords NNS codfish NN codger NN codification NN codified VBN codifies VBZ codifying VBG coding NN codpiece NN coed NN coeds NNS coefficient NN coefficients NNS coerce VB coerced VBN coerces VBZ coercion NN coercive JJ coexist VB coexistence NN coexistent JJ coextrude VBP cofactors NNS coffee NN coffee-house NN coffee-roasting JJ coffeecup NN coffeehouse NN coffeepot NN coffees NNS coffers NNS coffin NN coffin-sized JJ cofounder NN cog NN cogeneration NN cogeneration-plant NN cogently RB cognac NN cognate JJ cognitive JJ cognizance NN cognizant JJ cognoscenti NNS cogs NNS cohere VB coherence NN coherent JJ coherently RB cohesion NN cohesive JJ cohesively RB cohesiveness NN cohnfidunt NN cohort NN cohorts NNS coiffed JJ coiffure NN coil NN coiled VBD coiling VBG coils NNS coily RB coin NN coin-cleaning JJ coin-operated JJ coincide VB coincided VBD coincidence NN coincidences NNS coincident JJ coincidental JJ coincidentally RB coincides VBZ coinciding VBG coined VBN coins NNS coke NN cola NN colander NN colas NNS colchicum NN cold JJ cold-blooded JJ cold-bloodedly RB cold-cereal JJ cold-cuts NNS cold-rolled JJ cold-storage JJ cold-war JJ cold-weather JJ colde MD colder JJR coldest JJS coldhearted JJ coldly RB coldness NN colds NNS cole NN coli NNS colicky JJ coliseum NN collaborate VB collaborated VBD collaborates VBZ collaborating VBG collaboration NN collaborations NNS collaborative JJ collaborator NN collaborators NNS collage NN collagen NN collages NNS collapse NN collapsed VBD collapses VBZ collapsible JJ collapsing VBG collar NN collar-to-collar JJ collarbone NN collared VBN collars NNS collated VBN collateral NN collateralized JJ collation NN colleague NN colleagues NNS collect VB collectability NN collected VBN collectible JJ collectibles NNS collecting VBG collection NN collections NNS collective JJ collective-bargaining JJ collectively RB collectives NNS collectivization NN collectivizers NNS collector NN collectors NNS collects VBZ college NN college-bound JJ college-bowl NN college-completion JJ college-educated JJ college-oriented JJ college-sports NNS colleges NNS collegial JJ collegians NNS collegiate JJ colles FW collided VBD collie NN collimated VBN collision NN collision-damage NN collisions NNS colloidal JJ collonaded VBN colloquial JJ colloquies NNS colloquium NN colloquy NN collosal JJ collude VB colluded VBD collusion NN colo-rectal JJ cologne NN colognes NNS colon NN colon-cancer NN colonel NN colonels NNS colonial JJ colonialism NN colonialist NN colonialists NNS colonials NNS colonic JJ colonies NNS colonists NNS colonization NN colonized VBD colonnade NN colonnaded JJ colony NN color NN color-TV NN color-coded VBN color-coding VBG color-field JJ color-glutted JJ color-printing JJ color-television NN coloration NN coloratura NN colorblind JJ colorblindness NN colored JJ coloreds NNS colorful JJ colorin NN coloring NN colorization NN colorless JJ colorlessness NN colors NNS colossal JJ colossus NN colour-prints NNS coloured JJ colt NN coltish JJ colts NNS columbines NNS column NN column-shaped JJ columnist NN columnists NNS columns NNS com NN coma NN comandancia FW comas NNS comb NN combat NN combat-inflicted JJ combat-ready JJ combat-tested JJ combat-trained JJ combatant JJ combatants NNS combating VBG combative JJ combatted VBN combed VBD combinable JJ combination NN combinations NNS combine VB combined VBN combines VBZ combing VBG combining VBG combo NN combos NNS combustibles NNS combustion NN come VB come-uppance NN comeback NN comedian NN comedians NNS comedic JJ comedie NN comedies NNS comedy NN comedy-oriented JJ comedy\ JJ comely JJ comer NN comers NNS comes VBZ comest VBP comestibles NNS comet NN comet's-tail NN comet-like JJ cometary JJ cometh VBZ comets NNS comeuppance NN comfort NN comfortable JJ comfortably RB comforted VBN comforting VBG comforts NNS comfy JJ comic JJ comical JJ comically RB comico-romantico JJ comics NNS comin VBG coming VBG coming-of-age JJ coming-out JJ comings NNS comity NN comma NN command NN command-and-control JJ commandant NN commanded VBD commandeered VBN commandeering VBG commander NN commander-in-chief NN commanders NNS commanding VBG commandment NN commandments NNS commando NN commando-trained NN commandos NNS commands NNS commas NNS commawnded VBD commemorate VB commemorated VBN commemorates VBZ commemorating VBG commemorative JJ commence VB commenced VBD commencement NN commencements NNS commences VBZ commencing VBG commend VB commendable JJ commendation NN commendations NNS commended VBN commending VBG commends VBZ commensurate JJ comment VB commentaries NNS commentary NN commentator NN commentators NNS commented VBD commenting VBG comments NNS commerce NN commercial JJ commercial-bank JJ commercial-banking NN commercial-credit NN commercial-free JJ commercial-goods NNS commercial-industrial JJ commercial-jetliner JJ commercial-litigation NN commercial-loan JJ commercial-products JJ commercial-property NN commercial-satellite-launching JJ commercial-switch JJ commercialism NN commercialization NN commercialize VB commercialized VBN commercializing VBG commercially RB commercials NNS commerical JJ commie JJ comminge VBG commingled VBN commiserate VB commiserating VBG commissar NN commissaries NNS commissary NN commission NN commission-driven JJ commission... : commissioned VBN commissioner NN commissioners NNS commissioning NN commissions NNS commit VB commitment NN commitments NNS commits VBZ committed VBN committee NN committee... : committeemen NNS committees NNS committeewoman NN committes NNS committing VBG committment NN commmercial JJ commmon JJ commmuter NN commodities NNS commodities-related JJ commoditize VB commodity NN commodity-chemical JJ commodity-market NN commodity-options NNS commodity-oriented JJ commodity-price JJ commodity-swap NN commodity-trading NN common JJ common-carrier NN common-law JJ common-law-marriage NN common-position JJ common-sense JJ common-sensical JJ common-share JJ common-stock JJ commonality NN commoner JJR commoners NNS commonest JJS commonly RB commonness NN commonplace JJ commonplaces NNS commons NN commonstock NN commonwealth NN commonwealths NNS commotion NN communal JJ commune NN communes NNS communicable JJ communicate VB communicated VBN communicating VBG communication NN communication-cluttered JJ communication-service JJ communicational JJ communications NNS communications-equipment NN communications-network JJ communications-technology NN communicative JJ communicator NN communicators NNS communion NN communique NN communiques NNS communism NN communist JJ communist-led JJ communistic JJ communists NNS communitarians NNS communities NNS community NN community-based JJ community-development NN community-oriented JJ community-service NN communize VB commutation NN commutator-like JJ commute VBP commuted VBN commuter NN commuter-airline NN commuters NNS commutes NNS commuting VBG compact JJ compact-car NN compact-disk NN compacted JJ compaction NN compactly RB compacts NNS companies NNS companies... : companion NN companionable JJ companions NNS companionship NN companionway NN company NN company-arranged JJ company-managed JJ company-operated JJ company-owned JJ company-paid JJ company-run JJ company-sponsored JJ company-wide JJ companywide JJ comparability NN comparable JJ comparable-store JJ comparably RB comparative JJ comparatively RB compare VB compared VBN compares VBZ comparing VBG comparison NN comparisons NNS compartment NN compartments NNS compass NN compassion NN compassionate JJ compassionately RB compatability NN compatibility NN compatible JJ compatiblizers NNS compatriot NN compatriots NNS compel VB compelled VBN compelling JJ compellingly RB compels VBZ compendium NN compensate VB compensated VBN compensates VBZ compensating VBG compensation NN compensations NNS compensatory JJ compete VB competed VBD competence NN competency NN competent JJ competently RB competes VBZ competing VBG competition NN competition-enhancers NNS competitions NNS competitive JJ competitive-analysis JJ competitively RB competitiveness NN competitor NN competitors NNS competitve JJ competitveness NN compilation NN compilations NNS compile VB compiled VBN compiler NN compiles VBZ compiling VBG complacency NN complacent JJ complacently RB complain VBP complainant NN complained VBD complaining VBG complains VBZ complaint NN complaint-resolution NN complaints NNS complaisance NN complaisant JJ compleated VBN complection NN complement NN complementary JJ complemented VBD complements VBZ complete JJ completed VBN completed-contract JJ completely RB completely-restored JJ completeness NN completes VBZ completing VBG completion NN completions NNS complex JJ complex-valued JJ complexes NNS complexion NN complexities NNS complexity NN compliance NN compliant JJ complicate VB complicated VBN complicates VBZ complicating VBG complication NN complications NNS complicity NN complied VBN complies VBZ compliment NN complimentary JJ complimented VBN complimenting VBG compliments NNS comply VB complying VBG component NN components NNS comport VB comported VBD comportment NN compose VB composed VBN composer NN composer-in-residence NN composer-pianist-conductor NN composers NNS composes VBZ composing VBG composite JJ composites NNS composition NN compositional JJ compositions NNS compost NN composting NN composure NN compote NN compound NN compound-engine JJ compounded VBN compounding VBG compounds NNS comprehend VB comprehended VBD comprehending VBG comprehension NN comprehensive JJ comprehensively RB comprehensiveness NN compress VB compressed VBN compresses NNS compressibility NN compressing VBG compression NN compressive JJ compressor NN compressor-manufacturing JJ compressors NNS comprise VBP comprise. NN comprised VBN comprises VBZ comprising VBG compromise NN compromised VBN compromiser NN compromises NNS compromising VBG comptroller NN compulsion NN compulsions NNS compulsive JJ compulsively RB compulsives NNS compulsivity NN compulsory JJ computation NN computational JJ computations NNS compute VB computed VBN computer NN computer-accessory JJ computer-activated JJ computer-age JJ computer-aided JJ computer-aided-design JJ computer-aided-software-engineering NN computer-and-semiconductor JJ computer-assembly NN computer-assisted JJ computer-based JJ computer-chip NN computer-controlled JJ computer-data-storage JJ computer-dependent JJ computer-distributed JJ computer-driven JJ computer-edited JJ computer-game NN computer-generated JJ computer-guided JJ computer-hardware NN computer-industry NN computer-integrated JJ computer-integrated-manufacturing JJ computer-literate JJ computer-magazine JJ computer-maintenance NN computer-maker NN computer-making JJ computer-market JJ computer-marketing NN computer-matching JJ computer-network NN computer-operated JJ computer-oriented JJ computer-power-supply NN computer-printer NN computer-products NNS computer-related JJ computer-reservation JJ computer-room JJ computer-science NN computer-security JJ computer-service JJ computer-services NNS computer-servicing JJ computer-software NN computer-stock NN computer-store NN computer-system-design JJ computer-systems NNS computer-trading NN computer-unit JJ computer\ JJ computerize VB computerized JJ computerizing VBG computerrelated JJ computers NNS computes VBZ computing VBG computing-services JJ comrade NN comrades NNS comradeship NN con JJ concave JJ conceal VB concealed VBN concealing VBG concealment NN conceals VBZ concede VBP conceded VBD concededly RB concedes VBZ conceding VBG conceit NN conceits NN conceivable JJ conceivably RB conceive VB conceived VBN conceived... : conceiver NN conceives VBZ conceiving VBG concentrate VB concentrated VBN concentrates VBZ concentrating VBG concentration NN concentration-camp NN concentrations NNS concentric JJ concept NN conception NN conceptions NNS concepts NNS conceptual JJ conceptuality NN conceptualization NN conceptualizing VBG conceptually RB concern NN concerned VBN concerned`` `` concerning VBG concerns NNS concert NN concerted JJ concerti NNS concertina NN concertmaster NN concerto NN concertos NNS concerts NNS concession NN concessionaire NN concessionaires NNS concessions NNS concierge NN conciliate VB conciliator NN conciliatory JJ concise JJ concisely RB conciseness NN concision NN conclave NN conclaves NNS conclude VB concluded VBD concludes VBZ concluding VBG conclusion NN conclusions NNS conclusive JJ conclusively RB concoct VB concocted VBN concoction NN concoctions NNS concomitant JJ concomitantly RB concord NN concordant JJ concrete JJ concrete-product-making NN concretely RB concretistic JJ concretistic-seeming JJ concur VBP concurred VBD concurrence NN concurrent JJ concurrently RB concurring VBG concurs VBZ concussion NN condemn VB condemnation NN condemnatory JJ condemned VBN condemning VBG condemns VBZ condensate NN condensation NN condense VB condensed JJ condenser NN condensers NNS condensing VBG condescending JJ condescension NN condicions NNS condiments NNS condition NN conditional JJ conditionally RB conditioned VBN conditioner NN conditioners NNS conditioning NN conditioning... : conditions NNS condo NN condolences NNS condom NN condominium NN condominiums NNS condoms NNS condone VB condoned VBN condos NNS conducive JJ conduct NN conducted VBN conducted... : conducting VBG conduction NN conductivity NN conductor NN conductors NNS conductorship NN conducts VBZ conduit NN conduits NNS cone NN cone-sphere JJ coneheads NNS cones NNS confabulated VBN confabulation NN confabulations NNS confectionary JJ confectioner NN confectionery NN confederacy NN confederates NNS confederation NN confederations NNS confer VB conferees NNS conference NN conferences NNS conferred VBN conferring VBG confers VBZ confess VB confessed VBD confesses VBZ confessing VBG confession NN confessional NN confessionals NNS confessions NNS confessor NN confict NN confidant NN confidante NN confidants NNS confide VB confided VBD confidence NN confidence-crusher NN confidence-shattering JJ confidences NNS confident JJ confidential JJ confidentiality NN confidentially RB confidently RB confides VBZ confiding VBG configuration NN configuration-data JJ configurations NNS confine VB confined VBN confinement NN confinements NNS confines NNS confining VBG confirm VB confirmation NN confirmations NNS confirmed VBD confirming VBG confirms VBZ confiscate VB confiscated VBN confiscating VBG confiscation NN confiscatory JJ conflagration NN conflation NN conflict NN conflict-of-interest NN conflict-ridden JJ conflicted VBD conflicting VBG conflicts NNS conflicts. NN confluence NN confluent JJ conform VB conformance NN conformation NN conformational JJ conformations NNS conformed VBN conforming VBG conformist JJ conformists NNS conformitarianism NN conformity NN conforms VBZ confound VB confounded VBD confounding VBG confreres FW confront VB confrontation NN confrontational JJ confrontations NNS confronted VBN confronting VBG confronts VBZ confuse VB confused VBN confuses VBZ confusin NN confusing JJ confusion NN confusions NNS congeal VB congealed VBD congenial JJ congeniality NN congenital JJ congested JJ congestion NN congestive JJ conglomerate NN conglomerates NNS congrats NN congratulate VBP congratulated VBN congratulating NN congratulation NN congratulations NNS congratulatory JJ congratz NN congregate VB congregated VBD congregation NN congregational JJ congregations NNS congress NN congressional JJ congressional-item JJ congressionally RB congressman NN congressmen NNS congressonal JJ congresssional JJ congruence NN congruent JJ conic JJ coning NN conjecture NN conjectured VBN conjectures NNS conjoined VBN conjugal JJ conjugate NN conjugated VBN conjugates NNS conjugating VBG conjugation NN conjunction NN conjunctions NNS conjur NN conjure VB conjured VBN conjures VBZ conjuring VBG connect VB connected VBN connecting VBG connection NN connections NNS connective JJ connector NN connectors NNS connects VBZ conned VBN connexion NN conning VBG connivance NN conniver NN connoisseur NN connoisseurs NNS connotation NN connotations NNS connote VB connotes VBZ conpired VBN conquer VB conquered VBN conquering VBG conqueror NN conquerors NNS conquest NN conquests NNS conquete FW cons NNS consanguineous JJ consanguineously RB consanguinity NN conscience NN consciences NNS conscientious JJ conscionable JJ conscious JJ consciously RB consciousness NN consciousness-raising NN conscript NN conscripted VBN conscription NN conscripts NNS consderations NNS consecration NN consecutive JJ consensual JJ consensus NN consensus-seeker NN consent NN consent-decree JJ consented VBD consenting VBG consents NNS consentual JJ consequence NN consequences NNS consequent JJ consequential JJ consequently RB conservancy NN conservation NN conservationist NN conservationists NNS conservatism NN conservative JJ conservative-communist JJ conservative-led JJ conservative-liberal JJ conservatively RB conservatively-cravated JJ conservatives NNS conservator NN conservatories NNS conservators NNS conservatorship NN conservatory NN conserve VB conserved VBN conserves VBZ conserving VBG consider VB considerable JJ considerably RB considerate JJ considerately RB consideration NN considerations NNS considered VBN considerin VBG considering VBG considers VBZ consign VB consigned VBD consigns VBZ consisently RB consist VB consisted VBD consistence NN consistency NN consistent JJ consistently RB consisting VBG consists VBZ consolation NN console VB consoled VBD consoles NNS consolidate VB consolidated JJ consolidated-pretax JJ consolidates VBZ consolidating VBG consolidation NN consolidations NNS consoling VBG consomme NN consonance NN consonant JJ consonantal JJ consonants NNS consorted VBD consortia NNS consorting VBG consortium NN consortium-ownership NN consortiums NNS conspicuous JJ conspicuously RB conspiracies NNS conspiracy NN conspirator NN conspiratorial JJ conspirators NNS conspire VBP conspired VBD conspires VBZ conspiring VBG constables NNS constancy NN constant JJ constant-temperature NN constantly RB constants NNS constatation NN constellation NN constellations NNS consternation NN constipation NN constituencies NNS constituency NN constituent NN constituents NNS constitute VBP constitute'speech VB constituted VBD constitutes VBZ constituting VBG constitution NN constitutional JJ constitutional-law JJ constitutionality NN constitutionally RB constitutions NNS constrain VB constrained VBN constraining VBG constrains VBZ constraint NN constraints NNS constricted JJ constricting VBG constriction NN constrictions NNS constrictor NN constrictors NNS construct VB constructed VBN constructing VBG construction NN construction-industry NN construction-management JJ construction-oriented JJ construction-related JJ constructional JJ constructions NNS constructive JJ constructively RB constructon NN constructs VBZ construe VB construed VBN construing VBG consul NN consular JJ consulate NN consulates NNS consult VB consultancy NN consultant NN consultants NNS consultation NN consultations NNS consultative JJ consulted VBN consulting NN consulting-firm NN consumables NNS consume VBP consumed VBN consumer NN consumer-advocacy JJ consumer-analgesic JJ consumer-credit JJ consumer-driven JJ consumer-electronics NNS consumer-finance JJ consumer-goods NNS consumer-led JJ consumer-minded JJ consumer-oriented JJ consumer-paint JJ consumer-price JJ consumer-price-index JJ consumer-product JJ consumer-products NNS consumer-protection NN consumer-telephone JJ consumer-warning NN consumerism NN consumers NNS consumes VBZ consuming VBG consummate JJ consummated VBN consummately RB consummation NN consumption NN consumption-tax NN consumptive JJ cont VBN contact NN contact-lens NN contacted VBN contacting VBG contacts NNS contadini NNS contagion NN contagious JJ contain VB containable JJ contained VBD container NN container-ship NN containerboard NN containerized-cargo NN containers NNS containing VBG containment NN contains VBZ contaminants NNS contaminate VB contaminated VBN contaminating VBG contamination NN contemplate VB contemplated VBN contemplates VBZ contemplating VBG contemplation NN contemplative JJ contemporaneous JJ contemporaries NNS contemporary JJ contemporize VB contempt NN contempt-of-court NN contemptible JJ contemptuous JJ contemptuously RB contend VBP contended VBD contender NN contendere FW contenders NNS contending VBG contends VBZ content NN contented VBN contentedly RB contenting VBG contention NN contentions NNS contentious JJ contentment NN contents NNS contest NN contestant NN contestants NNS contested VBN contesting VBG contests NNS context NN contexts NNS contiguous JJ continence NN continent NN continental JJ continentally RB continents NNS contingencies NNS contingency NN contingency-fee JJ contingent JJ contingent-fee JJ contingents NNS continously RB continual JJ continually RB continuance NN continuation NN continue VB continued VBD continues VBZ continuing VBG continuing-education JJ continuingly RB continuities NNS continuity NN continuo NN continuous JJ continuously RB continuum NN contorted JJ contortion NN contortionists NNS contour NN contour-obliterating JJ contouring VBG contours NNS contraband JJ contrabass NN contraception NN contraceptive JJ contraceptives NNS contract NN contract-drilling NN contract-food NN contract-negotiation NN contract-services NNS contract-steering JJ contracted VBD contracted-for JJ contracting NN contraction NN contraction-extension JJ contractions NNS contractor NN contractors NNS contracts NNS contractual JJ contractually RB contradict VB contradicted VBD contradicting VBG contradiction NN contradictions NNS contradictorily RB contradictory JJ contradicts VBZ contradistinction NN contralto NN contraption NN contraptions NNS contrarian JJ contrarians NNS contrarieties NNS contrary JJ contrary-to-reality JJ contrast NN contrasted VBN contrasting VBG contrasts NNS contravened VBD contraventions NNS contretemps NN contribs NNS contribued VBD contribute VB contributed VBD contributes VBZ contributing VBG contribution NN contributions NNS contributor NN contributors NNS contributory JJ contrite JJ contrition NN contrivance NN contrivances NNS contrive VB contrived VBN contriving VBG control NN control-room NN controllable JJ controlled VBN controlled-circulation JJ controller NN controllers NNS controlling VBG controls NNS controversial JJ controversialists NNS controversies NNS controversy NN controversy-prone JJ contusions NNS conundrum NN convalescence NN convalescing VBG convection NN convenants NNS convene VB convened VBD convenes VBZ convenience NN convenience-food NN convenience-store NN conveniences NNS convenient JJ convenient-type JJ conveniently RB convening VBG convent NN convention NN convention-goers NNS conventional JJ conventional-arms NNS conventional-type JJ conventionality NN conventionalized VBN conventionally RB conventioneers NNS conventioners NNS conventions NNS converage NN converge VB converged VBD converging VBG conversant NN conversation NN conversational JJ conversations NNS converse VB conversely RB conversing VBG conversion NN conversion-by-renovation JJ conversions NNS convert VB converted VBN converter NN converters NNS convertibility NN convertible JJ convertible-bond JJ convertibles NNS converting VBG converts NNS convex JJ convexity NN convey VB conveyance NN conveyed VBD conveying VBG conveyor NN conveys VBZ convict NN convicted VBN convicting VBG conviction NN convictions NNS convicts NNS convince VB convinced VBN convinces VBZ convincing JJ convincingly RB convivial JJ convocation NN convoluted JJ convolutions NNS convoy NN convoys NNS convulsed VBD convulsion NN convulsions NNS convulsive JJ convulsively RB cooing VBG cook NN cookbook NN cookbooks NNS cooked VBN cooked-over JJ cooker NN cookers NNS cookfire NN cookie NN cookie-and-cracker JJ cookie-cutter NN cookies NNS cooking NN cookoo UH cooks NNS cookware NN cool JJ cool-headed JJ coolant NN coolants NNS cooled VBN cooler JJR coolers NNS coolest JJS coolheaded JJ cooling NN cooling-heating JJ cooling-off JJ coolly RB coolness NN coolnesses NNS cools VBZ cooly RB coop NN cooped JJ cooperate VB cooperated VBN cooperates VBZ cooperating VBG cooperation NN cooperative JJ cooperative-care JJ cooperatively RB cooperatives NNS coops NNS coordinate VB coordinated VBN coordinates NNS coordinating VBG coordination NN coordinator NN coordinators NNS coosie NN cop NN cop-killer JJ cop-out NN cope VB copes VBZ copied VBN copier NN copiers NNS copies NNS coping VBG copings NNS copious JJ copiously RB copolymers NNS copper NN copper-based JJ copper-producing JJ copper-rich JJ coppery JJ copra NN coproducer NN coproductions NNS cops NNS cops'n NNS copy NN copy-cat JJ copybooks NNS copycat NN copycats NNS copying NN copyright NN copyright-infringement NN copyrighted VBN copyrights NNS copywriter NN coquette NN coral JJ coral-colored JJ cord NN corded VBN cordial JJ cordless JJ cordon FW cords NNS corduroy NN corduroys NNS core NN core-jacket JJ cores NNS coriander NN corinthian JJ cork NN corked JJ corkers NNS corks NNS corkscrew NN corkscrews NNS corn NN corn-based JJ corn-belt NN corn-buying JJ corn-farmers NNS corn-producing JJ corn-seed NN cornball NN cornbread NN corne NN cornea NN corneal JJ corner NN corner-posts NNS cornered VBN cornering VBG corners NNS cornerstone NN cornerstones NNS cornfield NN cornflake-size JJ cornices NNS corniest JJS cornmeal NN cornmeal-price NN corns NNS cornstarch NN cornucopia NN corny JJ corollaries NNS corollary NN corona NN coronaries NNS coronary JJ coroner NN corpocrat NN corporal NN corporate JJ corporate-bond JJ corporate-coverage JJ corporate-development NN corporate-earnings NNS corporate-entertainment JJ corporate-finance JJ corporate-identity JJ corporate-image JJ corporate-law NN corporate-lending JJ corporate-owned JJ corporate-pension JJ corporate-raider JJ corporate-related JJ corporate-securities JJ corporate-settlement NN corporate-tax JJ corporate-wide JJ corporates NNS corporatewide JJ corporation NN corporation-socialist JJ corporations NNS corporatism NN corporatist NN corporativism NN corporativists NNS corporeal JJ corporeality NN corporis FW corps NN corpse NN corpses NNS corpsman NN corpulence NN corpus NN corpuscular JJ corpuscular-radiation NN corral NN corralled VBN corralling VBG corrals NNS correct JJ corrected VBN correcting VBG correction NN correctional JJ corrections NNS corrective JJ correctly RB correctness NN corrects VBZ correlate VB correlated JJ correlating VBG correlation NN correlations NNS correspond VB corresponded VBD correspondence NN correspondent NN correspondent\/news NNS correspondents NNS corresponding JJ correspondingly RB corresponds VBZ corridor NN corridors NNS corroborate VB corroborated VBD corroborees NNS corrode VBP corroding VBG corrosion NN corrosion-protection JJ corrosion-resistant JJ corrosive JJ corrugated JJ corrugations NNS corrupt JJ corrupted VBN corrupter NN corruptible JJ corrupting VBG corruption NN corruptions NNS corrupts VBZ corsage NN corset NN cortege NN corteggiamento FW cortex NN cortical JJ cortically RB cortico-fugal JJ cortico-hypothalamic JJ corticosteroids NNS corticotropin NN cortisone NN corvettes NNS cosec NN cosily RB cosmetic JJ cosmetics NNS cosmetics-industry NN cosmetology NN cosmic JJ cosmical JJ cosmological JJ cosmologies NNS cosmologists NNS cosmology NN cosmopolitan JJ cosmopolitanism NN cosmopolitans NNS cosmos NN cosponsored VBN cosponsors VBZ cost NN cost-accounting JJ cost-benefit JJ cost-billing JJ cost-conscious JJ cost-consciousness NN cost-containment NN cost-control JJ cost-cutters NNS cost-cutting JJ cost-data JJ cost-effective JJ cost-effectiveness NN cost-efficiency NN cost-efficient JJ cost-finding JJ cost-of-living JJ cost-plus JJ cost-prohibitive JJ cost-push JJ cost-raising JJ cost-recovery JJ cost-reduction JJ cost-saving JJ cost-savings JJ cost-sharing NN cost-shifting NN cost-to-benefit JJ cost-transfer NN costcutting NN coste VB costing VBG costive JJ costlier JJR costliest JJS costly JJ costs NNS costume NN costume-jewelry NN costumed VBN costumes NNS costuming NN cosy JJ cot NN coterie NN cotillion NN cots NNS cottage NN cottages NNS cotter NN cotton NN cotton-ginning JJ cotton-growing JJ cottonmouth NN cottonseed NN couch NN couch-potato NN couched VBN couches NNS couching VBG coudn MD cough NN coughed VBD coughing VBG coughs NNS could MD could'nt NN coulda NN couldn't MD couldnt MD council NN councilman NN councilor NN councilors NNS councils NNS councilwoman NN counsel NN counseled VBN counseling NN counselor NN counselors NNS counsels VBZ count NN countdown NN counted VBN countenance NN countenances NNS counter NN counter-apparatus NN counter-argument NN counter-arguments NNS counter-attack NN counter-attacked VBD counter-balanced JJ counter-claims NNS counter-culture JJ counter-cyclical JJ counter-demand NN counter-drill VB counter-efforts NNS counter-escalation NN counter-intelligence JJ counter-measures NNS counter-moves NNS counter-offensive NN counter-productive JJ counter-revolutionary JJ counter-successes NNS counter-tenor NN counter-trade JJ counter-trend JJ counteract VB counteracted VBN counteracting VBG counterarguments NNS counterattack NN counterattacked VBD counterbalance VB counterbalanced VBN counterbalancing VBG counterbid NN counterbidder NN counterbidders NNS counterbids NNS counterchallenge VB countercharged VBD countercharges NNS counterclaim NN counterclaims NNS countercultural JJ counterculture JJ countered VBD counterespionage NN counterfeit JJ counterflow NN counterforce NN counterguarantee NN countering VBG counterman NN countermeasures NNS countermove NN counteroffensive NN counteroffer NN counterpart NN counterparts NNS counterpoint NN counterpointing VBG counterproductive JJ counterprogram VB counterprogramming NN counterproposal NN counterproposals NNS counterrevolutionaries NNS counterrevolutionary JJ counters NNS countersued VBD countersuing VBG countersuit NN countertenor NN counterterror JJ counterterrorism NN countertop NN countervailing JJ counterweight NN countess NN countian NN counties NNS countin NN counting VBG countless JJ countrey NN countries NNS countriman NN country NN country-and-Western JJ country-club NN country-development NN country-life JJ country-squirehood NN country... : countryman NN countrymen NNS countryside NN countrywide JJ counts NNS county NN county-wide JJ coup NN coup-makers NNS coup-planning NN coup-proof JJ coupe NN coupes NNS couple NN coupled VBN coupler NN couplers NNS couples NNS couplets NNS coupling VBG coupon NN coupon-distribution JJ coupon-equivalent JJ couponing NN coupons NNS coups NNS courage NN courageous JJ courageously RB courant FW coureurs FW courier NN couriers NNS course NN course-correction NN coursed VBN courses NNS coursing VBG court NN court-appointed JJ court-approved JJ court-length JJ court-ordered JJ court-reporting JJ court-supervised JJ court... : courted VBN courteous JJ courteously RB courtesan NN courtesies NNS courtesy NN courthouse NN courthouses NNS courtier NN courtiers NNS courting VBG courtliness NN courtly JJ courtroom NN courtrooms NNS courts NNS courtship NN courtyard NN courtyards NNS couscous NN cousin NN cousin-wife NN cousins NNS couture FW cove NN covenant NN covenants NNS cover VB cover-up NN coverage NN coverages NNS coverall NN covered VBN covering VBG coverings NNS coverlet NN covers VBZ covert JJ covert-operations NNS covertly RB coverts NNS coverup NN coves NNS covet VB coveted VBN coveting VBG covetous JJ covetousness NN covets VBZ cow NN cow-blood NN cow-man NN cow-people NN coward NN cowardice NN cowardly JJ cowards NNS cowbirds NNS cowboy NN cowboys NNS cowed VBN cower VBP cowering VBG cowhand NN cowhands NNS cowhide NN cowling NN cowman NN coworkers NNS cowpony NN cowpox NN cowpuncher NN cows NNS coxcombs NNS coy JJ coyly RB coyness NN coyote NN coyotes NNS cozier JJR coziness NN cozy JJ cps NNS cpu NN crab NN crabapple NN crabbed JJ crabby JJ crabmeat NN crabs NNS crack NN crack-addicted JJ crack-cocaine NN crack-induced JJ crack-ridden JJ crack-user NN crack-using JJ crackdown NN crackdowns NNS cracked VBD cracker NN cracker-box JJ crackers NNS cracking VBG crackle NN crackled VBD crackles VBZ crackling NN crackpot NN crackpots NNS cracks NNS cradle NN cradle-to-grave JJ cradled VBN cradles NNS craft NN craft-industrial JJ crafted VBN crafter NN crafting VBG crafts NNS craftsman NN craftsman-in-residence JJ craftsmanship NN craftsmen NNS crafty JJ craggy JJ crags NNS cram JJ crammed VBN cramming VBG cramp NN cramped JJ cramps NNS crams VBZ cranberries NNS cranberry-and-gray JJ crane NN crane-safety NN cranelike JJ cranes NNS craning VBG crank VB crankcase NN cranked VBD cranking VBG cranks NNS crankshaft NN cranky JJ crannies NNS cranny NN crap NN crapshoot NN crash NN crash-scarred JJ crash-wary JJ crashed VBD crasher NN crashes NNS crashing VBG crashlet NN crass JJ crassest JJS crassness NN crate NN crater NN cratered VBN cratering VBG craters NNS crates NNS crave VBP craved VBN craven JJ craves VBZ craving NN cravings NNS crawl VB crawled VBD crawling VBG crawls NNS crawlspace NN crayons NNS craze NN crazed JJ crazee JJ crazes NNS crazies NNS crazily RB craziness NN crazing VBG crazy JJ crazy-wonderful JJ crckdown. NN creak NN creaked VBD creaking VBG creaks NNS cream NN cream-of-the-crop NN creamed VBN creamer NN creamier JJR creams NNS creamy JJ crease NN creased VBN creases NNS creasingly RB create VB created VBN creates VBZ creating VBG creation NN creationism NN creationist JJ creations NNS creative JJ creatively RB creativeness NN creativity NN creativity-oriented JJ creator NN creators NNS creature NN creatures NNS creche NN credence NN credential NN credentialized JJ credentials NNS credibility NN credible JJ credibly RB credit NN credit-backing NN credit-card NN credit-data NN|NNS credit-discrimination NN credit-easing JJ credit-enhancement NN credit-financed JJ credit-information NN credit-line NN credit-market JJ credit-policy NN credit-quality JJ credit-rating JJ credit-ratings NNS credit-reporting JJ credit-services NNS credit-softening NN credit-tightening NN credit-worthiness NN credit-worthy JJ credit... : creditable JJ creditably RB creditcard NN credited VBN crediting NN creditor NN creditors NNS credits NNS creditworthiness NN creditworthy NN credo NN credulity NN credulous JJ credulousness NN creed NN creedal JJ creeds NNS creek NN creek-filled JJ creeks NNS creep VB creeper NN creepers NNS creepiest JJS creeping VBG creeps VBZ creepy JJ cremate VB cremated VBN cremation NN crematoriums NNS creole NN crepe JJ crept VBD crescendo NN crescent NN crest NN crested JJ crestfallen JJ cresting VBG crests NNS crevasse NN crevasses NNS crevice NN crevices NNS crew NN crew-pairing JJ crew-rest NN crewcut NN crewel NN crewmen NNS crews NNS crib NN cribbing VBG cribs NNS cricket NN crickets NNS cried VBD cries NNS crime NN crime-busting JJ crime-fighting JJ crime-infested JJ crime-ridden JJ crime\/comedy NN crimes NNS criminal JJ criminal-abortion JJ criminal-defense JJ criminal-justice NN criminal-law NN criminality NN criminalization NN criminalize VB criminalized JJ criminalizing VBG criminally RB criminals NNS criminologist NN criminology NN crimp VB crimped JJ crimping VBG crimps VBZ crimson JJ crimsoning VBG cringe VBP cringed VBD cringing VBG crinkles NNS cripple VB cripple-maker NN crippled VBN cripples NNS crippling JJ crises NNS crisis NN crisis-management JJ crisis-oriented JJ crisis-response JJ crisis-to-crisis JJ crisp JJ crisper NN crisply RB crispness NN crispy JJ criss-cross VBP criss-crossed JJ criss-crossing NN crisscross VBP crisscrossed VBN crisscrossing VBG cristata FW critcism NN criteria NNS criterion NN critic NN critical JJ critical-intellectual JJ criticality NN critically RB criticism NN criticisms NNS criticize VB criticized VBN criticizes VBZ criticizing VBG critics NNS critique NN critter NN critters NNS croak NN croaked VBD croaker NN croakin VBG croaking NN croaks NNS crochet VB crocidolite NN crocked JJ crocketed JJ crocodile NN crofters NNS croissants NNS crone NN cronies NNS crony NN cronyism NN crook NN crooked JJ crookery NN crooks NNS croon VB crooned VBD crooner NN crooning VBG croons VBZ crop NN cropped VBD cropping VBG crops NNS cross VB cross-bay JJ cross-blending JJ cross-border JJ cross-buying NN cross-connect JJ cross-cultural JJ cross-currency JJ cross-currents NNS cross-dressing JJ cross-examination NN cross-eyed JJ cross-fertilization NN cross-fertilized VBN cross-functional JJ cross-investing JJ cross-investment JJ cross-legged JJ cross-licensing NN cross-margining JJ cross-market JJ cross-marketing JJ cross-ownership NN cross-party JJ cross-pollinated VBN cross-pollination NN cross-promotion NN cross-purchase JJ cross-purposes NNS cross-react VBP cross-referencing NN cross-section NN cross-sectional JJ cross-selling NN cross-shareholdings NNS cross-state JJ cross-striations NNS cross-subsidies NNS cross-top JJ cross-trading NN cross-writing NN crossbars NNS crossborder JJ crosscurrents NNS crossed VBD crosses VBZ crossfire NN crossing VBG crossings NNS crossover NN crossroading VBG crossroads NNS crosswalk NN crossways RB crosswise RB crotch NN crotchety JJ crouch NN crouched VBD crouches VBZ crouchin JJ crouching VBG croupier NN crow NN crowbait NN crowd NN crowded VBN crowding VBG crowds NNS crowed VBD crowing VBG crown NN crowned VBN crowning JJ crowns NNS crows NNS crucial JJ crucially RB crucible NN crucified VBD crucifix NN crucifixion NN crucifying VBG crude NN crude-oil NN crude-steel NN crudely RB crudes NNS crudest JJS crudities NNS crudity NN cruel JJ cruelest JJS cruelly RB cruelty NN cruise NN cruise-ship NN cruiser NN cruisers NNS cruises NNS cruising VBG crumble VB crumbled VBD crumbles VBZ crumbling VBG crumbly JJ crumminess NN crummy JJ crumpled JJ crunch NN crunched VBD crunches NNS crunchier JJR crunching VBG crunchy JJ crupper NN crus NN crusade NN crusaded VBN crusader NN crusaders NNS crusades NNS crusading VBG crush NN crushed VBN crusher NN crushers NNS crushes VBZ crushing VBG crust NN crusts NNS crusty JJ crutch NN crutches NNS crux NN cruzado NN cruzados NNS cry NN crying VBG cryostat NN crypt NN cryptic JJ cryptographers NNS cryptographic JJ crysanthemum NN crystal NN crystal-lattice JJ crystalline JJ crystallite NN crystallites NNS crystallization NN crystallize VB crystallized VBD crystallizing VBG crystallographers NNS crystallographic JJ crystallography NN crystals NNS cu NN cu. NN cub NN cubbyhole NN cubbyholes NNS cube NN cubed VBN cubes NNS cubic JJ cubism NN cubist JJ cubists NNS cubs NNS cuckoo NN cuckoo-bumblebee NN cuckoos NNS cucumber NN cud NN cuddled VBD cuddly JJ cudgels NNS cue NN cue-phrase NN cued VBD cues NNS cuff NN cuff-like JJ cufflinks NNS cuffs NNS cuirassiers NNS cuisine NN cul NN culinary JJ cull VB culled VBN culling VBG culminate VB culminated VBD culminates VBZ culminating VBG culmination NN culpa FW culpable JJ culpas FW culprit NN culprits NNS cult NN culte FW cultist NN cultivate VB cultivated VBN cultivates VBZ cultivating VBG cultivation NN cults NNS cultural JJ cultural-reform NN culturally RB culture NN culture-Protestantism NN cultured JJ cultures NNS cumara NN cumbersome JJ cumin NN cumulate VB cumulative JJ cumulatively RB cumulus NN cunning JJ cunningly RB cup NN cupboard NN cupboards NNS cupful JJ cupid NN cupids NNS cupped VBD cups NNS cur NN curative JJ curator NN curators NNS curb VB curbed VBN curbing VBG curbs NNS curbside NN curd NN curdling VBG curds NNS cure NN cure-all NN cured VBN cures NNS curettage NN curfew NN curiae FW curing VBG curio NN curiosities NNS curiosity NN curious JJ curiously RB curl VB curled VBD curling NN curls NNS curly JJ currant NN currants NNS currencies NNS currencny NN currency NN currency-exchange JJ currency-market JJ currency-options NNS current JJ current-account JJ current-carrying JJ current-coupon JJ current-delivery NN current-generation JJ current-year JJ currently RB currents NNS curricula NNS curricular JJ curriculum NN curriculums NNS curry VB curse NN cursed VBD curses NNS cursing VBG cursory JJ curt JJ curtail VB curtailed VBN curtailing VBG curtailment NN curtails VBZ curtain NN curtain-raiser NN curtained JJ curtains NNS curtly RB curtness NN curtseyed VBD curvaceously RB curvature NN curve NN curved JJ curves NNS curving VBG curvy JJ cus IN cushion NN cushioned VBN cushioning NN cushions NNS cusp NN custodial JJ custodian NN custody NN custom NN custom-built VBN custom-chip JJ custom-design JJ custom-designed JJ custom-die NN custom-fit VB custom-made JJ custom-make VB custom-tailored JJ customarily RB customary JJ customer NN customer-account NN customer-cost NN customer-driven JJ customer-inventory JJ customer-oriented JJ customer-service JJ customers NNS customization NN customized VBN customs NNS customs-clearance NN customs-cleared JJ cut VB cut-and-dried JJ cut-and-paste VB cut-down JJ cut-glass JJ cut-off JJ cut-price JJ cut-rate JJ cut-throat JJ cut-to-a-familiar-pattern JJ cutback NN cutbacks NNS cute JJ cuteness NN cuter JJR cutest JJS cutglass JJ cutlass NN cutlery NN cutlets NNS cutoff NN cutouts NNS cuts NNS cutsie JJ cutter NN cutters NNS cutthroat JJ cutting VBG cutting-and-pasting NN cutting-edge JJ cutting-tools NNS cuttings NNS cuvees NNS cuz IN cya VB cyanide NN cyanide-laced JJ cycads NNS cycle NN cycled VBN cycles NNS cyclical JJ cyclicality NN cyclicals NNS cycling NN cyclist NN cyclists NNS cyclohexanol NN cyclorama NN cyclosporine NN cylinder NN cylinders NNS cylindrical JJ cynic NN cynical JJ cynically RB cynicism NN cynics NNS cypress NN cypress-like JJ cyst NN cystic JJ cysts NNS cytokine NN|JJ cytolysis NN cytoplasm NN czar NN czars NNS d FW d'Administration NNP d'Alene NNP d'Allest NNP d'Amiante NNP d'Avignon NNP d'Eiffel NNP d'Electricite NNP d'Exploitation NNP d'Harnoncourt NNP d'Industrie NNP d'Ulisse FW d'Yquem NNP d'affaires NN d'art FW d'entretenir FW d'etat FW d'etre FW d'hotel FW d'identite FW d'un FW d'you VBP d-Limited NNP d-NAV NNP d-Percent LS|NN d-Percentage NN d-c NN dBASE NNP dBase NNP da NNP dabbed VBD dabbing VBG dabble VB dabbled VBD dabbler NN dabbles VBZ dabbling VBG dabhumaksanigalu'ahai VB dabs VBZ dachshounds NNS dack-rihs NNS dactyls NNS dad NN dada NN daddy NN daffodils NNS daft JJ dagers NNS daggerman NN daguerreotypes NNS dailies NNS daily JJ daily-wear JJ daintily RB dainty JJ dainty-legged JJ dairies NNS dairy NN dairy-oh NN dairyland NN dairymen NNS dais NN daises NNS daisies NNS daisy NN dales NNS dalliances NNS dally VB dam NN damage NN damaged VBN damages NNS damaging JJ dame NN damed VBD daminozide NN damm UH dammed VBD dammed-up VBN dammit UH damn JJ damn-the-torpedoes JJ damnation NN damned JJ damning VBG damnit UH damp VB damped VBN dampen VB dampened VBD dampening JJ damper NN dampers NNS damping VBG dampness NN dams NNS damsel NN dance NN dance-committee JJ dance-theatre JJ danced VBD dancelike JJ dancer NN dancers NNS dances NNS dancing NN dandelion NN dandily RB dandy JJ dang JJ danged VBN danger NN dangerous JJ dangerous... : dangerously RB dangers NNS dangle VB dangled VBD dangles VBZ dangling VBG dank JJ dans FW danseur FW dapper JJ dappled JJ darbuka NN dare VB dared VBD dares VBZ darin JJ daring JJ dark JJ dark-blue JJ dark-brown JJ dark-gray JJ dark-green JJ dark-haired JJ dark-skinned JJ dark-squared JJ darken VBP darkened VBD darkening VBG darker JJR darkest JJS darkhaired JJ darkling JJ darkly RB darkness NN darkroom NN darlin NN darling NN darlings NNS darn JJ darned RB dart NN dart-throwing NN dartboard NN darted VBD darting VBG darts NN das NNS dash NN dashboard NN dashboards NNS dashed VBN dashes NNS dashing VBG dastardly JJ dat DT data NNS data-base JJ data-capture JJ data-collection NN data-communications NNS data-gathering JJ data-handling NN data-processing NN data-recording NN data-service JJ data-storage JJ data-storing JJ data-transmission JJ data\ JJ database NN databases NNS datadex NN date NN dated VBN datelined VBN dates NNS dating VBG datum NN daubed VBD daughter NN daughter-in-law NN daughters NNS daunt VB daunted VBD daunting JJ dauntless JJ dauphin NN davenport NN davits NNS dawdled VBD dawdling VBG dawn NN dawned VBD dawning VBG dawns VBZ day NN day-after-day JJ day-by-day JJ day-care NN day-even NN day-long JJ day-old JJ day-to-day JJ day-today JJ day-watch NN daybed NN daybreak NN daydream NN daydreamed VBD daydreaming NN daylight NN daylights NNS daylong JJ days NNS days. NNS daytime JJ daze NN dazed JJ dazzle VB dazzled VBN dazzler NN dazzles VBZ dazzling JJ dazzlingly RB dd VBD de FW de-Americanization NN de-emphasis NN de-emphasize VB de-emphasized VBN de-facto JJ de-inking JJ de-iodinase NN de-iodinate VB de-iodinated VBN de-iodinating VBG de-iodination NN de-leverage VB de-linkage NN de-listed VBN de-stocking NN de-worse-ification NN deCordova NNP deWindt NNP dea NN deacon NN deactivated VBN deactivates VBZ deactivation NN dead JJ dead-end JJ dead-eyed JJ dead-weight JJ deadbeats NNS deadened VBN deader JJR deadheads NNS deadliest JJS deadline NN deadlines NNS deadliness NN deadlock NN deadlocked VBN deadly JJ deadness NN deadpan JJ deadweight NN deadwood NN deaf JJ deafened VBN deafening VBG deafness NN deal NN deal-blocker NN deal-making NN dealer NN dealer-community JJ dealer-led JJ dealer-manager NN dealer-managers NNS dealer-related JJ dealer-to-dealer JJ dealers NNS dealership NN dealerships NNS dealing VBG dealings NNS dealmaker NN dealmakers NNS deals NNS deals... : dealt VBN dean NN deans NNS dear JJ dearer JJR dearest JJS dearly RB dearth NN death NN death-backed JJ death-benefit JJ death-like JJ death-locked JJ death-penalty NN death-row NN death-sentence NN death-trap NN death-wish NN deathbed NN deathless JJ deathly JJ deaths NNS deathward RB deathwatch NN debacle NN debacles NNS debasement NN debasing VBG debatable JJ debate NN debate... : debated VBN debates NNS debating VBG debauchery NN debenture NN debentures NNS debilitated VBN debilitating JJ debility NN debit NN debonair JJ debris NN debs NNS debt NN debt-burdened JJ debt-ceiling JJ debt-coverage JJ debt-equity JJ debt-financed JJ debt-financing JJ debt-for-environment NN debt-free JJ debt-futures NNS debt-happy JJ debt-heavy JJ debt-induced JJ debt-laden JJ debt-limit NN debt-payment JJ debt-portfolio NN debt-rating JJ debt-reduction NN debt-relief NN debt-repayment NN debt-restructuring JJ debt-ridden JJ debt-riddled JJ debt-service JJ debt-servicing NN debt-to-assets JJ debt-to-equity JJ debt... : debt\/equity NN debtholder NN debtholders NNS debtor NN debtor-in-possession NN debtor-nation NN debtors NNS debts NNS debugged VBN debunk VB debunked VBN debunking NN debut NN debutante NN debuted VBD debuting VBG debuts VBZ decade NN decade-long JJ decade-old JJ decadelong JJ decadence NN decadent JJ decades NNS decades-old JJ decaffeinated VBN decal NN decametrina NN decamped VBD decanted VBN decanting VBG decapitalize VBP decapitalized JJ decay NN decayed JJ decaying VBG decays VBZ decease NN deceased JJ decedent NN deceit NN deceitful JJ deceive VB deceived VBN deceives VBZ deceiving VBG decelerate VB decelerated VBN decelerating VBG deceleration NN decencies NNS decency NN decent JJ decently RB decentralization NN decentralize VB decentralized JJ decentralizing VBG deception NN deceptive JJ deceptively RB decertified VBN decertify VB decide VB decided VBD decidedly RB decidely RB decides VBZ deciding VBG decimal NN decimals NNS decimated VBN decimating VBG decimeter-wave-length NN decions NNS decipher VB deciphered VBD decision NN decision-maker NN decision-makers NNS decision-making NN decisional JJ decisionmaking NN decisions NNS decisis FW decisive JJ decisively RB decisiveness NN deck NN decked VBN deckhands NNS decking NN decks NNS declaimed VBD declamatory JJ declaration NN declarations NNS declarative JJ declaratory JJ declare VB declared VBD declares VBZ declaring VBG declasse JJ declassifying VBG decline NN declined VBD decliners NNS declines NNS declining VBG declivity NN deco NN decoction NN decode VB decolletage NN decommissioned VBN decommissoned JJ decompose VB decomposed JJ decomposes VBZ decomposing VBG decomposition NN decompression NN decongestant NN deconstructed JJ decontaminated VBN decontamination NN decontrol NN decor NN decorate VBP decorated VBN decorating NN decoration NN decorations NNS decorative JJ decorativeness NN decorator NN decorators NNS decorous JJ decorticated VBN decorum NN decoy NN decoys NNS decrease NN decreased VBD decreases NNS decreasing VBG decree NN decreed VBD decreeing VBG decrees NNS decrement NN decrepit JJ decribed VBD decried VBD decries VBZ decriminalization NN decriminalized VBN decry VB decrying VBG dedicate VB dedicated VBN dedicates VBZ dedication NN dedifferentiated JJ deduce VB deduced VBN deduces VBZ deducing VBG deduct VB deductable JJ deducted VBN deductibility NN deductible JJ deductibles NNS deducting VBG deduction NN deductions NNS deductive JJ deed NN deeds NNS deem VBP deemed VBN deeming VBG deems VBZ deep JJ deep-discount JJ deep-eyed JJ deep-pocket JJ deep-pocketed JJ deep-rooted JJ deep-sea JJ deep-seated JJ deep-set JJ deep-sounding JJ deep-space JJ deep-tendon NN deepen VB deepened VBD deepening VBG deepens VBZ deeper JJR deepest JJS deeply RB deeps NNS deer NN deer-are-long-legged-rats-with-big-ears JJ deer-handling NN deer-killing NN deerskins NNS def JJ defaces VBZ defacing VBG defamation NN defamatory JJ defamed VBN default NN defaulted VBD defaulters NNS defaulting VBG defaults NNS defeat NN defeated VBN defeating VBG defeatism NN defeatists NNS defeats NNS defecated VBN defect NN defected VBD defecting VBG defection NN defections NNS defective JJ defector NN defectors NNS defects NNS defects-office NN defend VB defendant NN defendants NNS defended VBD defender NN defenders NNS defending VBG defends VBZ defense NN defense-appropriations JJ defense-authorization NN defense-budget NN defense-contract NN defense-electronics NNS defense-equipment JJ defense-industry JJ defense-oriented JJ defense-procurement NN defense-products NNS defense-related JJ defense-suppression NN defenseless JJ defenses NNS defensible JJ defensive JJ defensively RB defensiveness NN defer VB deference NN deferent NN deferents NNS deferment NN deferments NNS deferred VBN deferred-maintenance JJ deferring VBG defers VBZ defiance NN defiant JJ defiantly RB deficiencies NNS deficiency NN deficient JJ deficit NN deficit-cutting JJ deficit-debt NN deficit-inflation-capital-flight JJ deficit-racked JJ deficit-reduction NN deficit-ridden JJ deficitcutting NN deficits NNS defied VBD defies VBZ defile VB defiles VBZ defiling VBG definable JJ define VB defined VBN defined-benefit JJ defined-contribution NN defines VBZ defining VBG definite JJ definitely RB definition NN definition-specialization JJ definitional JJ definitions NNS definitive JJ definitively RB deflate VB deflated VBD deflating VBG deflationary JJ deflationist NN deflator NN deflators NNS deflect VB deflected VBD deflecting VBG deflects VBZ defocusing VBG defoliation NN deforestation NN deformation NN deformational JJ deformed JJ deformities NNS deformity NN defraud VB defrauded VBD defrauding VBG defray VB defrayed VBN deft JJ deftly RB deftness NN defunct JJ defunded VBN defuse VB defused VBN defy VB defying VBG degassed VBN degeneracy NN degenerate JJ degenerated VBD degenerates VBZ degeneration NN degenerative JJ deglycerolized VBN degradation NN degrade VB degraded JJ degrading JJ degree NN degree-granting JJ degrees NNS dehumanised VBN dehumanize VB dehumanized VBN dehumidified VBN dehydrate VB dehydrated JJ dehydration NN dei NNP deification NN deigned VBD deinstitutionalization NN deities NNS deja FW dejectedly RB dejection NN dejeuner FW dejeuners FW del NNP delay NN delayed VBN delaying VBG delays NNS delectable JJ delectably RB delectation NN delegate NN delegated VBN delegates NNS delegating VBG delegation NN delegations NNS delenda FW delete VB deleted VBN deleterious JJ deleting VBG deletion NN deletions NNS deli NNS deliberate JJ deliberated VBD deliberately RB deliberating VBG deliberation NN deliberations NNS deliberative JJ delicacies NNS delicacy NN delicate JJ delicate-beyond-description JJ delicately RB delicately-textured JJ delicatessen NN delicious JJ deliciously RB delicti FW delicto FW delight NN delighted VBN delightful JJ delightfully RB delighting VBG delights VBZ delimit VB delimits VBZ delineaments NNS delineate VB delineated VBN delineating VBG delineation NN delinking NN delinquencies NNS delinquency NN delinquent JJ delinquents NNS deliriously RB delirium NN delist VB delisted VBN delisting NN deliver VB deliverable JJ deliverance NN delivered VBN deliverers NNS deliveries NNS delivering VBG delivers VBZ delivery NN delivre VB dell NN delle NNP deloused VBN delousing VBG delphic JJ delta NN deltas NNS deltoid NN deltoids NNS delude VB deluded JJ deluding VBG deluge NN deluged VBN delusion NN delusions NNS deluxe JJ deluxer NN delve VB delved VBN delver NN delves VBZ delving VBG demage NN demagnification NN demagogic JJ demagoguery NN demagogues NNS demand NN demand-related JJ demand-supply JJ demand... : demanded VBD demander NN demanding VBG demandingly RB demands NNS demarcated VBN demarcation NN demeaned VBN demeaning JJ demeanor NN demeanors NNS demeans VBZ demented JJ dementia NN demi-monde FW demilitarize VB demineralization NN demise NN demo NN demobilize VB demobilized VBN demobilizing VBG democracies NNS democracy NN democracy-free JJ democrat NN democratic JJ democratically RB democratization NN democratize VB democratized VBN democratizing VBG democrats NNS demographic JJ demographically RB demographics NNS demographiques FW demography NN demolish VB demolished VBN demolishing VBG demolition NN demon NN demon-ridden NN demonetized VBN demoniac JJ demonic JJ demonize VB demonized VBN demonizing NN demonologist NN demons NNS demonstators NNS demonstrable JJ demonstrably RB demonstrate VB demonstrated VBN demonstrates VBZ demonstrating VBG demonstration NN demonstrations NNS demonstratively RB demonstrativeness NN demonstratives NNS demonstrators NNS demoralization NN demoralize VB demoralized VBN demoralizes VBZ demoralizing VBG demoted VBN demotion NN demur VBP demure JJ demurred VBD demurrer NN demurs VBZ demythologization NN demythologize VB demythologized VBN demythologizing VBG den NN denationalization NN denationalizations NNS denationalized VBN denial NN denials NNS denied VBN denies VBZ denigrate VB denigration NN denims NNS denizens NNS denominated VBN denomination NN denominational JJ denominationally RB denominations NNS denominator NN denominators NNS denote VB denoted VBN denotes VBZ denoting VBG denouement NN denounce VBP denounced VBD denounces VBZ denouncing VBG dens NNS dense JJ densely RB densest JJS densities NNS densitometry NN density NN dent NN dental JJ dental-products NNS dented VBD denting VBG dentist NN dentistry NN dentists NNS dents NNS dentures NNS denuclearized VBN denude VB denuded VBN denunciation NN denunciations NNS deny VB denyin VBG denying VBG deodorant NN deoxyribonucleic JJ depart VB departed VBD departing VBG department NN department-store NN department\/office NN departmental JJ departmentalizing VBG departments NNS departs VBZ departure NN departures NNS depcreciation NN depend VB dependable JJ depended VBD dependence NN dependency NN dependent JJ dependent-care JJ dependents NNS depending VBG depends VBZ depersonalization NN depersonalized VBN depict VB depicted VBN depicting VBG depiction NN depictions NNS depicts VBZ deplete VB depleted VBN depletes VBZ depletion NN deplorable JJ deplorably RB deplore VB deplored VBD deplores VBZ deploring VBG deploy VB deployable JJ deployed VBN deploying VBG deployment NN deployments NNS deport VB deportation NN deportations NNS deported VBN deportees NNS depose VB deposed VBN deposit NN deposit-transfer NN depositary NN deposited VBN depositing VBG deposition NN depositions NNS depositor NN depositors NNS depository NN deposits NNS depot NN depots NNS depraved JJ depravities NNS depravity NN deprecatory JJ depreciable JJ depreciated VBD depreciating VBG depreciation NN depreciation-induced JJ depredations NNS depress VB depressant NN depressants NNS depressed JJ depresses VBZ depressing JJ depressingly RB depression NN depressions NNS depressors NNS deprivation NN deprivations NNS deprive VB deprived VBN deprives VBZ depriving VBG deprogrammings NNS dept. NN depth NN depths NNS deputies NNS deputized VBN deputy NN der NNP derail VB derailed VBD derailing VBG derailments NNS deranged JJ derangement NN deras FW derby NN dere NN deregulate VB deregulated VBN deregulating VBG deregulation NN deregulaton NN derelict NN dereliction NN derelicts NNS deride VBP derided VBD derision NN derisively RB derivation NN derivations NNS derivative JJ derivatives NNS derive VBP derived VBN derives VBZ deriving VBG dermal JJ dermatological JJ derogate NN derogation NN derogatory JJ derrick NN derriere NN derring NN derring-do NN dervish NN dervish-like JJ dervishes NNS des NNP descend VB descendant NN descendants NNS descended VBD descendent NN descendents NNS descending VBG descends VBZ descent NN descents NNS descramblers. NN describe VB described VBN describes VBZ describing VBG description NN descriptions NNS descriptive JJ desecrated VBN desecrates VBZ desecration NN desegregate VB desegregated VBN desegregation NN desegregation-from-court-order NN desensitized VBN desert NN desert-battle JJ desert-bound JJ deserted VBN desertification NN desertion NN deserts NNS deserve VBP deserved VBD deserves VBZ deserving JJ deshabille NN design NN design-conscious JJ design-side JJ design... : designate VB designated VBN designates VBZ designating VBG designation NN designations NNS designed VBN designees NNS designer NN designers NNS designing VBG designs NNS desirability NN desirable JJ desire NN desired VBN desires NNS desiring VBG desirous JJ desist VB desisted VBD desk NN desk-legs NN desk-top JJ desklegs NNS desks NNS desktop NN desktop-computer NN desktop-presentation JJ desktop-publishing NN desolate JJ desolation NN desolations NNS despair NN despaired VBD despairing JJ despairingly RB despairs VBZ despatch NN despatched VBD desperadoes NNS desperate JJ desperately RB desperation NN despicable JJ despise VBP despised VBD despises VBZ despite IN despoiled VBN despoilers NNS despoiling VBG despondency NN despondent JJ despot NN despotism NN despots NNS despues FW dessert NN dessert-menu NN desserts NNS dessier VB destabilize VB destabilizes VBZ destabilizing VBG destigmatization NN destination NN destinations NNS destined VBN destinies NNS destiny NN destitute JJ destroy VB destroyed VBN destroyer NN destroyers NNS destroyers... : destroying VBG destroys VBZ destruction NN destructive JJ desuetude NN desulfurization NN desultory JJ desynchronizing VBG detach VB detachable JJ detached VBN detachment NN detail NN detailed VBN detailing VBG details NNS detailsman NN detain VB detained VBN detaining VBG detect VB detectable JJ detected VBN detecting VBG detection NN detective NN detective-story NN detectives NNS detector NN detectors NNS detects VBZ detente NN detention NN deter VB deterence NN detergency NN detergent NN detergents NNS deteriorate VB deteriorated VBN deteriorates VBZ deteriorating VBG deterioration NN determinability NN determinable JJ determinant NN determinants NNS determinate JJ determination NN determinations NNS determinative JJ determine VB determined VBN determinedly RB determines VBZ determing VBG determining VBG determinism NN deterministic JJ deterrant JJ deterred VBN deterrence NN deterrence... : deterrent NN deterrents NNS deterring VBG deters VBZ detest VBP detestable JJ detestation NN detested VBD detests VBZ dethroned VBN detonate VB detonated VBN detonating VBG detonation NN detour NN detoured VBD detours NNS detoxification NN detoxify VB detract VB detracted VBN detracting VBG detractor NN detractors NNS detracts VBZ detribalize VB detriment NN detrimental JJ detriments NNS deuterated VBD deuterium NN deutsche NN deux FW devaluation NN devaluations NNS devalue VB devalued VBD devastate VB devastated VBN devastating JJ devastatingly RB devastation NN develop VB developed VBN developer NN developers NNS developing VBG developing-country JJ developing-nation JJ development NN development-aid NN development... : developmental JJ developments NNS develops VBZ deviance NN deviant JJ deviants NNS deviate VB deviated VBD deviates VBZ deviating VBG deviation NN deviations NNS device NN device. NN devices NNS devil NN devil's-food JJ devilish JJ devils NNS devious JJ devise VB devised VBN devisee NN devises VBZ devising VBG devlopments NNS devoid JJ devote VB devoted VBN devotedly RB devotee NN devotees NNS devotes VBZ devoting VBG devotion NN devotional JJ devotions NNS devour VB devoured VBN devouring VBG devours VBZ devout JJ devoutly RB dew NN dew-sodden JJ dewars NNS dewatering VBG dewdrops NNS deworm VB dewy-eyed JJ dexamethasone NN dexterity NN dextrous JJ dextrous-fingered JJ dey PRP dhow NN di NNP di-iodotyrosine NN diGenova NNP dia. NN diabetes NN diabetic JJ diabetics NNS diabolical JJ diachronic JJ diagnometer NN diagnosable JJ diagnose VB diagnosed VBN diagnoses NNS diagnosing VBG diagnosis NN diagnostic JJ diagnosticians NNS diagnostics NNS diagonal JJ diagonalizable JJ diagonally RB diagonals NNS diagram NN diagrammed VBN diagramming VBG diagrams NNS dial NN dial-a-banker JJ dial-tone NN dialect NN dialectic NN dialectical JJ dialectically RB dialectics NNS dialects NNS dialed VBD dialing VBG dialogue NN dialogues NNS dials NNS dialysis NN dialyzed VBN diam NN diameter NN diameters NNS diametrically RB diamond NN diamond-polishing NN diamond-shaped JJ diamond-studded NN diamonds NNS diaper NN diaper-changing JJ diapers NNS diaphanous JJ diaphragm NN diaphragmic JJ diaphragms NNS diapiace FW diaries NNS diarrhea NN diarrhoea NN diary NN diathermy NN diathesis NN diatomic JJ diatoms NNS diatribe NN diazepam NN dibenzofurans NNS dibs NNS dicate VBP dice NNS dicendi FW dichondra NN dichotomy NN dick NN dicker VB dickered VBD dickering NN dicks NNS diclosed VBN dictate VB dictated VBN dictates NNS dictating VBG dictation NN dictator NN dictatorial JJ dictators NNS dictatorship NN dictatorships NNS diction NN dictionaries NNS dictionary NN dictum NN did VBD did'nt NN didactic JJ diddle UH diddling VBG dideoxyinosine NN didn VBD didn't VBD didnt VBD die VB die-dead NN die-hard JJ die-hards NNS die-up NN died VBD diehard JJ diehards NNS diem FW dies VBZ diesel NN diesels NNS diet NN dietary JJ dieters NNS diethylaminoethyl NN diethylstilbestrol NN dieting NN diets NNS diety NN diff NN differ VBP differed VBD difference NN difference... : differences NNS different JJ different-color JJ differentiability NN differentiable JJ differential JJ differentials NNS differentiate VB differentiated VBN differentiates VBZ differentiating VBG differentiation NN differently RB differing VBG differs VBZ difficile FW difficult JJ difficulties NNS difficulty NN diffidence NN diffraction NN diffrunce NN diffuse JJ diffused VBN diffusely RB diffusers NNS diffuses VBZ diffusing VBG diffusion NN dig VB digest VB digest-size JJ digested VBN digestibility NN digestible JJ digesting VBG digestion NN digestive JJ digger NN diggers NNS digging VBG digit NN digital JJ digitalis NN digitalization NN digitalized JJ digitizes VBZ digits NNS dignified VBN dignifies VBZ dignify VB dignitaries NNS dignity NN digress VB digressions NNS digs VBZ diisocyanate NN dike NN diktat JJ dilapidated JJ dilatation NN dilate VB dilated VBN dilates VBZ dilating VBG dilation NN dilemma NN dilemmas NN dilettante NN diligence NN diligent JJ diligently RB dill NN diluents NNS dilute VB diluted VBN dilutes VBZ diluting VBG dilution NN dilutive JJ dim JJ dim-witted JJ dime NN dimension NN dimensional JJ dimensionally RB dimensioning JJ dimensions NNS dimers NNS dimes NNS dimesize JJ dimethylglyoxime NN diming VBG diminish VB diminished VBN diminishes VBZ diminishing VBG diminution NN diminutive JJ dimly RB dimly-outlined JJ dimmed VBN dimmer RB dimming VBG dimwits NNS dimwitted JJ din NN dine VB dined VBD diner NN diners NNS dines VBZ dinghy NN dingo NN dingy JJ dining NN dining-room NN dinkiest JJS dinner NN dinner-hour JJ dinners NNS dinnertime NN dinnerware NN dinosaur NN dinosaur... : dinosaurs NNS diocesan JJ diocese NN dioceses NNS diocs NNS diorah NN dioramas NN dioxalate NN dioxide NN dioxin NN dioxins NNS dip NN diphosphopyridine JJ diphtheria NN diploma NN diplomacy NN diplomas NNS diplomat NN diplomatic JJ diplomatically RB diplomats NNS dipole JJ dipoles NNS dipotassium NN dipped VBD dipper NN dipping VBG dippy JJ dips NNS dire JJ direct JJ direct-investment JJ direct-line JJ direct-mail JJ direct-mail-mogul NN direct-marketed JJ direct-marketing NN direct-seller NN direct-selling JJ direct-steelmaking NN direct-sum NN directed VBN directing VBG direction NN directional JJ directionally RB directionless JJ directionlessness NN directions NNS directive NN directives NNS directivity NN directly RB directmail NN directness NN director NN director-general NN directorate NN directorial JJ directories NNS directors NNS directorship NN directory NN directrices NNS directs VBZ dirge NN dirhams NNS dirt NN dirt-catcher NN dirtier JJR dirtier-running JJ dirtiest JJS dirty JJ dis DT disabilities NNS disability NN disable VB disabled JJ disabled-workers NNS disabling VBG disabuse VB disadvantage NN disadvantaged JJ disadvantageous JJ disadvantages NNS disaffected JJ disaffection NN disaffiliate VBP disaffiliated JJ disaffiliation NN disagree VBP disagreeable JJ disagreed VBD disagreement NN disagreements NNS disagrees VBZ disallow VB disallowance NN disallowed VBD disappear VB disappearance NN disappearances NNS disappeared VBD disappearing VBG disappears VBZ disappoint VB disappointed VBN disappointing JJ disappointingly RB disappointment NN disappointments NNS disappoints VBZ disapprobation NN disapproval NN disapprove VBP disapproved VBD disapproves VBZ disapproving JJ disapprovingly RB disarm VB disarmament NN disarmed JJ disarming VBG disarmingly RB disarranged VBN disarray NN disassemble VB disassembled VBD disassembly NN disassociate VB disassociated VBD disaster NN disaster-assistance JJ disaster-contingency NN disaster-prone JJ disaster-recovery JJ disaster-subsidy JJ disasters NNS disastrous JJ disastrously RB disavowed VBD disband VB disbanded VBN disbanding VBG disbelief NN disbelieve VB disbelieved VBD disbelieves VBZ disbelieving VBG disburden VB disbursed VBN disbursement NN disbursements NNS disburses VBZ disbursesments NNS disc NN discard VB discarded VBN discern VB discernable JJ discerned VBN discernible JJ discerning JJ discernment NN discerns VBZ discharge NN discharged VBN discharges NNS discharging VBG discimination NN disciple NN disciples NNS discipleship NN disciplinary JJ discipline NN disciplined VBN disciplines NNS disciplining VBG disclaimed VBD disclaimer NN disclaimers NNS disclaims VBZ disclose VB disclosed VBN discloses VBZ disclosing VBG disclosure NN disclosures NNS disco NN discography NN discoid JJ discolored VBN discolors VBZ discombobulation NN discomfit VB discomfited JJ discomfort NN disconcert VB disconcerting JJ disconcertingly RB disconnect VB disconnected VBN disconnecting VBG discontent NN discontented JJ discontinuance NN discontinuation NN discontinue VB discontinued VBN discontinuing VBG discontinuity NN discontinuous JJ discord NN discordant JJ discordantly RB discorporate JJ discorporated VBN discos NNS discotheque NN discotheques NNS discount NN discount-borrowing NN discount-brokerage NN discount-coupon NN discount-movie JJ discount-rate JJ discount-retailing NN discount-store NN discount-toy JJ discount... : discounted VBN discounter NN discounters NNS discounting NN discounts NNS discourage VB discouraged VBN discouragement NN discourages VBZ discouraging VBG discourse NN discourses NNS discourteous JJ discover VB discovered VBN discoverer NN discoveries NNS discovering VBG discovers VBZ discovery NN discredit VB discredited VBN discrediting NN discreet JJ discreetly RB discrepancies NNS discrepancy NN discrepencies NNS discrepency NN discrete JJ discretion NN discretionary JJ discriminate VB discriminated VBD discriminates NNS discriminating VBG discrimination NN discriminatory JJ discs NNS discursive JJ discursiveness NN discus NN discuss VB discussant NN discussed VBN discusses VBZ discussing VBG discussion NN discussions NNS discussions.. NNS disdain NN disdained VBN disdainful JJ disdainfully RB disdaining VBG disdains VBZ disease NN disease-fighting JJ disease-resistance JJ disease-resistant JJ diseased JJ diseases NNS disembark VBP disembarked VBD disembarking VBG disembodied JJ disenchanted VBN disenfranchised VBN disenfranchisement NN disengage VB disengaged VBN disengagement NN disentangle VB disentangling VBG disfavor NN disfavored JJ disfigured VBD disgorge VB disgorgement NN disgrace NN disgraced VBN disgraceful JJ disgruntled JJ disguise VB disguised VBN disguises VBZ disgust NN disgusted VBN disgusting JJ dish NN disharmony NN dishearten VB disheartened VBN disheartening JJ dished VBD dishes NNS disheveled JJ dishing VBG dishonest JJ dishonestly RB dishonesty NN dishonor NN dishonorable JJ dishonored VBN dishonouring VBG dishwasher NN dishwashers NNS dishwater NN disillusioned VBN disillusioning JJ disillusionment NN disincentive NN disincentives NNS disinclination NN disinclined VBN disinfectant NN disinfectants NNS disinfected VBN disinflation NN disinflationary JJ disingenuous JJ disintegrate VB disintegrated VBD disintegrating VBG disintegration NN disintegrative JJ disinterest NN disinterested JJ disinterred VBN disjointed VBN disk NN disk-drive NN disk-read JJ diskette NN diskettes NNS disking VBG disks NNS dislike NN disliked VBD dislikes VBZ disliking VBG dislocated JJ dislocation NN dislocations NNS dislodge VB dislodged VBD disloyal JJ disloyalty NN dismal JJ dismally RB dismantle VB dismantled VBN dismantles VBZ dismantling VBG dismay NN dismayed VBN dismaying JJ dismember VB dismembered VBD dismembering VBG dismemberment NN dismiss VB dismissal NN dismissed VBD dismisses VBZ dismissing VBG dismounted VBD dismounting VBG dismounts VBZ disobedience NN disobedient JJ disobey VB disobeyed VBN disobeying VBG disorder NN disordered JJ disorderliness NN disorderly JJ disorders NNS disorganization NN disorganized JJ disoriented VBN disown VB disowned VBD disparage VB disparaged VBD disparagement NN disparaging VBG disparate JJ disparities NNS disparity NN dispassionate JJ dispassionately RB dispatch NN dispatched VBD dispatchers NNS dispatches NNS dispatching VBG dispel VB dispell VB dispelled VBN dispensable JJ dispensary NN dispensation NN dispense VB dispensed VBN dispenser NN dispensers NNS dispenses VBZ dispensing VBG dispersal NN dispersant NN dispersants NNS disperse VB dispersed VBN dispersement NN dispersing VBG dispersion NN displace VB displaced VBN displacement NN displaces VBZ displacing NN display NN displayed VBN displaying VBG displays NNS displeased VBN displeases VBZ displeasure NN disposable JJ disposables NNS disposal NN disposals NNS dispose VB disposed VBN disposes VBZ disposing VBG disposition NN dispositions NNS dispossessed VBN dispossession NN disppointed JJ disproportionally RB disproportionate JJ disproportionately RB disprove VB disproving VBG disputable JJ dispute NN dispute-settlement JJ disputed VBN disputes NNS disqualification NN disqualified VBN disqualify VB disquiet NN disquieting JJ disquietude NN disquisition NN disregard NN disregarded VBD disregarding VBG disrepair NN disreputable JJ disrepute NN disrespect NN disrobe VB disrupt VB disrupted VBN disrupting VBG disruption NN disruptions NNS disruptive JJ disrupts VBZ dissatisfaction NN dissatisfactions NNS dissatisfied JJ dissected VBD dissecting VBG dissection NN dissects VBZ dissembling VBG disseminate VB disseminated VBN disseminates VBZ disseminating VBG dissemination NN dissension NN dissensions NNS dissent NN dissented VBD dissenter NN dissenters NNS dissenting JJ dissents NNS disseration NN disservice NN dissident JJ dissident-shareholder NN dissidents NNS dissidents. NN dissimilar JJ dissimiliar JJ dissimulation NN dissipate VB dissipated VBN dissipates VBZ dissipating VBG dissociate VB dissociated VBN dissociates VBZ dissociating VBG dissociation NN dissolution NN dissolutions NNS dissolve VB dissolved VBN dissolves VBZ dissolving VBG dissonance NN dissonances NNS dissuade VB dissuaded VBD distal JJ distance NN distances NNS distancing VBG distant JJ distantly RB distaste NN distasteful JJ distastefully RB distate NN distension NN distil VB distillates NNS distillation NN distilled VBN distiller NN distilleries NNS distillers NNS distillery NN distilling VBG distills VBZ distinct JJ distinction NN distinctions NNS distinctive JJ distinctively RB distinctiveness NN distinctly RB distinguish VB distinguishable JJ distinguished VBN distinguishes VBZ distinguishing VBG distort VB distortable JJ distorted VBN distorting VBG distortion NN distortions NNS distorts VBZ distract VB distracted VBN distractedly RB distracting VBG distraction NN distractions NNS distraught JJ distress NN distressed JJ distresses NNS distressing JJ distressingly RB distributable JJ distribute VB distributed VBN distributer NN distributes VBZ distributing VBG distribution NN distributions NNS distributive JJ distributor NN distributors NNS distributorship NN district NN district-by-district RB district-court NN district\/state NN districting NN districts NNS districts\/states NNS distrubition NN distrust NN distrusted VBN distrusts VBZ disturb VB disturbance NN disturbances NNS disturbed VBN disturber NN disturbing JJ disturbingly RB disturbs VBZ disulfide NN disunion NN disunited VBN disunity NN disused JJ ditch NN ditched VBD ditcher NN ditches NNS dites FW dither NN dithering VBG dithers VBZ ditties NNS ditto NN ditty NN diuretic NN diuretics NNS diurnal JJ diva NN divan NN divan-like JJ divans NNS dive NN dived VBD diver NN diverge VB divergence NN divergent JJ diverging VBG divers NNS diverse JJ diversifed VBN diversification NN diversifications NNS diversified JJ diversify VB diversifying VBG diversion NN diversionary JJ diversions NNS diversities NNS diversity NN divert VB diverted VBN diverticulitis NN divertimento JJ diverting VBG dives NNS divest VB divested VBN divesting VBG divestiture NN divestiture-related JJ divestitures NNS divestment NN divide VB divided VBN dividend NN dividend-capture NN dividend-related JJ dividends NNS divider NN divides VBZ dividing VBG divination NN divine JJ divinely RB diving VBG divining VBG divinities NNS divinity NN divisible JJ division NN division. NN divisional JJ divisions NNS divisive JJ divisiveness NN divorce NN divorced VBN divorcee NN divorces NNS divulge VB divulging VBG divvied VBN divvying VBG dizzily RB dizziness NN dizzy JJ dizzying JJ do VBP do-everything JJ do-good JJ do-gooder JJ do-gooders NNS do-it-yourself JJ do-nothing JJ do-or-die JJ doable JJ doan VBP doble NN doc NN docile JJ docilely RB dock NN dock-siders NNS docked VBN docket NN docketed VBN dockets NNS docks NNS dockside NN dockworkers NNS dockyards NNS docters NNS doctor NN doctor-oriented JJ doctor-originated JJ doctor-patient JJ doctoral JJ doctorate NN doctorates NNS doctored VBN doctoring NN doctors NNS doctrinaire JJ doctrinal JJ doctrinally RB doctrine NN doctrines NNS docudrama NN docudramas NNS document NN documentaries NNS documentary NN documentary-type JJ documentation NN documented VBN documenting VBG documents NNS docutainment NN doddering JJ dodge VBP dodged VBD dodging VBG doe NN doer NN doers NNS does VBZ doesn't VBZ doesnt VBZ doffing VBG dog NN dog-and-pony NN dog-eared JJ dog-eat-dog JJ dog-meat NN dog-pin JJ dog-powered JJ dog-rose NN dogcatcher NN dogfight NN dogged VBN doggedly RB doggerel NN doggie JJ dogging VBG doggone JJ doghouse NN dogleg NN dogma NN dogmas NN dogmatic JJ dogmatically RB dogmatism NN dogs NNS dogtrot NN dogwood NN doi FW doin VBG doing VBG doings NNS dolce FW doldrums NNS dole VB doled VBD doleful JJ doles VBZ doling VBG doll NN doll-like JJ doll-sized JJ dollar NN dollar-and-cents JJ dollar-convertible JJ dollar-cost JJ dollar-denominated JJ dollar-mark NN dollar-priced JJ dollar-profits JJ dollar-related JJ dollar-sellers NNS dollar-selling NN dollar-sign NN dollar-yen JJ dollar\ JJ dollarette JJ dollars NNS dollars-and-cents NNS dollars... : dolledup JJ dollies NNS dollop NN dollops NNS dolls NNS dolphin NN dolphins NNS dolt NN doltish JJ domain NN domains NNS dome NN domed JJ domes NNS domestic JJ domestic-airline NN domestic-credit NN domestic-demand JJ domestic-inflation NN domestic-made JJ domestic-policy JJ domestic-production NN domestically RB domesticates VBZ domesticity NN domi FW domicile NN domiciled VBN dominance NN dominant JJ dominantly RB dominate VB dominated VBN dominates VBZ dominating VBG domination NN domineering VBG dominion NN domino NN dominoes NN domponents NNS don VB don't VB don't's NNS don't-con-me JJ don't-know's NNS donate VB donated VBN donates VBZ donating VBG donation NN donations NNS done VBN done-and CC done-unto JJ donkey NN donkeys NNS donna NN donned VBD donning VBG donnybrook NN donor NN donors NNS dons VBZ dont VB donut NN donut-sales JJ doo NN dood NN doodads NNS doom NN doomed VBN dooming VBG dooms NNS doomsayer NN doomsayers NNS doomsday NN door NN door-frame NN door-fronted VBN door-to-door JJ doorbell NN doorkeeper NN doorknob NN doorman NN doormen NNS doors NNS doorstep NN doorway NN doorways NNS dope NN dope-ridden JJ doped JJ doper NN dorm NN dormant JJ dormitories NNS dormitory NN dosage NN dosages NNS dose NN dosed VBN doses NNS dossier NN dossiers NNS dost VBP dot NN dot-matrix NN doted VBN doth VBZ doting VBG dots NNS dotted VBN dotting VBG double JJ double-A JJ double-A-1 JJ double-A-2 NN double-A-3 JJ double-A-minus JJ double-A-plus JJ double-A-rated JJ double-A1 NN double-A\ NNP double-A\/single-A-plus JJ double-B JJ double-B-minus NN double-B-minus\ NN double-B-plus JJ double-C NN double-billing VBG double-bladed JJ double-bogeyed VBD double-bolt VB double-breasted JJ double-checking NN double-coupon NN double-crossed VBD double-crosser JJ double-crossing NN double-deck JJ double-decker JJ double-decking NN double-digit JJ double-edged JJ double-entendre NN double-glaze VB double-glazed JJ double-hamburger NN double-header NN double-helix JJ double-jeopardy NN double-married JJ double-meaning NN double-stage JJ double-step JJ double-talk NN double-valued JJ double-wall JJ double-whammy NN double-wing JJ doubleA-2 JJ doubled VBD doubled-edged JJ doubleheader NN doubles NNS doubling VBG doubloon NN doubly RB doubt NN doubte NN doubted VBD doubter NN doubters NNS doubtful JJ doubtfully RB doubting VBG doubtingly RB doubtless RB doubtlessly RB doubts NNS dough NN doughnut NN doughty JJ dour JJ dourly RB douse VB doused VBD dove NN doves NNS dovetail VBP dovetails VBZ dovish JJ dowdy JJ dowdy-looking JJ dowel NN doweling NN dower NN down RB down-and-out JJ down-and-outers NNS down-down JJ down-home JJ down-payment NN down-payments NNS down-the-line JJ down-to-earth JJ down. RP downbeat JJ downcast JJ downdraft NN downed VBD downer NN downfall NN downfall... : downgrade NN downgraded VBD downgrades NNS downgrading NN downgradings NNS downhill RB downing VBG downpayment NN downpayments NNS downplay VB downplayed VBD downplaying VBG downplays VBZ downpour NN downright RB downs NNS downshoot NN downside NN downsize VB downsized VBN downsizing VBG downstairs NN downstream RB downtalking JJ downtime NN downtown NN downtrend NN downtrodden JJ downturn NN downturns NNS downward JJ downwind RB dowry NN doxepin NN dozed VBD dozen NN dozens NNS dozing VBG drab JJ drab-haired JJ drachma NN drachmas NNS draconian JJ draft NN draft-avoidance NN draft-resistance NN drafted VBN draftee NN draftees NNS drafters NNS drafting VBG drafts NNS draftsmen NNS drafty JJ drag NN drag-down JJ dragged VBN dragger NN dragging VBG dragnet NN dragon NN dragons NNS dragoon VBP dragooned VBD drags VBZ drahve VB drain NN drainage NN drained VBN draining VBG drains NNS dram NN drama NN drama-filled JJ dramas NN dramatic JJ dramatical JJ dramatically RB dramatics NNS dramatist NN dramatists NNS dramatization NN dramatizations NNS dramatize VB dramatized VBN dramatizes VBZ dramatizing VBG drank VBD drape NN draped VBD draper NN draperies NNS drapers NNS drapery NN drapes NNS draping VBG drastic JJ drastically RB draught NN draughts NN draughty JJ draw VB draw-down NN drawback NN drawbacks NNS drawbridge NN drawdown NN drawer NN drawers NNS drawin VBG drawing VBG drawing-room NN drawing-rooms NNS drawings NNS drawl NN drawled VBD drawling VBG drawn VBN drawn-back NN drawn-out JJ draws VBZ dread NN dreaded VBN dreadful JJ dreadfully RB dreading VBG dream NN dream-ridden JJ dreamed VBD dreamer NN dreamers NNS dreamin NN dreaming VBG dreamless JJ dreamlessly RB dreamlike JJ dreams NNS dreamt VBD dreamy JJ drearier RBR dreariness NN dreary JJ dredged VBD dredges VBZ dregs NNS drenching NN dress NN dressed VBN dresser NN dressers NNS dresses NNS dressing NN dressings NNS dressmaking NN dressy JJ drew VBD drewe VBD drib-drool NN dribble NN dribbled VBD dried VBN dried-out JJ dried-up JJ drier NN driers NNS dries NNS drift NN drift-net NN drifted VBD drifter NN driftin VBG drifting VBG driftnet NN drifts VBZ driftwood NN drill NN drill-bit NN drilled VBN drillers NNS drilling NN drills NNS drink NN drinkable JJ drinker NN drinkers NNS drinkin VB drinking NN drinking-water NN drinks NNS drip NN dripped VBD dripping VBG drips VBZ drive NN drive-in NN drive-through JJ drive-train NN drive-yourself JJ driven VBN driver NN drivers NNS drives NNS driveway NN driveways NNS driving VBG drizzle NN drizzling VBG drizzly JJ dromozoa NNS dromozootic JJ drone NN drones NNS drooled VBD drooling VBG droop VBP drooped VBD drooping VBG droopy-eyed JJ drop NN drop-block NN drop-in JJ drop-off NN drop-out JJ droped VBD droplets NNS dropoff NN dropoffs NNS dropout NN dropouts NNS droppable JJ dropped VBD dropper NN droppers NNS dropping VBG droppings NNS drops VBZ dross NN drought NN drought-induced JJ drought-inspired JJ drought-ravaged JJ drought-related JJ drought-seared JJ drought-shriveled JJ drought-stricken JJ drought-stunted JJ droughts NNS drouth NN drove VBD drover NN drovers NNS droves NNS drown VB drowned VBN drowning VBG drownings NNS drowns VBZ drowsed VBN drowsily RB drowsing VBG drowsy JJ drubbed VBN drubbing NN drudgery NN drug NN drug-abuse JJ drug-addled JJ drug-approval JJ drug-bill NN drug-cartel JJ drug-consuming JJ drug-dealing JJ drug-delivery JJ drug-education NN drug-enforcement JJ drug-fighting JJ drug-financed JJ drug-free JJ drug-funding NN drug-industry NN drug-infested JJ drug-interdiction NN drug-laden JJ drug-law NN drug-making JJ drug-policy NN drug-pricing NN drug-pushing JJ drug-related JJ drug-sales NNS drug-seeking JJ drug-sensing JJ drug-smuggling JJ drug-store NN drug-supply JJ drug-testing NN drug-traffickers NNS drug-trafficking JJ drug-treatment NN drug... : drugged VBN druggers NNS druggies NNS drugging VBG druggist NN druggists NNS drugless JJ drugs NNS drugstore NN drugstores NNS drugtrafficking NN drum VB drumbeat NN drumbeating NN drumlin NN drummed VBD drummer NN drummers NNS drumming VBG drumroll NN drums NNS drumsticks NNS druncke VBD drunk JJ drunk-and-disorderlies NNS drunk-driving JJ drunkard NN drunkards NNS drunken JJ drunkenly RB drunkenness NN drunker JJR drunks NNS druther VB dry JJ dry-dock NN dry-eyed JJ dry-gulchin NN dry-ice JJ dryer NN dryin VBG drying VBG dryly RB dryness NN drywall NN dthat IN du NNP dual JJ dual-career JJ dual-channel JJ dual-ladder JJ dual-purpose JJ dual-road-up NN dual-trading NN dualism NN dualities NNS dubbed VBN dubious JJ dubiously RB dubs VBZ duces FW duck NN ducked VBD ducking VBG duckling NN ducklings NNS ducks NNS duct NN ducts NNS ductwork NN dud NN dude NN dudgeon NN duds NNS due JJ due-diligence JJ due-process NN duel NN dueled VBD dueling VBG duels NNS dues NNS duet NN duets NNS duffel NN duffer NN duffers NNS dug VBD dugout NN duh UH duke NN dulcet JJ dull JJ dull-gray JJ dulled VBN duller JJR dullest JJS dulling VBG dullish JJ dullness NN dulls VBZ dully RB duly RB dumb JJ dumbbell NN dumbbells NNS dumber JJR dumbest JJS dumbfounded JJ dummies NNS dummy JJ dump VB dumped VBD dumping VBG dumps VBZ dumpster NN dumpsters NNS dumpy JJ dun NN dune NN dune-grass NN dunes NNS dung NN dungarees NNS dungeon NN dungeons NNS dunk NN dunked VBD dunks VBZ dunno VBP duo NN duodenal JJ duopoly RB duped VBN dupes VBZ duplex NN duplicable JJ duplicate VB duplicated VBN duplicates VBZ duplicating VBG duplication NN duplications NNS duplicative JJ duplicity NN durability NN durable JJ durable-goods NNS durables NNS duration NN durations NNS duress NN durin NN during IN durn JJ dusk NN dusky JJ dust NN dust-settling JJ dust-swirling JJ dust-thick JJ dust-up NN dustbin NN dustbowl NN dusted VBN dustin VBG dusting VBG dustjacket NN dusts NNS dusty JJ dusty-green JJ dusty-slippered JJ duties NNS dutiful JJ dutifully RB duty NN duty-free JJ dwarf NN dwarfed VBN dwarfism NN dwarfs VBZ dwell VBP dwelled VBN dweller NN dwellers NNS dwelling NN dwellings NNS dwells VBZ dwelt VBD dwindle VB dwindled VBD dwindles VBZ dwindling VBG dwindling-sales JJ dye NN dyed VBN dyed-in-the-wool JJ dyeing NN dyes NNS dying VBG dykes NNS dynamic JJ dynamical JJ dynamically RB dynamics NNS dynamism NN dynamite NN dynamited VBN dynamo NN dynamos NNS dynastic JJ dynasties NNS dynasty NN dynodes NNS dysentery NN dysfunction NN dysgenic JJ dyslexia NN dyspeptic JJ dysplasia NN dystopia NN dystopian JJ dystopias NNS dystrophy NN e NN e-Ames NNP e-Estimated VBN e-In IN e.g NN e.g. FW each DT eager JJ eagerly RB eagerness NN eagle NN eagle-eyed JJ eagles NNS ear NN ear-piercing JJ ear-splitting JJ eardrums NNS eared JJ earful NN earl NN earlier RBR earlier-announced JJ earlier-expressed JJ earlier-period NN earlier-reported JJ earlier-than-expected JJ earlier-the IN earliest JJS early JJ early-childhood NN early-departure NN early-morning JJ early-retirement NN early-season JJ early-warning NN earmark VB earmarked VBN earmarking VBG earn VB earned VBD earned-income NN earned-run JJ earner NN earners NNS earnest NN earnestly RB earnestness NN earnigs NNS earning VBG earnings NNS earnings-driven JJ earnings-forecast JJ earnings-growth NN earnings-limit JJ earnings-per-share JJ earnings-related JJ earns VBZ earphone NN earphones NNS earring NN earrings NNS ears NNS earsplitting JJ earth NN earth-bound JJ earth-colored JJ earth-moving JJ earth-orbiting JJ earth-shattering JJ earth-tone NN earth-touching JJ earthbound JJ earthenware NN earthlings NNS earthly JJ earthmoving JJ earthquake NN earthquake-proof JJ earthquake-ravaged JJ earthquake-related JJ earthquake-resistant JJ earthquake-stricken JJ earthquake-trained JJ earthquake-triggered JJ earthquake... : earthquakes NNS earthshaking JJ earthworm NN earthworms NNS earthy JJ earworm NN ease VB eased VBD eased... : easel NN easement NN easements NNS eases VBZ easier JJR easier-to-read JJ easiest JJS easily RB easing VBG east JJ east-to-west RB east-west JJ eastern JJ eastward RB easy JJ easy-going JJ easy-to-film JJ easy-to-operate JJ easy-to-reach JJ easy-to-read JJ easy-to-spot JJ easy-to-turn JJ easy-to-use JJ easygoing JJ eat VB eat'em VB eatable JJ eatables NNS eaten VBN eateries NNS eaters NNS eatery NN eating VBG eatings NNS eats VBZ eave NN eavesdrop VB eavesdropping NN ebb NN ebb-and-flow NN ebbed VBD ebbing VBG ebbs VBZ ebony NN ebullient JJ ebulliently RB eccentric JJ eccentricities NNS eccentricity NN eccentrics NNS ecclesiastical JJ echelon NN echelons NNS echo NN echoed VBD echoes NNS echoing VBG eclairs NNS eclat NN eclectic JJ eclectically RB eclipse VB eclipsed VBD eclipses NNS eclipsing VBG ecliptic NN eco-evangelists NNS ecological JJ ecologically RB ecologists NNS ecology NN econobox NN econometric JJ econometrics NN economic JJ economic-cooperation NN economic-crime JJ economic-development NN economic-efficiency NN economic-forecasting JJ economic-policy NN economic-reform JJ economic-restructuring JJ economical JJ economically RB economics NNS economies NNS economist NN economists NNS economize VB economizing VBG economy NN economy-lodging JJ economy... : ecstasy NN ecstatic JJ ecstatically RB ectoplasmic JJ ecumenical JJ ecumenicists NNS ecumenist NN ecumenists NNS ed. NN edema NN edematous JJ edentulous JJ edge NN edged VBD edges NNS edgewise RB edginess NN edging VBG edgy JJ edible JJ edict NN edifice NN edified VBD edifying JJ edit VB edited VBN editing NN editing\/electronic JJ edition NN editions NNS editor NN editor-in-chief NN editorial NN editorial-page NN editorialist NN editorialists NNS editorialize VB editorially RB editorials NNS editors NNS editorship NN edits VBZ ednedayose NN educate VB educated VBN educating VBG education NN educational JJ educationalist NN educations NNS educator NN educators NNS educrats NNS eduction NN ee-faket NN eel NN eerie JJ eerily RB eeriness NN effaces VBZ effect NN effecte VB effected VBN effecting VBG effectinge VBG effective JJ effectively RB effectiveness NN effects NNS effectual JJ effectuate VB effeminate JJ effete JJ efficacious JJ efficaciously RB efficacy NN efficiencies NNS efficiency NN efficient JJ efficient-in JJ|IN efficient-market NN efficiently RB effigy NN effloresce VB effluent NN effluents NNS effluvium NN effort NN effort... : effortful JJ effortless JJ effortlessly RB efforts NNS effrontery NN effusive JJ egalitarian JJ egalitarianism NN egg NN egg-breaking NN egg-hatching JJ egg-on-the-face JJ egg-processing JJ egg-sized JJ egg-throwing JJ egged VBN egghead NN eggplants NNS eggs NNS eggshell JJ ego NN ego-adaptive JJ egocentric JJ egos NNS egotism NN egotist NN egotist... : egotistic JJ egotistical JJ egregious JJ egregiously RB egrets NNS eh UH eidetic JJ eies NNS eight CD eight-acre JJ eight-and-a-half-foot JJ eight-bar JJ eight-bit JJ eight-by-ten JJ eight-cent JJ eight-count JJ eight-foot JJ eight-foot-high JJ eight-hour JJ eight-inch JJ eight-member JJ eight-mile JJ eight-mile-long JJ eight-month JJ eight-month-old JJ eight-page JJ eight-page-a-minute JJ eight-partner JJ eight-person JJ eight-piece JJ eight-team JJ eight-thirty JJ eight-time JJ eight-times JJ eight-week JJ eight-year JJ eight-year-old JJ eightball NN eighteen CD eighteen-year-old JJ eighteenth JJ eighteenth-century JJ eighth JJ eighth-floor JJ eighties NNS eighty CD eighty-fifth JJ eighty-five CD eighty-four CD eighty-nine NN eighty-one CD eighty-sixth JJ eighty-three CD eighty-year-old JJ ein FW eine FW either DT either-or JJ ejaculated VBD eject VB ejected VBN ejection NN eke VB eked VBD eking VBG el-Fna NNP elaborate VB elaborated VBN elaborately RB elaborates VBZ elaborating VBG elaboration NN elan NN elapse VB elapsed VBN elapses VBZ elastic JJ elasticity NN elastomer NN elastomers NNS elated JJ elation NN elbow NN elbowing VBG elbows NNS elder JJR elderly JJ elders NNS eldest JJS elect VB elected VBN electing VBG election NN election-law NN elections NNS elections-an JJ elective JJ electives NNS electoral JJ electorate NN electors NNS electric JJ electric-driven JJ electric-generating NN electric-power JJ electric-sewer-water JJ electric-transport NN electric-utility JJ electrical JJ electrical-cable NN electrical-engineering JJ electrical-products NNS electrical-safety JJ electrically RB electricals NNS electrician NN electricians NNS electricity NN electricity-industry NN electrified VBN electrifying JJ electriques FW electro-magnetic JJ electro-optical JJ electro-optics NNS electrocardiogram NN electrocardiograph NN electrochemicals NNS electrode NN electrodes NNS electrodynamics NNS electrogalvanized JJ electrogalvanizing VBG electroluminescence NN electrolysis NN electrolysis-of-water JJ electrolytic JJ electromagnet NN electromagnetic-test NN electromagnetism NN electromagnets NNS electromechanical JJ electron NN electron-device NN electronic JJ electronic-bomb NN electronic-communications NNS electronic-data JJ electronic-defense NN electronic-information NN electronic-measuring JJ electronic-publishing JJ electronic-quote NN electronic-systems NNS electronic-test JJ electronic-trading JJ electronic-transaction JJ electronic-warfare NN electronically RB electronicmedical-equipment JJ electronics NNS electronics-distribution NN electronics-instruments JJ electronics-product NN electronography NN electrons NNS electrophoresis NN electrophorus NN electroplated VBN electroplating NN electroreality NN electroshock NN electroshocks NNS electrostatic JJ electrosurgical JJ electrotherapist NN elects VBZ elegance NN elegances NNS elegant JJ elegantly RB elegiac JJ elegy NN element NN elemental JJ elementary JJ elementary-grade JJ elementary-school JJ elements NNS elephant NN elephant-like JJ elephantine JJ elephants NNS elevate VB elevated VBN elevates VBZ elevating VBG elevation NN elevations NNS elevator NN elevators NNS eleven CD eleventh JJ eleventh-floor JJ eleventh-hour JJ elfin JJ elicit VB elicited VBN elicits VBZ elide VBP eligibility NN eligible JJ eliminate VB eliminated VBN eliminates VBZ eliminating VBG elimination NN eliminations NNS elite NN elites NNS elitist JJ elitists NNS elixir NN elk NNS ell NN ellipses NNS ellipsis NN ellipsoid NN ellipsoids NNS elliptical JJ elm NN elms NNS elongate VB elongated VBN elongation NN eloped VBD eloquence NN eloquent JJ eloquently RB else RB elsewhere RB elswehere NN eluate NN eluates NNS elucidated VBN elucidation NN elucidations NNS elucidative JJ eluded VBD eludes VBZ eluding VBG elusive JJ elusiveness NN eluted VBN elution NN em PRP emaciated VBN email NN emanated VBD emanating VBG emanation NN emanations NNS emancipate VB emancipated VBN emancipation NN emasculate VB emasculated VBD emasculation NN embalmers NNS embalming NN embankment NN embargo NN embargoed JJ embargoes NNS embargos NNS embark VB embarked VBD embarking VBG embarks VBZ embarrass VB embarrassed VBN embarrassing JJ embarrassingly RB embarrassment NN embarrassments NNS embassies NNS embassy NN embattled JJ embedded VBN embellish VB embellished VBN embezzle VB embezzled VBD embezzlement NN embezzler NN embezzling VBG embittered VBN emblazoned VBN emblem NN emblematic JJ emblems NNS embodied VBN embodies VBZ embodiment NN embodiments NNS embody VBP embodying VBG emboldened VBN embolisms NNS embossed VBD embouchure NN embrace VB embraced VBN embraces VBZ embracing VBG embroider VBP embroidered VBN embroideries NNS embroidery NN embroiled VBN embryo NN embryonic JJ embryos NNS emcee NN emerald JJ emeralds NNS emerge VB emerged VBD emergence NN emergencies NNS emergency NN emergency-cash NN emergency-claims NNS emergency-medical JJ emergency-relief NN emergency-room NN emergency. NN emergent JJ emerges VBZ emerging VBG emerging-growth NN emeriti FW emeritus NN emigrants NNS emigrate VB emigrated VBD emigrating VBG emigration NN emigration-related JJ emigrations NNS emigre NN emigres NNS eminence NN eminences NNS eminent JJ eminently RB emissaries NNS emissary NN emission NN emission-control JJ emissions NNS emit VB emits VBZ emitted VBN emitting VBG emote VB emoted VBD emotion NN emotional JJ emotionalism NN emotionality NN emotionally RB emotions NNS empathetic JJ empathize VB empathy NN emperor NN emperors NNS emphases NNS emphasis NN emphasize VB emphasized VBD emphasizes VBZ emphasizing VBG emphatic JJ emphatically RB emphaticize VB emphysema NN emphysematous JJ empire NN empires NNS empirical JJ empirically RB empiricism NN employ VB employe NN employed VBN employee NN employee-benefit JJ employee-benefits JJ employee-bonus JJ employee-contributed JJ employee-health NN employee-incentive NN employee-management JJ employee-owned JJ employee-ownership JJ employee-stock JJ employees NNS employer NN employer-offered JJ employer-paid JJ employer-provided JJ employer-sponsored JJ employerpaid JJ employers NNS employes NNS employing VBG employment NN employment-services JJ employment-tax JJ employments NNS employs VBZ empower VBP empowered VBN empowering VBG empowerment NN empowers VBZ emptied VBN emptier JJR empties VBZ emptiness NN empty JJ empty-handed JJ empty-shelved JJ emptying VBG emulate VB emulated VBN emulating VBG emulator NN emulsified VBN emulsifiers NNS emulsion NN en IN enable VB enabled VBD enables VBZ enabling VBG enact VB enacted VBN enacting VBG enactment NN enactments NNS enacts VBZ enamel NN enameling NN enamelled JJ enamels NNS enamored JJ encamp VB encamped VBN encampment NN encapsulate VB encased VBD encasing VBG encephalitis NN encephalographic JJ enchained VBN enchant VB enchanted VBN enchanting JJ enchantingly RB enchantment NN enciphered VBN encircle VB encircled VBD encircles VBZ encircling VBG enclave NN enclaves NNS enclosed VBN encloses VBZ enclosing VBG enclosure NN enclosures NNS encoded VBN encoder NN encomiums NNS encompass VB encompassed VBN encompasses VBZ encompassing VBG encore NN encores NNS encounter NN encountered VBN encountering VBG encounters NNS encourage VB encouraged VBN encouragement NN encourages VBZ encouraging VBG encouragingly RB encroach VB encroached VBD encroaching VBG encroachment NN encrusted VBN encrypting VBG encumber VB encumbered VBN encumbrance NN encumbrances NNS encyclopedia NN encyclopedias NNS encyclopedic JJ encylopedia NN end NN end-of-model-year JJ end-of-school JJ end-of-season JJ end-of-the-quarter JJ end-of-the-season JJ end-of-the-year JJ end-of-year JJ end-product NN end-run NN end-tailed VBN end-to-end JJ end-use JJ end-user NN end-zone NN endanger VB endangered VBN endangered-species NNS endangering VBG endangerment NN endeared VBD endearing JJ endearment NN endearments NNS endeavor NN endeavored VBD endeavoring VBG endeavors NNS endeavour NN endeavours NNS ended VBD ended... : endemic JJ endevor NN ending VBG endings NNS endless JJ endlessly RB endocrine JJ endocrinologists NNS endogamous JJ endogamy NN endogenous JJ endometriosis NN endorse VB endorsed VBN endorsement NN endorsements NNS endorsers NNS endorses VBZ endorsing VBG endosperm NN endothelial JJ endothermic JJ endotoxin NN endotoxins NNS endow VB endowed VBN endowment NN endowments NNS endows VBZ endpoints NNS endrocrine JJ ends NNS endurable JJ endurance NN endure VB endured VBD endures VBZ enduring VBG enduringly RB enemies NNS enemy NN enemy-Jew NN energetic JJ energetically RB energies NNS energize VB energized VBN energizes VBZ energizing VBG energy NN energy-adjusted JJ energy-cogeneration NN energy-efficient JJ energy-hungry JJ energy-industry NN energy-producing JJ energy-services NNS enervating VBG enervation NN enfant FW enflamed VBN enforce VB enforceable JJ enforced VBN enforcement NN enforcer NN enforcers NNS enforces VBZ enforcing VBG engage VB engaged VBN engagement NN engagements NNS engages NNS engaging VBG engagingly RB engender VB engendered VBN engenders VBZ engine NN engine-assembly NN engine-casting NN engine... : engineer NN engineered VBN engineering NN engineering-design JJ engineering-management JJ engineering-services NNS engineers NNS engineless JJ engines NNS english NNP engorged VBN engorgement NN engrave VB engraved VBN engraver NN engraves VBZ engraving NN engravings NNS engrossed JJ engrossing JJ engulf VB engulfed VBN engulfing VBG engulfs VBZ enhance VB enhanced VBN enhancement NN enhancements NNS enhances VBZ enhancing VBG enigma NN enigmatic JJ enjoin VB enjoinder NN enjoined VBN enjoining VBG enjoy VB enjoyable JJ enjoyed VBD enjoying VBG enjoyment NN enjoys VBZ enlargd VBN enlarge VB enlarged VBN enlargement NN enlargements NNS enlargers NNS enlarges VBZ enlarging VBG enlighten VB enlightened JJ enlightening VBG enlightenment NN enlist VB enlisted VBD enlisting VBG enlistment NN enlists VBZ enliven VBP enlivened VBN enlivening VBG enmeshed VBN enmities NNS enmity NN ennui NN ennumerated VBD enny JJ enormity NN enormous JJ enormously RB enough RB enoxacin NN enquetes FW enquired VBD enrage NN enraged JJ enraptured VBD enrich VB enriched VBN enriches VBZ enriching VBG enrichment NN enroll VB enrolled VBN enrollees NNS enrolling NN enrollment NN enrollments NNS enroute RB ensconced VBN ensemble NN ensembles NNS enshrined VBN enshrouding VBG enshrouds VBZ enslave VBP enslaved VBN enslavement NN enslaving NN ensnare VB ensnared VBN ensnarled VBN ensue VB ensued VBD ensues VBZ ensuing VBG ensure VB ensured VBD ensures VBZ ensuring VBG entail VB entailed VBD entailing VBG entails VBZ entangled JJ entanglement NN entanglements NNS enter VB entered VBD entering VBG enterotoxemia NN enterprise NN enterprises NNS enterprising JJ enterprisingly RB enters VBZ entertain VB entertained VBN entertainer NN entertainers NNS entertaining VBG entertainment NN entertainment-industry NN entertainment-law NN entertainments NNS entertains VBZ enterteyned VBD enthalpy NN enthralled JJ enthralling JJ enthrones VBZ enthuses VBZ enthusiam NN enthusiasm NN enthusiasms NNS enthusiast NN enthusiastic JJ enthusiastically RB enthusiasts NNS entice VB enticed VBD enticements NNS enticing VBG enticingly RB entire JJ entirely RB entirety NN entities NNS entitle VB entitled VBN entitlement NN entitlements NNS entitles VBZ entitling VBG entity NN entombed VBN entomologist NN entourage NN entractes NNS entrance NN entranced VBN entrances NNS entranceway NN entrant NN entrants NNS entrapment NN entre NN entreat VB entreated VBD entreaties NNS entree NN entrench VB entrenched VBN entrenchment NN entrepreneur NN entrepreneurial JJ entrepreneurism NN entrepreneurs NNS entrepreneurship NN entries NNS entropy NN entropy-increasing JJ entrust VB entrusted VBN entrusting VBG entry NN entry-level JJ entry-limit JJ entry-limited JJ entry-limiting JJ entry-price JJ entwined VBN enumerated VBN enumeration NN enunciate VB enunciated VBD enunciating VBG enunciation NN envelope NN enveloped VBN envelopes NNS enveloping VBG envenomed VBN enviable JJ enviably RB envied VBD envious JJ enviously RB enviroment NN environing VBG environment NN environmental JJ environmental-impact JJ environmental-services NNS environmentalism NN environmentalist NN environmentalist-actor NN environmentalist-developer JJ environmentalists NNS environmentally RB environments NNS environs NNS envisage VB envisaged VBD envisages VBZ envision VBP envisioned VBD envisioning VBG envisions VBZ envoy NN envoys NNS envy NN envy-quotient NN enzymatic JJ enzyme NN enzyme-like JJ enzymes NNS eons NNS eosinophilic JJ epaulets NNS ephemeral JJ epic NN epicenter NN epics NNS epicure NN epicurean NN epicycle NN epicycles NNS epicyclical JJ epicyclically RB epidemic NN epidemics NNS epidemiologic JJ epidemiological JJ epidemiologist NN epidemiologists NNS epidermis NN epigenetic JJ epigrammatic JJ epigrams NNS epigraph NN epilepsy NN epileptic JJ epileptics NNS epilogue NN epiphany NN epiphyseal-diaphyseal JJ epiphysis NN episode NN episodes NNS episodic JJ epistemology NN epistolatory JJ epitaph NN epithet NN epithets NNS epitome NN epitomize VB epitomized VBN epitomizes VBZ epoch NN epoch-making JJ epochal JJ epoxy JJ epsiode NN epsom NN eqn. NN eqns. NN equal JJ equal-opportunity NN equaled VBD equaling VBG equality NN equalization NN equalize VB equalizer NN equalizers NNS equalizing NN equalled VBN equally RB equals VBZ equanimity NN equate VB equated VBN equates VBZ equating VBG equation NN equations NNS equator NN equatorial JJ equestrian JJ equestrians NNS equidistant JJ equidistantly RB equilibrated VBN equilibrium NN equilibriums NNS equiment NN equine NN equines NNS equip VB equipment NN equipment-leasing JJ equipment-packed JJ equipmwent-leasing NN equipotent JJ equipped VBN equipping VBG equips VBZ equitable JJ equitably RB equities NNS equity NN equity-like JJ equity-purchase JJ equity-to-asset NN equityholders NNS equivalence NN equivalent NN equivalent-choice JJ equivalents NNS equivocal JJ equivocating NN er UH era NN eradicate VB eradicated VBN eradicating VBG eradication NN eras NNS erasable JJ erase VB erased VBN eraser NN eraser-fitted JJ erasers NNS erases VBZ erasing VBG erasures NNS erawhere NN ere IN erect VB erected VBN erecting VBG erection NN erects VBZ erembal NNP ergonomics NNS ergotropic JJ erned VBD erode VB eroded VBN erodes VBZ eroding VBG eromonga FW erosion NN erotic JJ erotica NNS erotically RB err VBP errand NN errant JJ errata NNS erratic JJ erratically RB erred VBN erroneous JJ erroneously RB error NN error-free JJ error-laden JJ error-prone JJ errors NNS errs VBZ ersatz JJ erstwhile JJ erudite JJ erudition NN erupt VB erupted VBD erupting VBG eruption NN erupts VBZ erysipelas NN erythroid NN erythropoietin NN escalate VB escalated VBN escalating VBG escalation NN escalators NNS escapade NN escapades NNS escape VB escaped VBD escapees NNS escapes NNS escaping VBG escapist JJ escheat NN eschew VB eschewed VBN eschewing VBG eschews VBZ escort NN escorted VBD escorting VBG escorts VBZ escritoire NN escrow NN escrowed VBN escudo NN escutcheon NN escutcheons NNS esophagus NN esoteric JJ esoterica NNS especially RB espionage NN esplanade NN espousal NN espouse VBP espoused VBD espouses VBZ espousing VBG espresso NN esprit FW essay NN essayed VBD essayish JJ essayist NN essayists NNS essays NNS esse FW essence NN essences NNS essential JJ essential... : essentially RB essentials NNS est FW establish VB established VBN establishes VBZ establishing VBG establishment NN establishments NNS establshed VBN estancia NN estancias NNS estanciero NN estancieros NNS estate NN estate-freeze JJ estate-tax JJ estate... : estates NNS esteem NN esteemed VBD esterases NNS esters NNS esthetic JJ esthetics NNS estimable JJ estimate NN estimated VBN estimates NNS estimating VBG estimation NN estimators NNS estragole NN estranged VBN estrangement NN estranging JJ estrogen NN estrogen-replacement NN estuarian NN estuaries NNS estuary NN et FW etc FW etc. FW etcetera NN etch VB etched VBD etching NN eternal JJ eternally RB eternity NN etes FW ethane NN ethanol NN ethanol-based JJ ethanol-powered JJ ether NN ethereal JJ ethers NNS ethic NN ethical JJ ethically RB ethicist NN ethicists NNS ethics NNS ethics-related JJ ethnic JJ ethnically RB ethnicity NN ethnography NN ethos NN ethyl NN ethylene NN etiquette NN etymological JJ etymology NN eucalyptus NN eugenic JJ eulogize VB eulogized VBD eulogizers NNS eulogy NN euphemism NN euphemisms NNS euphoria NN euphoric JJ eutectic NN eva NN evacuant NN evacuate VB evacuated VBN evacuation NN evade VB evaded VBN evader NN evaders NNS evades VBZ evading VBG evaluate VB evaluated VBN evaluates VBZ evaluating VBG evaluation NN evaluations NNS evaluative JJ evangelical JJ evangelicals NNS evangelism NN evangelist NN evangelist-industrialist NN evangelists NNS evaporate VB evaporated VBD evaporates VBZ evaporation NN evaporative JJ evasion NN evasions NNS evasive JJ eve NN even RB even-handed JJ even-larger JJ even-tempered JJ evened VBN evenhanded JJ evening NN evenings NNS evenly RB evens VBZ evensong NN event NN event-driven JJ event-risk JJ eventful JJ eventfully RB events NNS eventshah-leh RB eventshahleh RB eventual JJ eventualities NNS eventuality NN eventually RB eventuate VBP evenutally RB ever RB ever'body NN ever-anxious JJ ever-changing JJ ever-dying JJ ever-existent JJ ever-expanding JJ ever-faster JJ ever-greater JJ ever-growing JJ ever-higher JJ ever-increasing JJ ever-lovin JJ ever-more JJ ever-narrowing JJ ever-optimistic JJ ever-present JJ ever-quieter JJ ever-so-Oxonian JJ ever-successful JJ ever-swelling JJ ever-tightening JJ ever-vigilant JJ ever-worsening JJ evergreen NN evergreens NNS everlasting JJ everlastingly RB evermounting VBG eversteadier JJ every DT every-day JJ everybody NN everyday JJ everyone NN everyone... : everything NN everywhere RB evict VB evicted VBN evicting VBG evidence NN evidence... : evidenced VBN evidences NNS evidencing VBG evident JJ evidential JJ evidently RB evil JJ evil-but-cute JJ evil-doers NNS evil-doing NN evil-looking JJ evil-minded JJ evildoers NNS evils NNS evinced VBN eviscerate VB eviscerating VBG evocation NN evocations NNS evocative JJ evoke VB evoked VBN evokes VBZ evoking VBG evolution NN evolutionary JJ evolutionists NNS evolve VB evolved VBN evolves VBZ evolving VBG ewww UH ex FW ex-Attorney NNP ex-Beecham JJ ex-Communist JJ ex-Cubs NNS ex-FDA JJ ex-Gov NNP ex-House JJ ex-Justice NN ex-Marine NN ex-Mrs JJ|NP ex-National JJ ex-President NNP ex-Tory NN ex-Yankee NN ex-accountant NN ex-aides NNS ex-bandits NNS ex-brother-in-law NN ex-chairman NN ex-chief JJ ex-convict NN ex-convicts NNS ex-dividend JJ ex-employee NN ex-employees NNS ex-employer NN ex-fighter NN ex-franchise NN ex-furniture JJ ex-gambler NN ex-housing JJ ex-hurler NN ex-husband NN ex-investment JJ ex-jazz JJ ex-lawyer NN ex-liberals NNS ex-manager NN ex-marine NN ex-mayor NN ex-member NN ex-musician NN ex-officers NNS ex-officio JJ ex-partners NNS ex-player NN ex-president NN ex-presidents NNS ex-prison NN ex-prize JJ ex-reporters NNS ex-schoolteacher NN ex-singer NN ex-smokers NNS ex-truck JJ ex-trucking JJ ex-wife NN ex-wives NNS exacerbate VB exacerbated VBN exacerbates VBZ exacerbating VBG exacerbation NN exacerbations NNS exachanges NNS exact JJ exacted VBD exacting JJ exactly RB exacts VBZ exaggerate VB exaggerated VBN exaggerating VBG exaggeration NN exaggerations NNS exalt VBP exaltation NN exaltations NNS exalted JJ exalting VBG exam NN examiantion NN examination NN examinations NNS examine VB examined VBD examiner NN examiners NNS examines VBZ examinin VBG examining VBG example NN examples NNS exams NNS exasperate VB exasperated JJ exasperating VBG exasperatingly RB exasperation NN excavate VB excavated VBN excavating VBG excavation NN excavations NNS excavator NN excavators NNS exceed VB exceeded VBD exceeding VBG exceedingly RB exceeds VBZ excel VBP excelled VBD excellence NN excellences NNS excellent JJ excellently RB excelling VBG excels VBZ excelsin NN excelsior NN except IN excepting VBG exception NN exceptional JJ exceptionally RB exceptions NNS excerpt NN excerpts NNS excess JJ excesses NNS excessive JJ excessively RB exchange NN exchange-listed JJ exchange-rate NN exchangeable JJ exchanged VBN exchanger NN exchangers NNS exchanges NNS exchanging VBG exchequer NN excise NN excised VBD excision NN excitability NN excitatory JJ excite VB excited VBN excitedly RB excitement NN excitements NNS exciter NN excites VBZ exciting JJ exclaim VB exclaimed VBD exclaiming VBG exclaims VBZ exclamation NN exclamations NNS exclude VB excluded VBN excludes VBZ excluding VBG exclusion NN exclusionary JJ exclusions NNS exclusive JJ exclusively RB exclusiveness NN exclusivity NN excommunicated VBN excorciate VB excoriate VB excoriated VBD excoriating VBG excrement NN excrete VB excreted VBN excretion NN excretory JJ excruciating JJ excrutiatingly RB excursion NN excursions NNS excursus NN excusable JJ excuse NN excused VBN excuses NNS excutives NNS exec NN execs NNS execuitive NN execute VB executed VBN executes VBZ executing VBG execution NN executioner NN executions NNS executive NN executive-branch JJ executive-legislative JJ executive-level JJ executive-model JJ executive-office NN executive-only JJ executive-type NN executives NNS executor NN executors NNS exegesis NN exemplar NN exemplary JJ exemplified VBN exemplifies VBZ exemplify VBP exempt JJ exempted VBN exempting VBG exemption NN exemptions NNS exempts VBZ exercisable JJ exercise NN exercised VBN exercises NNS exercising VBG exerpts NNS exert VB exerted VBN exerting VBG exertion NN exertions NNS exerts VBZ exeuctive NN exhaled VBD exhaling VBG exhanges NNS exhaust NN exhausted VBN exhaustible JJ exhausting VBG exhaustingly RB exhaustion NN exhaustive JJ exhaustively RB exhausts NNS exhibit NN exhibited VBN exhibiting VBG exhibition NN exhibitions NNS exhibitors NNS exhibits NNS exhilarated VBN exhilarating JJ exhilaration NN exhort VB exhortations NNS exhorting VBG exhorts VBZ exhumations NNS exhume VB exhusband NN exigencies NNS exile NN exile\/trade NN exiled VBN exiles NNS exiling VBG exist VB existance NN existed VBD existence NN existent JJ existential JJ existentialist NN existing VBG exists VBZ exit NN exit-load JJ exit-poll JJ exit-visa JJ exited VBD exiting VBG exits NNS exluding VBG exodus NN exogamous JJ exogamy NN exonerate VB exonerated VBN exonerating VBG exoneration NN exorbitant JJ exorcise VB exorcism NN exorcisms NNS exorcist NN exothermic JJ exotic JJ exotic-Hawaiian-locale JJ expand VB expandable JJ expanded VBN expanding VBG expanding-profit JJ expands VBZ expanse NN expansion NN expansion-contraction NN expansion-minded JJ expansionary JJ expansionism NN expansionist JJ expansionists NNS expansions NNS expansive JJ expansively RB expansiveness NN expatriate JJ expatriates NNS expecially RB expect VBP expectable JJ expectancies NNS expectancy NN expectant JJ expectantly RB expectation NN expectations NNS expected VBN expectedly RB expecting VBG expects VBZ expediency NN expedient JJ expediently RB expedients NNS expedite VB expedited VBN expediting VBG expedition NN expeditions NNS expeditious JJ expeditiously RB expel VB expelled VBN expelling VBG expend VB expendable JJ expended VBN expenditure NN expenditures NNS expends VBZ expense NN expense-account NN expense-paid JJ expense-reducing JJ expenses NNS expensive JJ expensive-to-produce JJ experience NN experience-oriented JJ experienced VBN experiences NNS experiencing VBG experiential JJ experientially RB experiment NN experimental JJ experimental-theater JJ experimentalism NN experimentally RB experimentation NN experimentations NNS experimented VBD experimenter NN experimenters NNS experimenting VBG experiments NNS expert NN expertise NN expertly RB experts NNS expiating VBG expiation NN expiration NN expiration-related JJ expirations NNS expire VB expired VBD expires VBZ expiring VBG explain VB explained VBD explaining VBG explains VBZ explains. VBZ explanation NN explanations NNS explanatory JJ expletive NN explicable JJ explicit JJ explicit. JJ explicitly RB explicitness NN explicity NN explictly RB explode VB exploded VBD explodes VBZ exploding VBG exploding-wire JJ exploit VB exploitation NN exploitative JJ exploited VBN exploiter NN exploiters NNS exploiting VBG exploits NNS exploration NN explorations NNS exploratory JJ explore VB explored VBN explorer NN explorers NNS explores VBZ exploring VBG explosion NN explosions NNS explosive JJ explosively RB explosives NNS explusion NN expo NN exponential JJ exponentially RB exponents NNS export NN export-applications NNS export-boosting JJ export-bound JJ export-control JJ export-driven JJ export-license JJ export-oriented JJ export-promotion JJ export-related JJ export-subsidy NN exported VBN exporter NN exporters NNS exporting VBG exports NNS expose VB exposed VBN exposes VBZ exposing VBG exposited VBN exposition NN expositions NNS expository JJ exposure NN exposure-time NN exposure... : exposures NNS expounded VBD expounding VBG express VB express-delivery NN express... : expressed VBN expresses VBZ expressible JJ expressing VBG expression NN expressionism NN expressionist NN expressionistic JJ expressionists NNS expressionless JJ expressions NNS expressive JJ expressiveness NN expressivness NN expressly RB expressway NN expropriated JJ expulsion NN expunge VB expunged VBN expunging NN expurgation NN exquisite JJ exquisitely RB exquisiteness NN extant JJ extempore RB extemporize VB extend VB extended VBN extended-body JJ extended-care JJ extended-payment NN extended-range JJ extended-wear JJ extendible JJ extendibles NNS extending VBG extends VBZ extension NN extensions NNS extensive JJ extensively RB extent NN extenuate VB extenuating VBG exterior JJ exteriors NNS exterminate VB exterminated VBN exterminating VBG extermination NN exterminator NN extern NN external JJ external-trade JJ externalization NN externally RB extinct JJ extinction NN extinguish VB extinguished VBN extinguisher NN extinguishers NNS extinguishment NN extirpated VBN extirpating VBG extolled VBD extolling VBG extols VBZ extort VB extorted VBD extorting VBG extortion NN extortionate JJ extra JJ extra-caffeine JJ extra-curricular JJ extra-high JJ extra-literary JJ extra-musical JJ extra-nasty JJ extra-sensory JJ extra-thick JJ extract VB extracted VBN extracting VBG extraction NN extractor NN extractors NNS extracts NNS extracurricular JJ extradite VB extradited VBN extraditing VBG extradition NN extraditions NNS extralegal JJ extramarital JJ extramural JJ extraneous JJ extraneousness NN extraordinarily RB extraordinary JJ extraordinary... : extrapolate VB extrapolated VBN extrapolates VBZ extrapolation NN extrapolations NNS extras NNS extraterrestrial JJ extraterrestrials NNS extraterritorial JJ extravagance NN extravagant JJ extravagantly RB extravaganza NN extravaganzas NNS extrema NNS extreme JJ extremely RB extremes NNS extremis FW extremist JJ extremists NNS extremities NNS extremity NN extricate VB extrovert NN extruded VBN extruder NN extruding VBG extrusion NN extrusions NNS exuberance NN exuberant JJ exuberantly RB exude VBP exuded VBD exultantly RB exultation NN exulted VBD exults VBZ eyd VBN eye NN eye-beamings NNS eye-blink NN eye-catching JJ eye-deceiving NN eye-filling JJ eye-gouging NN eye-machine NN eye-popping JJ eye-strain NN eye-to-eye JJ eye-undeceiving NN eyeball NN eyeballing VBG eyeballs NNS eyebrow NN eyebrows NNS eyed VBD eyeful NN eyeglasses NNS eyeing VBG eyelashes NNS eyelets NNS eyelid NN eyelids NNS eyepiece NN eyes NNS eyesight NN eyesore NN eyeteeth NNS eyewear JJ eyewitness NN eyewitnesses NNS eying VBG f NN f'ovuh VB f'r IN f-As IN f-Includes VBZ f-plane NN f.o.b JJ fAs NNP fable NN fabled JJ fables NNS fabric NN fabricate VB fabricated VBN fabricates VBZ fabricating VBG fabrication NN fabrications NNS fabricator NN fabricators NNS fabrics NNS fabulations NNS fabulous JJ fabulously RB facade NN facaded VBN facades NNS face NN face-amount JJ face-lifting NN face-off NN face-saving JJ face-to-face JJ face-to-wall RB faced VBN faceless JJ facelift NN facelifts NNS faces VBZ facet NN facet-plane NN facet-planes NNS facetious JJ facetiously RB facets NNS facial JJ facile JJ facilitate VB facilitated VBN facilitates VBZ facilitating VBG facilitators NNS facilites NNS facilities NNS facility NN facing VBG facings NNS faciunt FW facsimile NN facsimiles NNS facsiport NN fact NN fact-bound JJ fact-finder NN fact-finding JJ faction NN factions NNS facto FW factor NN factored VBN factories NNS factoring NN factors NNS factory NN factory-automation NN factory-jobs NNS factory-like JJ factory-modernization NN factory-outlet JJ facts NNS factual JJ factually RB faculties NNS faculty NN faculty-hiring JJ fad NN faddish JJ fade VB fade-in JJ faded VBN fadeout NN fades NNS fading VBG fads NNS faery NN faier RB fail VB fail-safe JJ failed VBD failing VBG failings NNS fails VBZ failure NN failure-to-supervise JJ failures NNS faim FW faint JJ fainted VBD fainter JJR faintest JJS fainting NN faintly RB fair JJ fair-looking JJ fair-market JJ fair-sized JJ fair-trade-related JJ fair-use JJ fair-weather JJ fairer JJR faires NNS fairest JJS fairgoers NNS fairies NNS fairing NN fairly RB fairness NN fairs NNS fairway NN fairways NNS fairy JJ fairy-land NN fairy-tale NN fait NN faith NN faithful JJ faithfully RB faiths NNS fajitas NNS fake JJ faked VBN faker NN fakes NNS faking VBG falcon NN falconers NNS falconry NN falcons NNS fall NN fall-off NN fall-outs NNS fallacious JJ fallacy NN fallback NN fallen VBN fallible JJ falling VBG falloff NN fallout NN fallow JJ falls VBZ false JJ false-fronted JJ falsehood NN falsehoods NNS falsely RB falseness NN falsification NN falsified VBN falsify VB falsifying VBG falsity NN falter VB faltered VBD faltering VBG falters VBZ fame NN famed JJ fames NNS familar JJ familarity NN familial JJ familiar JJ familiarity NN familiarization NN familiarize VB familiarly RB familiarness NN families NNS familistical JJ famille FW family NN family-business NN family-centered JJ family-community NN family-entertainment JJ family-oriented JJ family-owned JJ family-planning JJ family-run JJ family-welfare NN famine NN famine-relief NN famines NNS famous JJ famously RB fan NN fanatic NN fanatical JJ fanatically RB fanaticism NN fanatics NNS fancied VBD fancier JJR fancies VBZ fanciest JJS fanciful JJ fancifully RB fancy JJ fancy'shvartzer NN fancy-free JJ fancying VBG fanfare NN fangs NNS fanned VBD fanning VBG fanny NN fans NNS fantasia NN fantasies NNS fantasist NN fantasize VBP fantasized VBN fantastic JJ fantastically RB fantasy NN fantods NNS far RB far-afield JJ far-away JJ far-famed JJ far-fetched JJ far-flung JJ far-from-conciliatory JJ far-left JJ far-lower JJR far-off JJ far-out JJ far-ranging JJ far-reaching JJ far-right JJ far-sighted JJ faraway JJ farce NN farces NNS fare NN fared VBD fares NNS farewell NN farfetched JJ farflung NN faring VBG farm NN farm-engineering NN farm-equipment NN farm-policy NN farm-product NN farm-state NNP farm-subsidy NN farm-supply JJ farm-trade JJ farmed VBD farmer NN farmer-type JJ farmers NNS farmhands NNS farmhouse NN farmhouses NNS farming NN farmland NN farmlands NNS farms NNS farmsteads NNS farmwives NNS faro NN farrowings NNS farther RB farthest JJS fascicles NNS fasciculations NNS fascimile-machine NN fascinate VB fascinated VBN fascinates VBZ fascinating JJ fascinatingly RB fascination NN fascism NN fascist JJ fascists NNS fashion NN fashionable JJ fashioned VBN fashioning VBG fashions NNS fast RB fast-acting JJ fast-approaching JJ fast-closing JJ fast-cut JJ fast-developing JJ fast-firing JJ fast-food NN fast-forward JJ fast-frozen JJ fast-grossing JJ fast-growing JJ fast-moving JJ fast-opening JJ fast-paced JJ fast-rising JJ fast-selling JJ fast-shrinking JJ fast-spreading JJ fast-talking JJ fast-track JJ fast-vanishing JJ fastball NN fastballs NNS fasten VB fastened VBN fastener NN fasteners NNS fastening NN fastenings NNS fastens VBZ faster RBR faster-growing JJR faster-spending JJ faster-working JJR fastest JJS fastest-growing JJ fastidious JJ fastigheter FW fastness NN fat JJ fat-free JJ fat-soluble JJ fat-substitute JJ fat-tired JJ fatal JJ fatalists NNS fatalities NNS fatality NN fatally RB fatboy NN fate NN fateful JJ fates NNS father NN father-and-son JJ father-brother NN father-confessor NN father-in-law NN father-murder NN father-son NN fathered VBD fatherly JJ fathers NNS fathom VB fathoms NNS fathuh NN fatiegued JJ fatigue NN fatigued VBN fatigues NNS fats NNS fatsos NNS fatten VB fattened VBN fattening VBG fatter JJR fatty JJ fatuous JJ faucet NN fault NN fault-tolerant JJ faulted VBN faulting VBG faultless JJ faultlessly RB faultlines NNS faults NNS faulty JJ fauna NNS fauteuil FW faux FW fav JJ favor NN favorable JJ favorableness NN favorably RB favore FW favored VBN favorer NN favoring VBG favorite JJ favorited VBD favorites NNS favoritism NN favors VBZ favour NN fawn NN fawn-colored JJ fawned VBN fawning JJ fax NN faxed VBD faxes NNS faxing VBG faze VB fazed VBD fealty NN fear NN fear-filled JJ feare NN feared VBD fearful JJ fearfully RB fearing VBG fearlast NN fearless JJ fearlessly RB fears NNS fearsome JJ feasibility NN feasible JJ feast NN feasted VBN feasting VBG feasts NNS feat NN feather NN feather-bedding NN feather-like JJ featherbedding NN feathered JJ featherless JJ feathers NNS feathery JJ feats NNS feature NN featured VBN featureless JJ features NNS featuring VBG febrile JJ fecal JJ feckless JJ fecund JJ fecundity NN fed VBN federal JJ federal-corporate JJ federal-court JJ federal-formula JJ federal-funds JJ federal-local JJ federal-question JJ federal-right JJ federal-state JJ federal-state-local JJ federal-systems JJ federalism NN federalist NN federalists NNS federalize VB federalized JJ federally RB federation NN fedora NN feds NNS fee NN fee-for-service JJ fee-forfeiture NN fee-per-case JJ fee-per-day NN fee-producing JJ fee-related JJ fee-shifting JJ feeble JJ feeblest JJS feebly RB feed NN feed-grain NN feed-lot JJ feedback NN feeder NN feeders NNS feeding VBG feeding-pain JJ feedings NNS feedlot NN feedlots NNS feeds VBZ feedstock NN feel VB feel-good JJ feelers NNS feeling NN feeling-state NN feelings NNS feels VBZ fees NNS feet NNS feigned JJ feigning VBG feint NN feistier JJR feistiness NN feisty JJ feler NN felicities NNS felicitous JJ felicity NN feline JJ fell VBD fella NN fellas NNS felled VBN feller NN fellers NNS felling VBG fellow NN fellow-countryman NN fellow-craftsmen NNS fellow-creatures NN fellow-employees NNS fellow-men NNS fellowfeeling NN fellows NNS fellowship NN fellowships NNS felon NN felonies NNS felonious JJ felons NNS felony NN felt VBD female JJ female-dominated JJ female-headed JJ females NNS feminine JJ feminine-care JJ femininity NN feminism NN feminist JJ feminists NNS femme FW fence NN fence-line JJ fence-sit VB fenced JJ fenced-in JJ fences NNS fencing NN fend VB fended VBD fender NN fender-benders NNS fenders NNS fending VBG fennel NN fenoldopam NN fens NNS fenugreek NN fer IN ferment NN fermentation JJ fermentations NNS fermented VBN fermenting VBG fermions NNS fern NN fern-like JJ fernery NN ferns NNS ferocious JJ ferociously RB ferocity NN ferret VB ferreted VBD ferreting VBG ferrets VBZ ferried VBD ferries NNS ferris JJ ferroelectric JJ ferromagnetic JJ ferry NN ferrying VBG fertile JJ fertility NN fertility-control JJ fertilization NN fertilizations NNS fertilized VBN fertilizer NN fertilizers NNS fertilizing VBG fervent JJ fervente NNP fervently RB fervid NN fervor NN fervors NNS fess NN fest NN fester VB festering VBG festival NN festival-oriented JJ festivals NNS festive JJ festivities NNS festivity NN festivus FW festooned VBN festooning VBG fetal JJ fetal-alcohol JJ fetal-protection JJ fetal-tissue JJ fetal-vulnerability JJ fetch VB fetched VBD fetches VBZ fetching VBG fetchingly RB fete VB feted VBD fetes NNS fetid JJ fetish NN fetishize VBP fettered VBN fetus NN fetuses NNS feud NN feudal JJ feudalism NN feudalistic JJ feuded VBD feuding VBG feuds NNS fever NN fevered JJ feverish JJ feverishly RB fevers NNS few JJ fewer JJR fewer-than-expected JJ fewest JJS fez-wearing JJ ffreind VB fiance NN fiancee NN fiasco NN fiat NN fiber NN fiber-coupled JJ fiber-end JJ fiber-optic JJ fiber-optics NN fiber-photocathode NN fiber-producing JJ fiber-reinforced JJ fiber-related JJ fiberglas NNS fiberglass NNS fiberoptic JJ fibers NNS fibrillation NN fibrin NN fibrocalcific JJ fibrosis NN fibrous JJ fiche FW ficials NNS fickle JJ fickleness NN fiction NN fiction-writer NN fiction-writing NN fictional JJ fictionalized VBN fictions NNS fictitious JJ fictive JJ ficus NN fiddle NN fiddling NN fide FW fidelity NN fidgeting VBG fiduciary JJ fiefdom NN fiefdoms NNS field NN field'just NN field-based JJ field-crop-seeds JJ field-flattening JJ field-hands NN field-officials NNS field-sequential JJ field-service JJ field-services JJ fielded VBD fielder NN fielders NNS fielding NN fieldmice NN fields NNS fieldstone NN fieldwork NN fiend NN fiendish JJ fierce JJ fiercely RB fierceness NN fiercer JJR fiercest JJS fiery JJ fiesta NN fifteen CD fifteen-mile JJ fifteen-minute JJ fifteen-sixteenths NNS fifteenfold RB fifteenth JJ fifteenth-century JJ fifth JJ fifth-best JJ fifth-biggest JJ fifth-century JJ fifth-consecutive JJ fifth-generation JJ fifth-grade NN fifth-highest JJ fifth-inning NN fifth-largest JJ fifth-least JJ fifth-straight JJ fifties NNS fiftieth JJ fifty CD fifty-cent JJ fifty-dollar JJ fifty-fifty JJ fifty-five CD fifty-four CD fifty-nine CD fifty-ninth JJ fifty-odd JJ fifty-one CD fifty-pound JJ fifty-third CD fifty-three CD fifty-two CD fifty-year JJ fig NN fig. NN figger VBP figgered VBD fight NN fighter NN fighter-bombers NNS fighter-jet NN fighter-plane NN fighters NNS fightin VBG fighting VBG fights NNS figment NN figs. NNS figural JJ figurative JJ figuratively RB figure NN figured VBD figurehead NN figures NNS figures-order NNS|NN figuring VBG filagree NN filament NN filaments NNS filbert JJ filberts NNS filched VBD filde VBN file VB file-those NN filed VBN filers NNS files NNS filet NN filets NNS filial JJ filibuster NN filibusters NNS filigree JJ filing NN filings NNS fill VB fill-in JJ fill-in-your-favorite-epithet JJ fill-ins NNS fill-or-kill JJ fille FW filled VBN filler NN filles FW filleted VBN fillies NNS filling VBG fillings NNS fillip NN fills VBZ filly NN film NN film-festival NN film-maker NN film-makers NNS film-making JJ film-processing NN filmed VBN filming VBG filmmakers NNS filmmaking NN films NNS filmstrips NNS filmy JJ filter NN filtered VBN filtering VBG filters NNS filth NN filthy JJ filtration NN fin NN fin-syn JJ finagled VBN finagling NN final JJ finale NN finalist NN finalists NNS finality NN finalized VBN finalizing VBG finally RB finals NNS finance NN finance-director NN finance-minister NN financed VBN financeer NN financer NN finances NNS financial JJ financial-aid NN financial-crimes NNS financial-data JJ financial-futures NNS financial-industrial JJ financial-market JJ financial-planning JJ financial-related JJ financial-report JJ financial-service NN financial-services NNS financial-support JJ financially RB financier NN financiers NNS financing NN financings NNS finanicial JJ find VB finder NN finders NNS finding VBG findings NNS findings. NNS finds VBZ fine JJ fine-arts NNS fine-boned JJ fine-chiseled JJ fine-drawn JJ fine-feathered JJ fine-featured JJ fine-grained JJ fine-looking JJ fine-point JJ fine-tooth JJ fine-tune VB fine-tuned JJ fine-tuning NN fined VBN finely RB finely-spun JJ fineness NN finer JJR finery NN fines NNS finesse NN finessed VBD finest JJS finetuning VBG finger NN finger-held JJ finger-paint NN finger-pointing NN finger-post NN finger-sucking NN finger-tips NNS fingered VBD fingering VBG fingerings NNS fingerlings NNS fingernails NNS fingerprint NN fingerprinting NN fingerprints NNS fingers NNS fingertips NNS finial NN finicky JJ fining VBG finish VB finished VBD finisher NN finishes VBZ finishing VBG finishing-school NN finite JJ finite-dimensional JJ finned VBN fins NNS fir NN fire NN fire-colored JJ fire-control JJ fire-crackers NNS fire-engine JJ fire-fighting JJ fire-resistant JJ firearm NN firearms NNS fireball NN fireballs NNS firebombed VBN firebombing NN firebombs NNS firebrand NN firebreaks NNS firebug NN firecracker NN firecrackers NNS fired VBN fired... : firefighter NN firefighters NNS firefighting NN firehoops NNS firehouses NNS firelight NN fireman NN firemen NNS fireplace NN fireplaces NNS firepower NN fireproofing NN fires NNS firestorm NN firewater NN fireweed NN firewood NN fireworks NNS firing VBG firings NNS firm NN firm. NN firm... : firma FW firmed VBD firmer JJR firming VBG firmly RB firmness NN firms NNS firmwide RB first JJ first-aid NN first-amendment JJ first-base JJ first-bracket NN first-class JJ first-degree JJ first-eight JJ first-ever JJ first-families NNS first-floor JJ first-grader NN first-half JJ first-hand JJ first-home JJ first-level JJ first-mortgage JJ first-nine-month JJ first-order JJ first-period JJ first-person NN first-phase JJ first-place JJ first-preference NN first-preferred JJ first-quarter JJ first-rate JJ first-refusal JJ first-run JJ first-section JJ first-six JJ first-strike JJ first-term JJ first-three JJ first-time JJ first-year JJ firsthand RB firstpreference NN firstround JJ firsts NNS fiscal JJ fiscal-agent NN fiscal-first JJ fiscal-first-quarter JJ fiscal-fourth JJ fiscal-third JJ fiscal-year JJ fiscally RB fish NN fish-export JJ fish-processing JJ fish... : fishbowl NN fished VBN fisheries NNS fisherman NN fishermen NNS fishers NNS fishery NN fishes NNS fishin VBG fishing NN fishing-boat NN fishing\ JJ fishmongers NNS fishpond NN fishy JJ fission NN fissionable JJ fissured VBN fissures NNS fist NN fist-fighting NN fisted VBD fists NNS fit VB fit-looking JJ fitful JJ fitfully RB fitness NN fitness-promoting JJ fits VBZ fitted VBN fittest JJS fitting JJ fittings NNS five CD five-a-week JJ five-and-a-half NN five-and-dime JJ five-and-twenty JJ five-blade JJ five-block JJ five-by-eight-inch JJ five-cent JJ five-column JJ five-consecutive JJ five-coordinate JJ five-count JJ five-course JJ five-cylinder JJ five-day JJ five-days-a-week JJ five-fold JJ five-foot JJ five-foot-wide JJ five-gallon JJ five-game JJ five-home JJ five-home-run JJ five-hour JJ five-hundred CD five-hundred-dollar JJ five-hundred-year-old JJ five-inch JJ five-judge JJ five-member JJ five-mile JJ five-minute JJ five-month JJ five-month-old JJ five-nation JJ five-party JJ five-percentage-point JJ five-person JJ five-pfennig JJ five-ply JJ five-point JJ five-pound JJ five-round JJ five-row JJ five-session JJ five-seventeen JJ five-speed JJ five-star JJ five-story JJ five-volume JJ five-week JJ five-year JJ five-year-old JJ five-years NNS fivefold JJ fives NNS fiveyear JJ fix VB fixable JJ fixated VBN fixation NN fixations NNS fixed VBN fixed-dollar JJ fixed-income NN fixed-price JJ fixed-rate JJ fixed-repayment JJ fixed-term NN fixedrate JJ fixers NNS fixes NNS fixing VBG fixture NN fixtured VBD fixtures NNS fizzes VBZ fizzled VBD fizzles VBZ fizzy NN fjords NNS flabbergasted JJ flabbiness NN flaccid JJ flag NN flag-burner NN flag-burning NN flag-stick NN flag-wavers NNS flagellated VBN flagellation NN flageolet NN flagged VBD flagging JJ flagpole NN flagpoles NNS flagrant JJ flagrante FW flagrantly RB flags NNS flagship NN flagships NNS flail NN flailed VBD flailing VBG flair NN flak NN flakes NNS flaky JJ flamboyant JJ flamboyantly RB flame NN flame-throwers NNS flamed VBD flames NNS flaming JJ flammable JJ flange NN flanged VBN flank NN flanked VBD flanker NN flanking VBG flannel NN flannels NNS flap NN flapped VBD flapper NN flappers NNS flapping VBG flaps NNS flare NN flared VBD flares NNS flaring VBG flash NN flash-bulbs NNS flash-cubes NNS flashback NN flashbacks NNS flashed VBD flasher NN flashes NNS flashier JJR flashing VBG flashlight NN flashlight-type JJ flashlights NNS flashpoint NN flashy JJ flask NN flat JJ flat-bed JJ flat-bottomed JJ flat-footed JJ flat-headed JJ flat-out JJ flat-panel JJ flat-rolled JJ flat-to-lower JJ flat-topped JJ flatcars NNS flathead JJ flatiron NN flatish JJ flatland NN flatlands NNS flatly RB flatness NN flatnesses NNS flatout NN flats NNS flatten VB flattened VBN flattening VBG flattens VBZ flatter VB flattered VBN flattering JJ flatteringly RB flatters VBZ flattery NN flattest JJS flattish JJ flatulence NN flatulent JJ flatus NN flatware NN flaunt VB flaunt-your-wealth JJ flaunted VBD flaunting VBG flaunts VBZ flautist NN flavor NN flavored JJ flavorful JJ flavoring NN flavorings NNS flavors NNS flaw NN flawed JJ flawless JJ flaws NNS flax NN flaxen JJ flaxseed NN flay VB flea NN flea-infested JJ fleas NNS fleawort NN fleck NN flecked VBN fled VBD fledging VBG fledgling NN fledglings NNS flee VB fleece NN fleeced VBN fleeing VBG flees VBZ fleet NN fleetest JJS fleeting JJ fleets NNS flesh NN fleshpots NNS fleshy JJ flew VBD flex NN flex-time JJ flexed VBD flexers NNS flexibility NN flexible JJ flexicoker NN flexing VBG flextime NN flexural JJ flick NN flicked VBD flicker NN flickered VBD flickering VBG flicking VBG flicks NNS flied VBD flier NN fliers NNS flies VBZ flight NN flight-attendant NN flight-attendants NNS flight-control NN flight-crew NN flight-to-quality JJ flightiness NN flights NNS flighty JJ flim-flam NN flim-flammery NN flimflam NN flimsies NNS flimsy JJ flinch VB flinched VBD flinching VBG fling NN flinging VBG flings NNS flint NN flintless JJ flinty JJ flip JJ flip-flop NN flip-flopped JJ flippant JJ flippantly RB flipped VBD flippers NNS flipping VBG flips VBZ flirt VBP flirtation NN flirtatious JJ flirted VBD flirting VBG flit VBP flitting VBG flng VB float VB floated VBD floater NN floating VBG floating-load JJ floating-point JJ floating-rate JJ floats VBZ floc NN flocculated VBN flocculation NN flock NN flocked VBD flocking VBG flocks NNS floe NN floes NNS flog VB flogged VBD flood NN flood-control JJ flood-insurance NN flood-lighted JJ flood-prone JJ flood-ravaged JJ flooded VBN floodheads NNS flooding VBG floodlight NN floodlighted VBN floodlit JJ floods NNS floor NN floor-covering NN floor-length JJ floor-level JJ floor-to-ceiling JJ floorboards NNS flooring NN floors NNS floorshow NN flop NN flopped VBD floppies NNS floppy JJ floppy-disk NN floppy-tie JJ flops VBZ flora NNS floral JJ florid JJ florist NN flotation NN flotation-type JJ flotations NNS flotilla NN flotillas NNS flounce VBP flounced VBN flounder VB floundered VBN floundering VBG flounders VBZ flour NN flour-milling JJ floured VBN flourish VB flourished VBD flourishes NNS flourishing VBG flout VB flouted VBN flouting NN floutingly RB flow NN flowchart NN flowed VBD flower NN flower-bordered JJ flower-inscribed JJ flower-scented JJ flowered JJ flowering NN flowerpot NN flowers NNS flowing VBG flown VBN flows NNS flu NN flu-like JJ flubbed VBD fluctuate VBP fluctuated VBD fluctuates VBZ fluctuating VBG fluctuation NN fluctuations NNS flue NN flue-cured JJ fluency NN fluent JJ fluently RB fluff NN fluffy JJ fluid NN fluid-filled JJ fluidity NN fluids NNS fluke NN flung VBD flunk VBP flunked VBD flunking VBG flunky NN fluorescein NN fluorescein-labeled JJ fluorescence NN fluorescent JJ fluoresces VBZ fluoride NN fluorinated VBN fluorine NN fluoropolymer NN fluoropolymers NNS flurried VBD flurries NNS flurry NN flush JJ flushed VBN flushes VBZ flushing NN flustered VBN flute NN fluted VBN flutes NNS fluting NN flutist NN flutter NN fluttered VBD fluttering VBG flux NN fluxes NNS fly VB fly-boy NN fly-by-night JJ fly-by-nighters NNS fly-dotted JJ fly-fishing NN flyaway JJ flyer NN flyers NNS flying VBG flying-mount NN flyways NNS fml UH fo IN foal NN foals NNS foam NN foamed JJ foamed-core JJ foamed-in-place JJ foaming NN foams NNS foamy JJ foamy-necked JJ focal JJ focally RB foci NNS focus NN focus-group JJ focused VBN focused-factory JJ focuses VBZ focusing VBG focussed VBN fodder NN foe NN foes NNS fog NN fog-enshrouded JJ fog-free JJ fogged JJ foggy JJ fogy NN foh IN foibles NNS foil NN foiled VBN foiling VBG foisted VBD fold VB foldability NN foldable JJ folded VBN folder NN folders NNS folding VBG folds NNS foliage NN folio NN folk NN folk-dance NN folk-lore NN folk-music NN folk-tale NN folkish JJ folklike JJ folklore NN folks NNS folksongs NNS folksy JJ follicular JJ follies NNS follow VB follow-on JJ follow-through JJ follow-up NN follow-ups NNS followed VBD follower NN followers NNS followership NN followeth VBZ following VBG followings NNS follows VBZ followthrough JJ followup JJ folly NN foment VB fomented VBD fomenting VBG foments VBZ fond JJ fonder JJR fondest JJS fondled VBN fondly RB fondness NN font NN fontanel NN fonts NNS foo NN food NN food-aid JJ food-canning NN food-color NN food-fish NNS food-importing JJ food-industry NN food-packaging JJ food-poisoning NN food-preservation NN food-processing NN food-production NN food-products NNS food-safety JJ food-scare NN food-sector JJ food-service NN food-services NNS food-shop JJ foods NNS foodservice NN foodstuff NN foodstuffs NNS fool NN fooled VBN foolhardy JJ fooling VBG foolish JJ foolishly RB foolishness NN foolproof JJ fools NNS foot NN foot-dragging NN foot-high JJ foot-loose JJ foot-tall JJ foot-thick JJ footage NN football NN footballer NN footballs NNS footbridge NN footfall NN footfalls NNS foothill NN foothills NNS foothold NN footholds NNS footing NN footlights NNS footloose JJ footman NN footnote NN footnoted VBN footnotes NNS footpath NN footprint NN footprints NNS footstep NN footsteps NNS footstool NN footsy NN footwear NN footwork NN foppish JJ for IN for'me PRP for'running VBG for-profit JJ for... : forage NN forages NNS foraging NN foray NN forays NNS forbad VBD forbade VBD forbearance NN forbears NNS forbid VB forbidden VBN forbidding VBG forbidding-looking JJ forbids VBZ forbore VBD forborne VB force NN force-fear JJ force-feeding NN force-level JJ force-rate NN forced VBN forceful JJ forcefully RB forcefulness NN forces NNS forcibly RB forcing VBG fords NNS fore NN fore-play NN forearm NN forearms NNS forebear NN forebears NNS foreboding NN forecast NN forecasted VBN forecaster NN forecasters NNS forecasting NN forecasts NNS foreclose VB foreclosed VBN foreclosing VBG foreclosure NN foreclosures NNS forefathers NNS forefeet NN forefinger NN forefingers NNS forefront NN forego VB foregoing NN foregone JJ foreground NN forehead NN foreheads NNS foreign JJ foreign-affairs NNS foreign-aid NN foreign-airline NN foreign-assistance NN foreign-bank JJ foreign-based JJ foreign-car NN foreign-country JJ foreign-currency NN foreign-debt NN foreign-entry-limit JJ foreign-equity NN foreign-exchange JJ foreign-exchange-rate JJ foreign-flag NN foreign-investment JJ foreign-investor NN foreign-led JJ foreign-loan JJ foreign-made JJ foreign-movie NN foreign-owned JJ foreign-ownership NN foreign-policy NN foreign-sounding JJ foreign-stock JJ foreign-trade JJ foreign-trading JJ foreign-transaction NN foreigner NN foreigners NNS foreknowledge NN foreknown VB foreleg NN foreman NN foremost JJ forensic JJ forensics NNS forepart NN forepaws NNS forerunner NN forerunners NNS foresaw VBD foresee VBP foreseeable JJ foreseeing VBG foreseen VBN foresees VBZ foreshadow VB foreshadowed VBN foreshadowing VBG foreshortened VBN foreshortening VBG foresight NN forest NN forest-product NN forest-products NNS forestall VB forestalled VBN forestry NN forests NNS foretell VB forethought NN forever RB forever-Cathy NN foreword NN forfeit VB forfeitable JJ forfeited VBN forfeiting VBG forfeiture NN forfeitures NNS forgave VBD forge VB forged VBN forger NN forgeries NNS forgery NN forges VBZ forget VB forgetful JJ forgetfulness NN forgets VBZ forgettable JJ forgetting VBG forging VBG forgings NNS forgit VB forgitful JJ forgive VB forgiven VBN forgiveness NN forgiving VBG forgo VB forgoes VBZ forgone JJ forgot VBD forgotten VBN forint NN forints NNS forisque FW fork NN fork-lift NN forked JJ forking VBG forklift NN forklifts NNS forks NNS forlorn JJ forlornly RB form NN form-creating JJ form-dictionary NN form-letter JJ forma FW formability NN formal JJ formaldehyde NN formalism NN formalities NNS formality NN formalize VB formalized JJ formalizes VBZ formally RB format NN formation NN formations NNS formative JJ formats NNS formed VBN formed-tooth JJ former JJ formerly RB formidable JJ formidable-appearing JJ formidably RB forming VBG forms NNS forms-processing NN formula NN formula-based JJ formulae NNS formulaic JJ formulas NNS formulate VB formulated VBN formulates VBZ formulating VBG formulation NN formulations NNS forsake VB forsaken VBN forsakes VBZ forseeable JJ forswears VBZ forswore VBD fort NN forte NN forte-pianos NNS forth RB forthcoming JJ forthright JJ forthrightly RB forthrightness NN forthwith RB forties NNS fortifications NNS fortified VBN fortify VB fortiori FW fortitude NN fortnight NN fortress NN fortress-like JJ fortresses NNS forts NNS fortuitous JJ fortuitously RB fortunate JJ fortunately RB fortune NN fortune-cookie NN fortune-happy JJ fortune-tellers NN fortunes NNS forty CD forty-eight CD forty-fifth CD forty-five CD forty-fold JJ forty-four CD forty-nine CD forty-niners NNS forty-seven JJ forty-three CD forty-two CD forty-year JJ forum NN forums NNS forward RB forward-looking JJ forward-moving JJ forward-rate JJ forwarded VBN forwarders NNS forwarding NN forwards RB fossil JJ fossilized JJ fossils NNS foster VB foster-care JJ fostered VBN fostering VBG fosters VBZ fought VBD fought-for JJ foul JJ foul-mouthed JJ foul-smelling JJ foul-up NN foul-ups NNS fouled VBD foulest JJS fouling NN foully RB found VBD foundation NN foundation-stone NN foundations NNS founded VBN founder NN founder-conductor NN founder-originator NN foundered VBD foundering VBG founders NNS founding NN foundling NN foundry NN founds VBZ fountain NN fountain-falls NNS fountain-head NN fountainhead NN fountains NNS four CD four-bagger NN four-cents-a-share JJ four-color JJ four-count JJ four-crate JJ four-cylinder JJ four-day JJ four-door JJ four-element JJ four-engined JJ four-family JJ four-fold JJ four-foot-high JJ four-for-one RB four-game JJ four-games-to-one JJ four-hour JJ four-in-hand JJ four-inch JJ four-jet JJ four-lane JJ four-letter JJ four-man JJ four-megabit JJ four-member JJ four-mile JJ four-minute JJ four-month JJ four-month-old JJ four-nation JJ four-o'clock RB four-page JJ four-page-a-minute JJ four-part JJ four-person JJ four-point JJ four-quarter JJ four-room JJ four-sided JJ four-speed JJ four-square NN four-square-block JJ four-star JJ four-stock JJ four-story JJ four-stroke JJ four-syllable JJ four-thirty RB four-to-one RB four-week JJ four-wheel JJ four-wheel-drive NN four-wood JJ four-year JJ four-year-old JJ fourfold RB fours NNS foursome NN fourteen CD fourteen-nation NN fourteen-team JJ fourteen-year-old JJ fourteenth JJ fourth JJ fourth-biggest JJ fourth-century JJ fourth-class JJ fourth-consecutive JJ fourth-down NN fourth-fifths NNS fourth-flight JJ fourth-generation JJ fourth-grade JJ fourth-hand JJ fourth-largest JJ fourth-level JJ fourth-period JJ fourth-quarter JJ fourth-ranked JJ fourth-ranking JJ fourthquarter NN foward JJ fowl NN fox NN fox-hounds NNS fox-terrier NN foxes NNS foxholes NNS foxtail NN foyer NN fps NNS fracas NN fracases NNS fraction NN fractional JJ fractionally RB fractionated VBN fractionation NN fractioning VBG fractions NNS fractious JJ fracture NN fractured VBN fractures NNS fracturing VBG fragile JJ fragility NN fragment NN fragmentarily RB fragmentary JJ fragmentation NN fragmentations NNS fragmented JJ fragments NNS fragrance NN fragrances NNS fragrant JJ frail JJ frailest JJS frailties NNS frambesia NN frame NN framed VBN framer NN framers NNS frames NNS framework NN framing NN franc NN franc-denominated JJ franca FW franchise NN franchised VBN franchisee NN franchisees NNS franchiser NN franchisers NNS franchises NNS franchising NN franchisor NN francs NNS frangipani NNS frank JJ franked JJ franker JJR frankest JJS frankfurter NN frankfurters NNS franking NN frankly RB frankness NN franks NNS franks-in-buns NNS frantic JJ frantically RB fraternisation NN fraternities NNS fraternity NN fraternize VB fraternized VBD frau FW fraud NN fraud''-based JJ fraud-related JJ frauds NNS fraudulent JJ fraudulently RB fraught JJ fray NN frayed JJ fraying VBG frazzled VBN freak NN freaked VBN freakish JJ freakishly RB freaks NNS freckled JJ freckles NNS free JJ free-agent NN free-blown JJ free-burning JJ free-buying JJ free-choice JJ free-drink JJ free-enterprise NN free-fall JJ free-falling JJ free-floater NN free-for-all NN free-holders NNS free-lance JJ free-mail NN free-market JJ free-market-oriented JJ free-marketer NN free-marketers NNS free-on-board JJ free-speech NN free-spending JJ free-spirited JJ free-spiritedness NN free-standing JJ free-thinkers NNS free-trade JJ free-traders NNS free-travel JJ free-wheeling JJ free-world JJ freebase NN freebies NNS freebooters NNS freed VBN freedmen NNS freedom NN freedom-conscious JJ freedom-loving JJ freedoms NNS freefall NN freehand JJ freeholders NNS freeing VBG freelance JJ freelancers NNS freelancing NN freely RB freemail NN freeman NN freemarket JJ freer JJR freer-spending JJ frees VBZ freescrip NN freespender NN freest JJS freestylers NNS freethinkers NNS freeway NN freeways NNS freewheelers NNS freewheeling JJ freeze NN freeze-drying NN freeze-out JJ freezer NN freezers NNS freezes VBZ freezing VBG freight NN freight-bums NNS freight-car NN freight-cost JJ freight-forwarding JJ freight-hauling JJ freight-jumper NN freight-rate JJ freight-transport JJ freighter NN freighters NNS freights NNS french JJ frenetic JJ frenzied JJ frenziedly RB frenzy NN frenzy-free JJ frequencies NNS frequency NN frequency,`` `` frequency-control JJ frequency-independent JJ frequency-modulation NN frequent JJ frequent-flier JJ frequent-flyer NN frequented VBD frequently RB frequents VBZ fresco NN frescoed JJ frescoes NNS frescoing NN frescos NNS fresh JJ fresh-faced JJ fresh-fruit JJ fresh-ground JJ fresh-perked JJ freshborn NN freshened VBN fresher JJR freshly RB freshly-ground JJ freshman NN freshmen NNS freshness NN freshwater JJR fret VBP frets VBZ fretted VBD fretting VBG friable JJ friar NN friction NN friction-free JJ frictional JJ frictionless JJ frictions NNS fridge NN fried JJ friend NN friend-of-the-court JJ friendlier JJR friendlily RB friendliness NN friendly JJ friends NNS friendship NN friendships NNS friers NNS fries NNS frieze NN friezes NNS frigate NN frigates NNS fright NN frighten VB frightened VBN frightening JJ frighteningly RB frightens VBZ frightful JJ frightfully RB frigid JJ frill NN frills NNS frilly JJ fringe NN fringe-benefit NN fringed VBN fringed-wrapped JJ fringes NNS fripperies NNS frise FW frisky JJ frittered VBN frittering VBG fritters NNS frivolities NNS frivolity NN frivolous JJ frivolously RB frizzled JJ frizzling VBG fro RB frock NN frocks NNS frog NN frog-eating JJ frog-haiku NN frogmen NNS frogs NNS frolic NN frolicked VBN frolicking VBG frolics NNS from IN fronds NNS front NN front-back JJ front-desk NN front-end JJ front-line JJ front-loaded JJ front-loaders NNS front-loads VBZ front-office NN front-page JJ front-runner NN front-runners NNS front-running JJ front-seat NN frontage NN frontal JJ fronted VBD frontend NN frontier NN frontiers NNS frontiersmen NNS fronting VBG frontrunner NN fronts NNS fros NNS frost NN frost-bitten JJ frostbite NN frosted VBD frosting NN frosty JJ froth NN frothier RBR frothing VBG frothy JJ frown VBP frowned VBD frowning VBG frowningly RB frowns VBZ frowzy JJ froze VBD frozen VBN frozen-embryo NN frozen-food NN frozen-foods NNS frozen-pizza NN fructose NN frugal JJ frugality NN frugally RB fruit NN fruit-concentrate JJ fruit-flavored JJ fruit-juice NN fruitbowl NN fruitful JJ fruitfully RB fruitfulness NN fruition NN fruitless JJ fruitlessly RB fruits NNS fruity JJ frumpy JJ frustrate VB frustrated VBN frustrated... : frustrates VBZ frustrating JJ frustratingly RB frustration NN frustrations NNS fry NN fryers NNS frying VBG ft NN ft. NN fuchsia NN fuck VB fucken JJ fuckin JJ fucking JJ fucks NNS fuddy-duddy JJ fudge VB fudged VBD fudging NN fuel NN fuel-cost JJ fuel-distribution NN fuel-economy NN fuel-efficiency JJ fuel-efficient JJ fuel-guzzling JJ fuel-injected JJ fuel-neutral JJ fuel-services NNS fuel-storage NN fueled VBN fueling VBG fueloil NN fuels NNS fuer NNP fugitive JJ fugitives NNS fugual JJ fugures NNS fulcrum NN fulfill VB fulfilled VBN fulfilling VBG fulfillment NN fulfills VBZ fulfilment NN fulfull VB full JJ full-banded JJ full-blown JJ full-bodied JJ full-body JJ full-clad JJ full-commission JJ full-dress JJ full-fledged JJ full-grown JJ full-length JJ full-of-the-moon NN full-on JJ full-page JJ full-point JJ full-power JJ full-range JJ full-scale JJ full-season JJ full-service JJ full-sisters NNS full-size JJ full-sized JJ full-spectrum NN full-strength JJ full-throated JJ full-time JJ full-year JJ fullback NN fullbacking VBG fuller JJR fullest JJS fulllength JJ fullness NN fullscale JJ fully RB fully-diluted JJ fullyear JJ fulminate VB fulminating VBG fulminations NNS fumble NN fumbled VBD fumbling VBG fume-filled JJ fumed VBD fumed-oak JJ fumes NNS fumigant NN fumigants NNS fuming VBG fumpered VBD fun NN fun-filled JJ fun-in-the-sun JJ fun-loving JJ function NN functional JJ functionalism NN functionally RB functionaries NNS functionary NN functioned VBD functioning VBG functions NNS fund NN fund-objective JJ fund-raiser NN fund-raisers NNS fund-raising NN fund-research JJ fund-selling JJ fundamantal JJ fundamantalist NN fundamental JJ fundamentalism NN fundamentalist JJ fundamentalists NNS fundamentally RB fundamentals NNS funded VBN funding NN fundraiser NN fundraisers NNS fundraising VBG funds NNS funds-management NN funds-service JJ funeral NN funeral-accessories NNS funerals NNS fungal JJ fungi NNS fungible JJ fungicides NNS fungus NN fungus-produced JJ funks NNS funky JJ funn-eeee JJ funn-ih JJ funnel VB funneled VBD funneling VBG funnels NNS funnier JJR funniest JJS funny JJ fur NN fur-and-leather JJ fur-lined JJ fur-making JJ fur-piece NN fur-production JJ furbishing NN furious JJ furiouser RBR furiously RB furled VBD furlongs NNS furlough NN furloughed VBN furloughs NNS furnace NN furnaces NNS furnish VB furnished VBN furnishes VBZ furnishing NN furnishings NNS furniture NN furor NN furrier NN furriers NNS furrow NN furrowed JJ furrows NNS furry JJ furs NNS further JJ furthered VBD furthering VBG furthermore RB furthers VBZ furthest JJS furtive JJ furtively RB fury NN fuse NN fused VBN fuselage NN fuses NNS fusiform JJ fusillade NN fusillades NNS fusing VBG fusion NN fuss NN fusses VBZ fussily RB fussing VBG fussy JJ fusty JJ futile JJ futility NN future NN future-day JJ future-time JJ futureeither NN futures NNS futures-exchange NN futures-investment JJ futures-market NN futures-related JJ futures-trading JJ futurist NN futurist\/director NN futuristic JJ futurists NNS fuzz NN fuzzed VBD fuzzier JJR fuzzy JJ fy VBP g NN g-10.06.89 CD g-p NN gab NN gabardine NN gabbing VBG gabble NN gabbling VBG gable NN gadflies NNS gadfly NN gadget NN gadgetry NN gadgets NNS gaffes NNS gag NN gage NN gages NNS gagged VBN gagging VBG gaggle NN gaging NN gagline NN gags NNS gagwriters NNS gai FW gaiety NN gaily RB gain NN gain. NN gained VBD gainer NN gainers NNS gainful JJ gaining VBG gains NNS gains-tax JJ gains-tax-cut JJ gait NN gaited JJ gaiters NNS gal NN gala JJ galactic JJ galaxies NNS galaxy NN galbula FW gale NN gall NN gall-bladder NN gallant JJ gallantry NN gallants NNS gallbladder NN galled VBN galleries NNS gallery NN galley NN galleys NNS galling JJ gallium NN gallivantin NN gallon NN gallonage NN gallons NNS gallop NN galloped VBN galloping VBG gallows NN galls NNS gallstone NN gallstones NNS gallus-snapping JJ gals NNS galvanic JJ galvanism NN galvanize VB galvanized JJ galvanizing VBG gambit NN gambits NNS gamble NN gambled VBN gambler NN gambler-politician NN gamblers NNS gambles NNS gambling NN game NN game-management NN game-show JJ game-shows NNS game-winning JJ gamebird NN gamekeeper NN games NNS gamesmen NNS gametes NNS gametocide NN gaming NN gaming-card NN gaming-industry NN gamma NN gamut NN gander NN gang NN gangbusters NNS ganging VBG gangland NN gangling JJ ganglion NN gangplank NN gangs NNS gangster NN gangsterish JJ gangsters NNS gangway NN gantlet NN gap NN gaped VBD gaping VBG gapped VBD gaps NNS gapt NN garage NN garaged VBN garages NNS garb NN garbage NN garbage-disposal NN garbage-in JJ garbage-incinerator NN garbage-out JJ garbage-to-energy JJ garbed VBN garbled VBN garde FW garden NN garden-shrub NN garden-variety NN garden... : gardened VBD gardener NN gardeners NNS gardenettes NNS gardenia NN gardenias NNS gardening NN gardens NNS gargantuan JJ gargle NN garish JJ garishness NN garland NN garlanded VBD garlic NN garment NN garment-industry NN garments NNS garner VB garnered VBD garnet NN garnish NN garoupa NN garrison NN garrisoned VBN garroting VBG garrulous JJ garter NN gas NN gas-company NN gas-cooled JJ gas-derived JJ gas-fired JJ gas-gathering JJ gas-glass NN gas-guzzling JJ gas-one-tenth NN gas-pipeline JJ gas-producing JJ gas-saving JJ gas-station JJ gas-tax NN gas-tax-increasing JJ gas-turbine JJ gasconade VB gaseous JJ gases NNS gash NN gashes NNS gasket NN gaskets NNS gaslights NNS gasoline NN gasoline-powered JJ gasolines NNS gasp NN gasped VBD gasping VBG gaspingly RB gasps NNS gassed VBN gasser NN gasses NNS gassing NN gassings NNS gassy JJ gastric JJ gastro-intestinal JJ gastrocnemius NN gastrointestinal JJ gastronomes NNS gastronomy NN gate NN gate-post NN gates NNS gateway NN gateways NNS gather VB gathered VBD gathering NN gathering-in NN gatherings NNS gathers VBZ gauche JJ gaucherie NN gaucheries NNS gaucho NN gaudy JJ gauge NN gauged VBN gauges VBZ gauging VBG gaunt JJ gauntlet NN gauss NN gauze NN gave VBD gavottes NNS gawky JJ gay JJ gay-bashing JJ gay-ess VBP gay-rights NNS gay-student JJ gay\/bisexual JJ gayety NN gays NNS gaze NN gazed VBD gazelle NN gazer NN gazes VBZ gazing VBG gazpacho NN gear NN gear-box NN gear-sets NNS gearboxes NNS geared VBN gearing VBG gears NNS gee UH geeing VBG geeks NNS geered VBN geese NNS gegenschein NN gel NN gelatin NN gelatin-like JJ gelding NN geldings NNS gels VBZ gem NN gemlike JJ gems NNS gemsbok NNS gemstone NN gen NN gendarme NN gender NN genders NNS gene NN gene-copying JJ gene-replication NN gene-splicing NN gene-therapy NN genealogies NNS genera NN general JJ general-appeal JJ general-director NN general-election NN general-insurance NN general-interest JJ general-management NN general-merchandise NN general-practice JJ general-practitioner NN general-purpose JJ general-staff JJ generalist NN generalists NNS generalities NNS generality NN generalization NN generalizations NNS generalize VB generalized JJ generally RB generalpurpose JJ generals NNS generalship NN generate VB generated VBN generates VBZ generating VBG generation NN generation-skipping JJ generational JJ generations NNS generator NN generators NNS generic JJ generic-drug NN generically RB generics NNS generics-maker NN generosity NN generous JJ generously RB genes NNS genesis NN genetic JJ genetic-engineering JJ genetically RB geneticist NN geneticists NNS genetics NNS genial JJ genie NN genii NN genital JJ genius NN geniuses NNS genocide NN genome NN genre NN genres NNS genteel JJ gentian NN gentians NNS gentile NN gentility NN gentle JJ gentleladies NNS gentlelady NN gentleman NN gentlemanly JJ gentlemen NNS gentleness NN gentler JJR gentler-sloping JJ gently RB gentrified VBN gentry NN genuine JJ genuinely RB genus NN geo-political JJ geocentric JJ geochemistry NN geode NN geographer NN geographers NNS geographic JJ geographical JJ geographically RB geography NN geologic JJ geological JJ geologically RB geologist NN geologists NNS geology NN geometric JJ geometrical JJ geometrically RB geometry NN geopolitical JJ geosciences NNS geothermal JJ geranium NN gerbera NN geriatric JJ germ NN germane JJ germaneness NN germanium NN germinal JJ germinate VBP germinated JJ germs NNS gerrymandering NN gerundial JJ gestational JJ gesticulated VBD gesticulating VBG gesture NN gestured VBD gestures NNS gesturing VBG get VB get-along JJ get-out-of-my-way JJ get-out-the-vote JJ get-rich-quick JJ get-together NN get-togethers NNS get-tough JJ get... : getaway NN gether VB gets VBZ gettin VBG getting VBG geyser NN geysering VBG geysers NNS ghastly JJ ghazal FW ghazals FW gherkins NNS ghetto NN ghettos NNS ghilianii FW ghost NN ghost-busting NN ghostbusters NNS ghostbusting NN ghosted VBD ghostlike JJ ghostly JJ ghosts NNS ghoul NN ghoulish JJ ghouls NNS giant NN giants NNS gibberish NN gibbet NN gibe NN gibes NNS giblet NN giddiness NN giddy JJ gift NN gift-giving NN gift-products NNS gifted JJ gifts NNS gig NN gigantic JJ giggle NN giggled VBD giggles NNS giggling VBG gigolo NN gigue-like JJ gild VB gilded JJ gilding NN gilt JJ gilt-edged JJ gilts NNS gim VB gimbaled JJ gimcracks NNS gimmick NN gimmick-ridden JJ gimmickry NN gimmicks NNS gimmicky JJ gin NN gin-and-tonics NNS ginger NN gingerly RB gingham NN ginkgo NN ginmill NN ginnin VBG ginning NN gins NNS ginseng NN gird VB girded VBD girder NN girders NNS girding VBG girdle NN girds VBZ girl NN girl-friend NN girl-san NN girlfriend NN girlfriends NNS girlie NN girlish JJ girlishly RB girls NNS girth NN gist NN git VB give VB give-and-take NN give-away JJ giveaway NN giveaways NNS givebacks NNS given VBN givenness NN giver NN gives VBZ giveth VBZ givin VBG giving VBG gizmo NN gizmos NNS glacial JJ glacier NN glacier-like JJ glaciers NNS glad JJ glad-handing NN glade NN gladiator NN gladly RB gladness NN glamor NN glamorize VB glamorized VBN glamorous JJ glamour NN glance NN glanced VBD glances NNS glancing VBG gland NN glanders NNS glands NNS glandular JJ glare NN glared VBD glares VBZ glaring JJ glaringly RB glasnost FW glass NN glass-bottom JJ glass-container NN glass-fiber JJ glass-like JJ glass-making NN glass-strewn JJ glasses NNS glassless JJ glassware NN glassy JJ glaucoma NN glaze NN glazed VBN glazes NNS glazing VBG gleam NN gleamed VBD gleaming VBG glean VB gleaned VBN gleans VBZ glee NN glee-club NN gleeful JJ gleefully RB gleened VBN glees NNS glen NN glib JJ glibly RB glide VB glide-bombed VBD glided VBD glider NN gliders NNS glides VBZ gliding VBG glimmer NN glimmering VBG glimmers NNS glimpse NN glimpsed VBN glimpses NNS glint NN glinted VBD glinting VBG glissade NN glisten NN glistened VBD glistening VBG glitch NN glitches NNS glitter NN glitterati NNS glittered VBD glittering VBG glittery NN glitz NN glitzy JJ gloat VB gloated VBD gloaters NNS gloating VBG gloats VBZ glob-flakes NN global JJ global-funds JJ global-market JJ global-news NN global-warming JJ globalism NN globalist NN globalists NNS globalization NN globalized JJ globalizing VBG globally RB globe NN globe-girdling JJ globe-spanning JJ globes NNS globetrotter NN globigii NNS globulin NN globulins NNS glomerular JJ glommed VBD gloom NN gloom-and-doom JJ gloomier JJR gloomily RB gloomy JJ glop NN glories NNS glorification NN glorified VBN glorifies VBZ glorify VB glorious JJ gloriously RB glory NN glorying VBG gloss VB glossary NN glossed VBD glossy JJ glottal JJ glottochronological JJ glottochronology NN glove NN gloved VBN glover NN gloves NNS glow NN glow-in-the-dark JJ glowed VBD glowered VBD glowering VBG glowing VBG glows NNS glucose NN glue NN glued VBN glues NNS gluey JJ glum JJ glumly RB glut NN glutamate NN glutamic JJ glutaric JJ gluten NN glutinous JJ gluts NNS glutted VBN glutting VBG gluttons NNS gluttony NN glycerin NN glycerine NN glycerol NN glycerolized VBN glycol NN glycols NNS glycosides NNS gm NN gm. NN gnarled JJ gnash VB gnashing VBG gnaw VB gnawed VBD gnawing NN gnome NN gnomelike JJ gnomes NNS gnomon NN go VB go-ahead NN go-along JJ go-around NN go-between NN go-betweens NNS go-getters NNS go-go JJ go-go-go NN go-it-alone JJ go-to-war JJ goad NN goaded VBD goal NN goal-line NN goal-oriented JJ goal-values NNS goals NNS goat NN goat-drawn JJ goatee NN goats NNS gob NN gobble NN gobbled VBD gobbledygook NN gobblers NNS gobbles VBZ gobbling VBG goblins NNS god NN god-like JJ godamit VB goddam JJ goddamit UH goddammit UH goddamn UH goddamned JJ goddess NN godfather NN godhead NN godless JJ godlike JJ godliness NN godmother NN gods NNS godsend NN goes VBZ goggle-eyed JJ goggles NNS goin VBG going VBG going-home JJ going-over NN going-private JJ goings NNS goings-on NNS goitre NN goitrogen NN goitrogens NNS gold NN gold-backed JJ gold-based JJ gold-card-carrying JJ gold-convertible JJ gold-filled JJ gold-leaf JJ gold-mining JJ gold-mining-company JJ gold-oriented JJ gold-phone NN gold-plated JJ gold-share JJ gold-wire NN goldbanded VBN golden JJ golden-crusted JJ golden-parachute JJ golden-share NN goldfish NN golds NNS goldsmith NN goldstock NN golf NN golf-ball NN golfed VBN golfer NN golfers NNS golfers... : golfing NN golfs NNS golly UH gon VBG gone VBN gonna VBG gonne VBN goo NN good JJ good-by UH good-bye NN good-cop JJ good-driver JJ good-faith NN good-for-you JJ good-hearted JJ good-humored JJ good-humoredly RB good-living JJ good-looking JJ good-natured JJ good-news NN good-night JJ good-quality JJ good-size JJ good-til-canceled JJ good-till-canceled JJ good-will JJ goodbye NN goodies NNS goodness NN goodnight NN goods NNS goods-producing JJ goodwill NN goody UH gooey JJ goof-offs NNS goofed VBD goofiness NN goofing VBG goofy JJ googled VBD goons NNS goooolick NN goose NN goose-stepping VBG gooseberry NN goosey JJ gooshey JJ gore VB gored VBN gorge NN gorged VBD gorgeous JJ gorgeously RB gorges NNS gorging VBG gorilla NN gorillas NNS gorup NN gory JJ gosaimasu FW gosh UH gospel NN gossamer NN gossip NN gossiped VBN gossiping VBG gossips NNS gossipy JJ got VBD gotcha VBP gothic JJ gotta VB gotten VBN gouge VB gouged VBD gouging VBG gourd NN gourmet NN gourmet-food NN gourmets NNS gout NN goutte FW gouty JJ gouverne FW goverment NN goverment. NN govern VB governance NN governed VBN governess NN governing VBG governmemt NN government NN government-agency JJ government-appointed JJ government-approved JJ government-assisted JJ government-backed JJ government-bond NN government-business NN government-certified JJ government-controlled JJ government-dominated JJ government-encouraged JJ government-funded JJ government-guaranteed JJ government-held JJ government-imposed JJ government-insured JJ government-leaked JJ government-managed JJ government-mandated JJ government-operated JJ government-orchestrated JJ government-ordered JJ government-owned JJ government-plus JJ government-provided JJ government-relations NNS government-run JJ government-sanctioned JJ government-securities NNS government-set VBN government-sponsored JJ government-subsidized JJ government-supported JJ government-to-government JJ government... : governmental JJ governmental-affairs NNS governmentally RB governments NNS governmentset VBN governor NN governor-elect NN governors NNS governors-association NN governorship NN governs VBZ gown NN gowned JJ gowns NNS gpd NN grab VB grab-bag NN grabbag NN grabbed VBD grabbin VBG grabbing VBG grabs NNS grace NN graced VBD graceful JJ gracefully RB gracefulness NN graces NNS gracious JJ graciously RB grad NN gradations NNS grade NN grade-A JJ grade-constructed JJ grade-equivalent NN grade-equivalents NNS grade-school JJ graded VBN grader NN graders NNS grades NNS gradient NN gradients NNS grading VBG grads NNS gradual JJ gradualism NN gradualist NN gradually RB graduate NN graduate-student NN graduated VBN graduates NNS graduating VBG graduation NN graffiti NN graft NN graft-riddled JJ grafted JJ grafting VBG graham NN graham-flour-based JJ grain NN grain-exporting NN grain-storage NN grain-trading JJ grained JJ graining NN grains NNS grainy JJ gram NN grammar NN grammar-school NN grammarians NNS grammatical JJ grammatically RB grams NNS gran'dad NN granary NN grand JJ grand-daughter NN grand-jury NN grand-looking JJ grand-prize NN grand-slam JJ grandchild NN grandchildren NNS granddad NN granddaddies NNS granddaughter NN grandees NNS grander JJR grandest JJS grandeur NN grandfather NN grandfather-father-to-son JJ grandfathers NNS grandiloquent JJ grandiose JJ grandkids NNS grandly RB grandma NN grandmas NNS grandmasters NNS grandmother NN grandmotherly JJ grandmothers NNS grandparents NNS grandson NN grandsons NNS grandstand NN grandstander NN grandstanding VBG granite NN grant NN grant-in-aid NN granted VBN grantee NN granting VBG grantors NNS grants NNS grants-in-aid NN granular JJ granular-type JJ granules NNS granulocyte-macrophage NN granulocytic JJ grape NN grape-arbor NN grapefruit NN grapes NNS grapeshot NN grapevine NN grapevines NNS graph NN graphed VBN graphic JJ graphic-arts NNS graphical JJ graphically RB graphics NNS graphite NN graphite-plastic JJ graphs NNS grapple VB grappled VBD grapples VBZ grappling VBG grasp VB grasped VBN grasping VBG grass NN grass-covered JJ grass-fed JJ grass-green JJ grass-roots JJ grassed VBN grassers NNS grasses NNS grassfire NN grasshoppers NNS grassland NN grassroots NNS grassroots-fueled JJ grassy JJ grata FW grate NN grated VBD grateful JJ gratefully RB grates NNS gratification NN gratified VBN gratify VB gratifying JJ gratifyingly RB grating NN gratingly RB gratings NNS gratis JJ gratitude NN gratuities NNS gratuitous JJ gratuitously RB gratuity NN graunt VB grave JJ gravel NN gravel-chewing JJ gravel-voiced JJ gravely RB graven JJ graver JJR graves NNS gravest JJS gravestone NN graveyard NN graveyards NNS gravid JJ gravitas NNS gravitates VBZ gravitating VBG gravitation NN gravitational JJ gravity NN gravy NN gray JJ gray-backs NNS gray-beard JJ gray-bearded JJ gray-black JJ gray-blue JJ gray-flannel JJ gray-haired JJ gray-looking JJ gray-market JJ gray-thatched JJ graybeard NN graybeards NNS grayed JJ grayer JJR graying VBG grays NNS graze VBP grazed VBD grazer NN grazers NNS grazin VBG grazing VBG grease NN grease-removal JJ greased VBD greases NNS greasies NNS greasy JJ great JJ great-grandchildren NNS great-grandfather NN great-grandmother NN great-grandson NN great-great-grandfather NN great-nieces NNS great-quality NN great-uncles NNS greatcoat NN greatcoated JJ greate NN greater JJR greater-fool JJ greatest JJS greatly RB greatness NN greats NNS greed NN greedier JJR greedily RB greedy JJ green JJ green-brown JJ green-bugs NN green-lipped JJ green-scaled JJ green-tinted JJ greenback NN greenbacks NNS greener JJR greenest JJS greenfield NN greenhouse NN greenhouse-effect JJ greenhouse-gas JJ greenhouse-produced JJ greenhouses NNS greening JJ greenish JJ greenly RB greenmail NN greenmailer NN greenness NN greens NNS greensward NN greenware NN greet VB greeted VBD greeter NN greeters NNS greeting NN greetings NNS greets VBZ greetz NNS gregarious JJ grenade NN grenades NNS gret JJ grevouselye RB grew VBD grey JJ grey-haired JJ grey-skied JJ greying VBG grid NN gridded JJ gridiron NN gridlock NN gridlocked VBN grief NN grief-stricken JJ grievance NN grievances NNS grieved VBN grieving VBG grievous JJ grill NN grille NN grille-route NN grilled JJ grilled-chicken JJ grillework NN grillwork NN grim JJ grimace NN grimaced VBD grimaces NNS grime NN grimed VBN grimly RB grimmer RBR grimmest JJS grimness NN grimy JJ grin NN grind VBP grinder NN grinders NNS grinding VBG grindings NNS grinds VBZ grindstone NN gringos NNS grinned VBD grinning VBG grins NNS grip NN gripe VBP griped VBD gripes NNS griping NN gripped VBD gripping VBG grips NNS grisly JJ grist NN gristmill NN grit NN grit-impregnated JJ grits NNS gritty JJ gritty-eyed JJ grizzled JJ grizzlies NNS grizzly NN groan NN groaned VBD groaning VBG groans VBZ grocer NN groceries NNS grocers NNS grocery NN grocery-products NNS grocery-store JJ grogginess NN groggy JJ groin NN grok VB grokked VBD grokking VBG groom NN groomed VBN grooming NN grooms NNS groomsmen NNS groove NN grooved VBN grooves NNS grope VB groped VBD groping VBG gross JJ gross-income NN gross-profit NN grossed VBD grosses VBZ grossing VBG grossly RB grotesque JJ grotesquely RB grotesques NNS grottoes NNS ground NN ground-based JJ ground-cargo NN ground-floor JJ ground-glass JJ ground-handling NNS ground-launched JJ ground-level NN ground-support JJ ground-swell NN ground-truck NN ground-water NN groundball NN groundbreakers NNS grounded VBN grounder NN grounding VBG groundless JJ grounds NNS grounds-care JJ groundup JJ groundwater NN groundwave NN groundwork NN group NN group-health NN group-identities NNS group-identity NN grouped VBN grouper NN grouping NN groupings NNS groups NNS grouse VBP groused VBD grouses VBZ grousing VBG grove NN grovel VB grovelike JJ groveling VBG grovels VBZ groves NNS grow VB grow-or-die JJ grower NN growers NNS growing VBG growing-waiting NN growl NN growled VBD growling VBG growls VBZ grown VBN grown-up JJ grown-ups NNS grownups NNS grows VBZ growth NN growth-and-income JJ growth-controlling JJ growth-fund NN growth-minded JJ growth-oriented JJ growth-stock JJ growth-stunting JJ growth-suppressing JJ growth... : growths NNS growthy JJ grtz NNS grub NN grubby JJ grubs NNS grudge NN grudges NNS grudging JJ grudgingly RB grueling JJ gruesome JJ gruesomeness NN gruff JJ grumble VBP grumbled VBD grumbles VBZ grumbling VBG grunt VB grunted VBD grunting VBG gruonded VBD guanidine NN guar JJ guarantee NN guaranteed VBN guaranteed-neutral JJ guaranteeing VBG guarantees NNS guarantor NN guaranty NN guard NN guard-room NN guarded VBN guardedly RB guardedness NN guardhouse NN guardian NN guardians NNS guardianship NN guarding VBG guards NNS gubernatorial JJ guerilla NN guerrilla NN guerrilla-held JJ guerrilla-th'-wisp JJ guerrillas NNS guess VBP guessed VBD guesses NNS guessing VBG guesstimates NNS guesswork NN guest NN guests NNS guffawing VBG guffaws NNS guidance NN guide NN guidebook NN guided VBN guided-missile JJ guideline NN guidelines NNS guidepost NN guideposts NNS guides NNS guidewheels NNS guiding VBG guild NN guilder NN guilders NNS guile NN guileless JJ guillotine NN guilt NN guiltiness NN guiltless JJ guilty JJ guinea NN guise NN guises NNS guitar NN guitar-strumming VBG guitar-twanging JJ guitarist NN guitars NNS gulag NN gulf NN gull NN gulled VBN gullet NN gulley NN gullibility NN gullible JJ gullies NNS gulling VBG gully NN gulp NN gulped VBD gulping VBG gulps NNS gum NN gum-chewing JJ gummed VBN gumming VBG gummy JJ gumption NN gums NNS gun NN gun-carrying JJ gun-running JJ gun-shot NN gun-shy JJ gun-slinger NN gun-slinging JJ gunbarrel NN gunboats NNS gunfighter NN gunfights NNS gunfire NN gunflint NN gung-ho JJ gungho JJ gunk NN gunloading NN gunman NN gunmen NNS gunmetal-gray JJ gunned VBN gunner NN gunners NNS gunning VBG gunny NN gunplay NN gunpoint NN gunpowder NN guns NNS gunship NN gunshot NN gunslinger NN gunslingers NNS gunslinging VBG guppies NNS gurgle NN gurgling VBG guru NN gurus NNS gush VBP gushed VBD gusher NN gushes VBZ gushing VBG gushy JJ gussets NNS gussied VBN gust NN gusto NN gusts NNS gusty JJ gut NN gut'em VB gut-Democratic JJ gut-flattening JJ gut-wrenching JJ guts NNS gutsy JJ gutted VBN gutter NN guttered VBD gutters NNS guttural JJ guy NN guys NNS guzzle VB guzzled VBD guzzler NN guzzlers NNS guzzles VBZ guzzling NN gweilo FW gweilos FW gym NN gymnasium-sized JJ gymnast NN gymnastic JJ gymnastics NNS gymnasts NNS gyms NNS gynecologic JJ gynecological JJ gynecologist NN gynecologists NNS gynecology NN gypsies NNS gypsum NN gypsy NN gyrate VB gyrated VBD gyrating VBG gyration NN gyrations NNS gyro NN gyro-platform-servo JJ gyro-stabilized JJ gyros NNS gyroscopes NNS h NN h8 VB ha UH habe FW habeas NNS habeas-corpus JJ haberdasheries NNS haberdashery NN habit NN habit-forming JJ habitable JJ habitants NNS habitat NN habitats NNS habits NNS habitual JJ habitually RB habitues NNS hable JJ hack NN hacked VBD hacker NN hackers NNS hacking JJ hackles NNS hackneyed JJ hacks NNS hacksaw NN hackwork NN had VBD hadd VBN haddock NN haec FW haflis NNS hafta VB haggard JJ haggardly RB haggle VB haggling VBG hagglings NNS haha UH hahah UH hahaha UH hail NN hailed VBD hailing VBG hails VBZ hailstorm NN haint VBZ hair NN hair-care NN hair-growing JJ hair-raising JJ hair-relaxer NN hair-trigger JJ haircut NN haircuts NNS hairdos NNS hairdresser NN hairdressers NNS hairier JJR hairless JJ hairline NN hairpiece NN hairpieces NNS hairpin NN hairs NNS hairshirt NN hairsplitting JJ hairspray NN hairtonic NN hairy JJ hairyknuckled JJ halcyon JJ half NN half-a-dozen NN half-a-million JJ half-acceptance NN half-acre JJ half-aloud RB half-an-hour NN half-baked JJ half-billion JJ half-block NN half-blood JJ half-bottles NNS half-breed NN half-brother NN half-brothers NNS half-century NN half-chapter NN half-city NN half-clad JJ half-closed JJ half-cocked JJ half-completed JJ half-conscious JJ half-crazy JJ half-crocked JJ half-cup JJ half-darkness NN half-digested JJ half-dozen NN half-dressed JJ half-drunk JJ half-educated JJ half-empty JJ half-expressed JJ half-faced JJ half-filled JJ half-forgotten JJ half-full JJ half-gainer NN half-gourd NN half-grown JJ half-hearted JJ half-heartedly JJ half-horse JJ half-hour NN half-implemented JJ half-inch JJ half-industrial JJ half-intensity JJ half-interest NN half-jokingly RB half-life NN half-light NN half-man NN half-measure NN half-melted JJ half-mile JJ half-million JJ half-mincing JJ half-moons NNS half-murmured JJ half-off JJ half-owned JJ half-past JJ half-percent JJ half-point JJ half-price NN half-reached VBD half-reformed JJ half-reluctant JJ half-seriously RB half-share NN half-sister NN half-smile NN half-speed JJ half-staff JJ half-standard JJ half-starved JJ half-states NNS half-straightened VBD half-swamped JJ half-swimming JJ half-time NN half-transparent JJ half-turned JJ half-understood JJ half-way JJ half-well JJ half-witted JJ half-year JJ halfback NN halfbacks NNS halfhearted JJ halfheartedly RB halfmile NN halftime NN halfway RB halfways RB halides NNS hall NN hall-mark NN hallelujahs NNS hallmark NN hallmarks NNS hallowed JJ halloween NNP halls NNS hallucinating VBG hallucinations NNS hallucinatory JJ hallway NN hallways NNS halo NN halogen NN halogenated VBD halogens NNS halos NNS halt NN halted VBN halter NN halting VBG haltingly RB halts NNS halvah NN halve VB halved VBN halves NNS halving VBG ham NN ham-handed JJ ham-like JJ ham-radio NN hamburger NN hamburgers NNS hamlet NN hammer NN hammered VBN hammering VBG hammerless JJ hammerlock NN hamming VBG hammock NN hamper VB hampered VBN hampering VBG hampers VBZ hams NNS hamstring VB hamstringing VBG hamstrung JJ han NN hand NN hand-blower NN hand-carried VBN hand-carved JJ hand-covered JJ hand-crafted JJ hand-delivered JJ hand-filed JJ hand-held JJ hand-hewn JJ hand-holding NN hand-in-glove JJ hand-knit JJ hand-level JJ hand-lotion NN hand-made JJ hand-me-down JJ hand-operated JJ hand-painted NN hand-picked JJ hand-screened VBN hand-sized JJ hand-squeeze JJ hand-to-hand JJ hand-tool NN hand-tooled JJ hand-woven VBN hand-wringer NN hand-wringing NN hand-written JJ handbag NN handbills NNS handbook NN handbooks NNS handclasp NN handcrafted VBN handcuff VBP handcuffed VBN handcuffs NNS hande NN handed VBD hander NN handful NN handfuls NNS handgun NN handguns NNS handheld JJ handhold NN handicap NN handicapped JJ handicaps NNS handicrafts NNS handicraftsman NN handier JJR handiest JJS handily RB handing VBG handiwork NN handkerchief NN handkerchiefs NNS handle VB handlebars NNS handled VBN handlers NNS handles VBZ handless JJ handling NN handmade JJ handmaiden NN handout NN handouts NNS handpicked VBN hands NNS hands-down JJ hands-off JJ hands-off-all-sweets NNS hands-on JJ handscrolls NNS handset NN handsets NNS handshake NN handshaker NN handsome JJ handsomely RB handsomer JJR handspikes NNS handstand NN handstands NNS handwriting NN handwritten JJ handy JJ handyman NN handyman-carpenter NN handymen NNS hang VB hang-tough JJ hang-ups NNS hangar NN hangars NNS hanged VBN hangers NNS hangers-on NNS hangin VBG hanging VBG hangman NN hangout NN hangouts NNS hangover NN hangovers NNS hangs VBZ hangups NNS hank NN hankered VBN hankerin VBG hanky NN hanky-panky NN hansom JJ haole FW haphazard JJ haphazardly RB hapless JJ happen VB happened VBD happening VBG happenings NNS happens VBZ happenstance NN happier JJR happiest JJS happily RB happiness NN happy JJ hara-kiri FW harangued VBD harangues NNS haranguing VBG harass VB harassed VBD harassing VBG harassment NN harbinger NN harbor NN harbored VBN harboring VBG harbors NNS harborside NN hard JJ hard-bitten JJ hard-boiled JJ hard-charging JJ hard-come-by JJ hard-core JJ hard-cover NN hard-currency NN hard-disk NN hard-drinking JJ hard-earned JJ hard-edged JJ hard-fought JJ hard-hit JJ hard-hitting JJ hard-line JJ hard-liner NN hard-liners NNS hard-liquor JJ hard-nosed JJ hard-pressed JJ hard-riding JJ hard-sell JJ hard-surface NN hard-to-fault JJ hard-to-fill JJ hard-to-fit JJ hard-to-get JJ hard-to-please JJ hard-to-spot JJ hard-wire JJ hard-won JJ hard-working JJ hardbake NN hardball NN hardboard NN hardboiled JJ hardbound JJ hardcore JJ hardcover NN harddisk NN harden VB hardened VBN hardener NN hardening VBG harder JJR harder-line JJ hardest JJS hardest-hit JJ hardier JJR hardline JJ hardliner NN hardliners NNS hardly RB hardness NN hardscrabble JJ hardship NN hardships NNS hardtack NN hardtack-box NN hardware NN hardware-maintenance NN hardware-store NN hardwood NN hardwoods NNS hardworking JJ hardy JJ hare NN hare-brained JJ harelips NNS harem NN hares NNS hark VBP harking VBG harm NN harmed VBN harmful JJ harming VBG harmless JJ harmlessly RB harmlessness NN harmonic JJ harmonies NNS harmonious JJ harmoniously RB harmonization NN harmonize VB harmony NN harms VBZ harness NN harness-emotions JJ harnessed VBN harnessing VBG harp NN harped VBD harping VBG harpsichord NN harpsichordist NN harpy JJ harrassment NN harried VBN harrowed VBN harrowing JJ harrumphing NN harry VB harsh JJ harshened VBD harsher JJR harshest JJS harshly RB harshness NN hartes NNS harvest NN harvested VBN harvesting NN harvests NNS has VBZ hash NN hasher NN hashers NNS hashes NNS hashing NN hashish NN hasps NNS hassle NN hassled VBN hassles NNS hassling VBG hast VBP haste NN hasten VB hastened VBD hastening VBG hastens VBZ hastily RB hastily-summoned JJ hasty JJ hat NN hatbox NN hatch NN hatchback NN hatched VBN hatcheries NNS hatchery NN hatchet NN hatchet-faced JJ hatching NN hatchings NNS hatchway NN hate VBP hate-mongering NN hated VBD hateful JJ haters NNS hates VBZ hath VBZ hating VBG hatred NN hats NNS hatted VBN hattes NNS haughtily RB haughtiness NN haughty JJ haul NN haulage JJ hauled VBD haulers NNS hauling VBG hauls NNS haunches NNS haunt VB haunted VBN haunting JJ hauntingly RB haunts NNS haute FW hauteur NN have VBP have'the VB have-not JJ have-nots NNS have... : haven NN haven't VB havens NNS havent VB haves NNS havin VBG having VBG havoc NN hawing VBG hawk NN hawk-faced JJ hawk-hatching JJ hawk-hunting JJ hawked VBD hawker NN hawkers NNS hawking VBG hawkish JJ hawks NNS hay NN hay-fever NN hay-shakers NNS hay-wagon NN hayfields NNS haystack NN haystacks NNS hazard NN hazardous JJ hazardous-waste NN hazardous-waste-site NN hazards NNS haze NN hazel JJ hazelnut NN hazelnuts NNS hazes NNS hazy JJ he PRP he's VBZ he-goes-or-I-go JJ he-man NN head NN head-and-shoulders NN head-butting JJ head-cold NN head-hunting NN head-in-the-clouds JJ head-injury NN head-on RB head-to-head JJ head-topper NN head-tossing NN headache NN headaches NNS headboard NN headcount NN headcount-control NN headdress NN heade NN headed VBN header NN headhunters NNS heading VBG headings NNS headland NN headlands NNS headless JJ headlights NNS headline NN headline-grabbing JJ headlined VBN headlines NNS headlinese NN headlining VBG headlong RB headmaster NN headphones NNS headquarter JJ headquartered VBN headquarters NN headrest NN headrests NNS headroom NN heads NNS headsets NNS headship NN headsman NN headstand NN headstands NNS headstones NNS headstrong JJ headwall NN headwalls NNS headwaters NNS headway NN heady JJ heal VB healed VBN healer NN healers NNS healing NN health NN health-and-benefits JJ health-benefits JJ health-care NN health-care-product NN health-care-services JJ health-club JJ health-conscious JJ health-coverage NN health-expenditure JJ health-food NN health-insurance NN health-maintenance NN health-oriented JJ health-products NNS health-related JJ health-services JJ healthcare NN healthful JJ healthier JJR healthiest JJS healthily RB healthy JJ healthy-looking JJ heap NN heaped VBN heaping VBG heaps NNS hear VB heard VBN heare VBP hearer NN hearers NNS hearest VBP hearing NN hearing-aid NN hearing-impaired VBN hearings NNS hears VBZ hearsay NN hearse NN heart NN heart-disease NN heart-pounding JJ heart-rending JJ heart-stopping JJ heart-to-heart JJ heart-warming JJ heart-wrenching JJ heartbeat NN heartbreak NN heartbreaking JJ heartburn NN heartened VBN heartening JJ heartfelt JJ hearth NN hearths NNS heartiest JJS heartily RB heartland NN heartless JJ hearts NNS heartstopping JJ heartstring-plucking JJ heartthrob NN heartwarmingly RB hearty JJ heat NN heat-absorbing JJ heat-and-eat JJ heat-denatured JJ heat-processing JJ heat-resistant JJ heat-treatment NN heat-using JJ heated VBN heatedly RB heater NN heaters NNS heath NN heathen JJ heathenish JJ heather NN heating NN heats VBZ heatshield NN heave NN heaved VBD heaven NN heavenly JJ heavens NNS heavenward JJ heavers NNS heaves NN heavier JJR heavier-than-normal JJ heavier-than-usual JJ heavies NNS heaviest JJS heavily RB heavily-upholstered JJ heaviness NN heaving VBG heavy JJ heavy-armed JJ heavy-construction NN heavy-crude NN heavy-duty JJ heavy-electrical-goods JJ heavy-faced JJ heavy-framed JJ heavy-handed JJ heavy-handedness NN heavy-hitter NN heavy-industry NN heavy-machine JJ heavy-tracked JJ heavy-truck NN heavy-water NN heavy-weight JJ heavyweight NN heavyweights NNS hebephrenic JJ hecatomb NN heck NN heckled VBN hectares NNS hectic JJ hedge VB hedged VBN hedgehogs NNS hedgers NNS hedges NNS hedging VBG hedonism NN hedonistic JJ heebie-jeebies NNS heed VB heeded VBD heedless JJ heeds VBZ heel NN heelers NNS heels NNS heelsthe DT heft NN hefted VBD heftier JJR heftiest JJS hefty JJ hegemonic JJ hegemony NN hehe UH heifers NNS heighborhoods NNS height NN height-to-diameter NN heighten VB heightened VBN heightening VBG heightens VBZ heights NNS heinous JJ heir NN heir-apparent JJ heir-designate NN heiress NN heirs NNS heist NN heisted VBD hel NN held VBN helicopter NN helicopter-borne JJ helicopters NNS helio-copter NN helio-copters NNS heliocentric JJ helion NN heliotrope NN heliports NNS helium NN helium-4 CD helix NN hell NN hell-bent JJ hell-bound JJ hell-fire NN hell-for-leather RB hell-kitten NN hell-raising NN hellfire NN hello UH hells NNS helluva JJ helm NN helmet NN helmeted JJ helmets NNS helmsman NN help VB help-me-make-it-through-the-fiscal-nigh JJ help-wanted JJ helped VBD helper NN helpers NNS helpful JJ helpfully RB helpfulness NN helping VBG helpings NNS helpless JJ helplessly RB helplessness NN helpmate NN helps VBZ helsq'iyokom FW helter-skelter JJ hem NN hematologist NN hemetin NN hemisphere NN hemispheric JJ hemispherical JJ hemlines NNS hemlocks NNS hemmed VBN hemming VBG hemoglobin NN hemolytic JJ hemophilia NN hemophiliacs NNS hemorrhage NN hemorrhaged VBN hemorrhages NNS hemorrhaging VBG hemorrhoids NNS hemosiderin NN hems NNS hen NN hence RB henceforth RB henchman NN henchmen NNS henpecked JJ hens NNS hepatitis NN heptachlor NN her PRP$ herald VB heralded VBN heraldic JJ heralding VBG herb NN herbaceous JJ herbal JJ herbicide NN herbicides NNS herbs NNS herculean JJ herd NN herd-owner NN herded VBN herdin NN herding VBG herds NNS herdsmen NNS here RB here-for JJ here... : hereabout JJ hereabouts RB hereafter RB hereby RB hereditary JJ heredity NN herein RB hereinafter RB heresy NN heretical JJ heretics NNS heretofore RB heretofore-accepted JJ hereunto RB herewith RB heritage NN heritages NNS hermeneutics NN hermetic JJ hermetically RB herniated VBN hero NN hero-worship NN hero-worshippers NNS heroes NNS heroic JJ heroically RB heroics NNS heroin NN heroin-user NN heroine NN heroism NN herons NNS herpetological JJ herpetologist NN herpetologists NNS herpetology NN herring NN herringbone NN hers PRP herself PRP hesitance NN hesitancy NN hesitant JJ hesitantly RB hesitate VB hesitated VBD hesitates VBZ hesitating VBG hesitatingly RB hesitation NN heterogamous JJ heterogeneity NN heterogeneous JJ heterozygous JJ heute FW hev VB hevin VBG hewed VBD hewn VBN hews VBZ hex NN hexagon NN hexagonal JJ hexametaphosphate NN hexameter NN hey UH heyday NN hi UH hi-fi NN hi-graders NNS hi-tech JJ hiatus NN hibachi NN hibernate VBP hiccup NN hiccups NNS hick NN hick-self NN hickory NN hid VBD hidden VBN hide VB hide-out JJ hideaway NN hidebound JJ hideous JJ hideously RB hideout NN hideouts NNS hiders NNS hides NNS hiding VBG hierarchical JJ hierarchies NNS hierarchy NN hifalutin JJ high JJ high-VAT JJ high-altitude JJ high-art JJ high-backed JJ high-balance JJ high-beta JJ high-blood-pressure JJ high-button JJ high-capacity JJ high-ceilinged JJ high-class JJ high-cost JJ high-coupon JJ high-crime JJ high-current JJ high-definition JJ high-density JJ high-echelon JJ high-efficiency NN high-end JJ high-energy JJ high-fiber JJ high-fidelity NN high-flying JJ high-frequency JJ high-gain JJ high-gloss JJ high-grade JJ high-growth JJ high-handed JJ high-heeled JJ high-horsepower JJ high-income JJ high-inflation JJ high-intensity JJ high-interest JJ high-interest-rate JJ high-interestrate JJ high-legged JJ high-level JJ high-leverage JJ high-living JJ high-loss JJ high-mileage JJ high-minded JJ high-mindedness NN high-mounted JJ high-net NN high-net-worth JJ high-octane JJ high-paid JJ high-paying JJ high-performance JJ high-performing JJ high-pitched JJ high-polluting JJ high-positive JJ high-power JJ high-powered JJ high-pressure JJ high-price JJ high-priced JJ high-priority JJ high-production JJ high-profile JJ high-profit JJ high-profit-margin JJ high-profitability NN high-protein JJ high-purity JJ high-quality JJ high-ranking JJ high-rate JJ high-rated JJ high-rep JJ high-resolution JJ high-rise JJ high-rise-project JJ high-rises NNS high-risk JJ high-rolling JJ high-salaried JJ high-school NN high-security JJ high-set JJ high-society NN high-sounding JJ high-speed JJ high-spirited JJ high-stakes JJ high-standard JJ high-stepped JJ high-strung JJ high-sudsing JJ high-sulfur JJ high-tailed VBD high-tax JJ high-tech JJ high-tech-sounding JJ high-technological JJ high-technology NN high-temperature JJ high-ticket JJ high-toned JJ high-topped JJ high-up JJ high-value JJ high-velocity JJ high-visibility JJ high-vitamin JJ high-voltage JJ high-volume JJ high-wage JJ high-water JJ high-wire JJ high-yield JJ high-yielding JJ high-yields NNS highball NN highboard NN highboy NN highbrow JJ highbrow-furrowing NN highbrows NNS higher JJR higher-caffeine JJ higher-caliber JJR higher-capacity JJ higher-cost JJ higher-density JJ higher-education JJ higher-fat JJR higher-grade JJ higher-income JJ higher-level JJ higher-margin JJR higher-multiple JJ higher-octane JJ higher-paid JJ higher-paying JJ higher-priced JJ higher-profit JJR higher-quality JJ higher-ranking JJ higher-rate JJ higher-salaried JJR higher-technology JJR higher-than-anticipated JJ higher-than-expected JJ higher-than-normal JJ higher-than-retail JJ higher-toned JJ higher-yielding JJ highest JJS highest-grossing JJS highest-paid JJ highest-pitched JJ highest-priced JJS highest-quality JJ highest-ranking JJ highest-rated JJ highest-volume JJ highest-yielding JJ highfalutin JJ highflying JJ highland NN highlands NNS highlight VB highlighted VBN highlighting VBG highlights VBZ highly RB highly-confident JJ highly-leveraged JJ highly-regarded JJ highly-touted JJ highness NN highpoint NN highpriced JJ highrises NNS highrisk NN highroad NN highs NNS highschool NN hightailing VBG hightechnologies NNS hightops NNS highway NN highway-construction JJ highway-relief JJ highway-safety NN highwayman NN highways NNS highyield JJ hijacked VBN hijacker NN hijackers NNS hijacking NN hike NN hiked VBD hiker NN hikers NNS hikes NNS hiking VBG hilar JJ hilarious JJ hilariously RB hilarity NN hill NN hillbilly NN hills NNS hillside NN hillsides NNS hilltop NN hilltops NNS hilly JJ hilt NN hilum NN him PRP him. NN himself PRP himselfe NN hind JJ hinder VB hindered VBN hindering VBG hinders VBZ hindmost JJ hindquarters NNS hindrance NN hindrances NNS hindsight NN hinge VB hinged VBN hinges NNS hint NN hinted VBD hinterlands NNS hinting VBG hints NNS hip NN hipline NN hipper JJR hippie NN hips NNS hipster NN hir PRP$ hire VB hired VBN hirelings NNS hires VBZ hiring VBG his PRP$ his\/her JJR hiss NNS hissed VBD hisself PRP hissing NN histochemical JJ histology NN historian NN historians NNS historic JJ historical JJ historical-claims NNS historically RB historichomes NNS historicism NN historicity NN historicized VBN histories NNS historiography NN history NN history-making JJ history-reenactment NN histrionics NNS hit VBD hit-and-miss JJ hit-and-run JJ hit-making JJ hit-man NN hit-run NN hitch NN hitched VBN hitches NNS hitching NN hither RB hitherto RB hitless JJ hitmakers NNS hitman NN hits NNS hitter NN hitters NNS hitting VBG hitting-pitching JJ hitwoman NN hive NN hmmm UH ho UH ho-hum JJ hoard NN hoarder NN hoarding NN hoards NNS hoarse JJ hoarsely RB hoarseness NN hoaxes NNS hob NN hobbies NNS hobbing VBG hobble VB hobbled VBN hobbles VBZ hobbling VBG hobby NN hobbyist NN hobbyists NNS hobnob VB hobo NN hobos NNS hoc FW hock NN hockey NN hocking VBG hodge-podge NN hodgepodge NN hoe NN hoes NNS hog NN hogging VBG hogs NNS hoi-polloi FW hoist VB hoisted VBN hoisting NN hokey JJ hold VB hold-back NN holder NN holders NNS holdin VBG holding VBG holdings NNS holdouts NNS holdovers NNS holds VBZ holdup NN holdups NNS hole NN holed VBN holes NNS holiday NN holiday-season JJ holidays NNS holier-than-thou JJ holies NNS holiest JJS holistic JJ holler VB hollered VBD hollering VBG hollers VBZ hollow JJ hollowness NN hollows NNS hollowware NN hollyhock NN hollyhocks NNS holocaust NN holored VBN holster NN holstered VBD holy JJ holystones NNS homage NN home NN home-acquisition JJ home-and-home JJ home-audience NN home-blend NN home-bound JJ home-bred JJ home-builder NN home-building JJ home-buying JJ home-care JJ home-center NN home-city NN home-comings NNS home-computer NN home-delivered JJ home-delivery NN home-entertainment JJ home-equity JJ home-fashion NN home-for-the-night NN home-furnishing NN home-furnishings NNS home-grown JJ home-health-care JJ home-improvement NN home-market JJ home-mortgage JJ home-nursing JJ home-office JJ home-owners NNS home-ownership NN home-plate NN home-produced JJ home-run JJ home-service JJ home-sharing NN home-shopping NN home-state JJ home-team JJ home-trading NN home-video JJ home. NN homebound JJ homebuilder NN homebuilders NNS homebuilding NN homecoming NN homecomings NNS homeequity NN homefolk NN homeland NN homelands NNS homeless JJ homelessness NN homely JJ homemade JJ homemaker NN homemakers NNS homeowner NN homeowners NNS homeownership NN homer NN homered VBD homers NNS homerun NN homes NNS homeshopping NN homesick JJ homesickness NN homespun JJ homestead NN homesteaders NNS homesteads NNS hometown NN homeward RB homewards RB homework NN homey JJ homicidal JJ homicide NN homicides NNS homie NN homier JJR homies NNS homilies NNS homing JJ homo-hatred NN homoerotic JJ homoeroticism NN homogenate NN homogeneity NN homogeneous JJ homogeneously RB homogenization NN homogenize VB homogenized VBN homogenous JJ homologous RB homophobia NN homophobic JJ homopolymers NNS homosexual JJ homosexuality NN homosexuals NNS homozygous JJ hon NN hone VB honed VBN honest JJ honest-to-Betsy RB honestly RB honesty NN honey NN honey-in-the-sun JJ honeybee NN honeybees NNS honeycombed JJ honeymoon NN honeymooned VBD honeymooners NNS honeymooning NN honeysuckle NN honk VBP honky-tonk NN honkytonks NNS honor NN honorable JJ honorably RB honorarium NN honorariums NNS honorary JJ honored VBN honoree NN honorific NN honoring VBG honors NNS honour NN honoured VBN hoo-pig UH hooch NN hood NN hoodle UH hoodlum NN hoodlums NNS hoods NNS hoodwinked VBN hoof NN hoof-and-mouth JJ hoofmarks NNS hoofs NNS hook NN hook-up NN hooked VBN hooker NN hookers NNS hooking VBG hooks NNS hookup NN hookups NNS hookworm NN hooliganism NN hoop NN hoopla NN hoops NNS hoosegow NN hoosegows NNS hoot NN hooted VBD hooting JJ hoots NNS hooves NNS hop NN hop-skipped VBN hope NN hope... : hoped VBD hoped-for JJ hopeful JJ hopefully RB hopefuls NNS hopeless JJ hopelessly RB hopelessness NN hopes VBZ hoping VBG hopped VBD hopper NN hopping VBG hoppled VBN hopples NNS hops VBZ hopscotch NN hopscotched VBD horde NN hordes NNS horizon NN horizons NNS horizontal JJ horizontal-restraints NNS horizontally RB hormonal JJ hormone NN hormone-treated JJ hormones NNS horn NN horn-rim JJ horn-rimmed JJ horned JJ hornet NN horns NNS horoscope NN horoscopes NNS horrendous JJ horrible JJ horribles NNS horribly RB horrid JJ horrific JJ horrified VBN horrifying JJ horrifyingly RB horror NN horrors NNS hors FW horse NN horse-blanket RB horse-breeding NN horse-chestnut NN horse-drawn JJ horse-meat NN horse-packing JJ horse-player NN horse-playing JJ horse-radish NN horse-steak NN horse-trading NN horse-trail NN horseback NN horsedom NN horseflesh NN horsehair NN horselike JJ horseman NN horsemanship NN horsemeat NN horsemen NNS horseplay NN horsepower NN horseradish NN horses NNS horseshoers NNS horsewoman NN horticultural JJ horticultural-products NNS horticulturally RB horticulture NN horticulturist NN hosannas NNS hose NN hoses NNS hospice NN hospices NNS hospitable JJ hospital NN hospital-care NN hospitality NN hospitalization NN hospitalizations NNS hospitalized VBN hospitals NNS hoss NN hosses NNS host NN host-specific JJ hostage NN hostages NNS hoste NN hosted VBN hostelries NNS hostess NN hostesses NNS hostile JJ hostile-bid JJ hostilities NNS hostility NN hosting VBG hostler NN hosts NNS hot JJ hot-air JJ hot-blooded JJ hot-buttons NNS hot-cereals NNS hot-cold JJ hot-colored JJ hot-dipped JJ hot-dog JJ hot-formed JJ hot-honey JJ hot-line NN hot-pink JJ hot-rolled JJ hot-selling JJ hot-shot JJ hot-slough JJ hot-tempered JJ hot-ticket JJ hot-water NN hotbed NN hotdog NN hotdogs NNS hotel NN hotel-casino NN hotel-casinos NNS hotel-management NN hotel-motel NN hotel-restaurant NN hotel\/casino NN hotel\/entertainment NN hotelier NN hoteliers NNS hotelman NN hotels NNS hothouse JJ hothouses NNS hotline NN hotlines NNS hotly RB hotrod NN hotter JJR hottest JJS hottest-selling JJS hound NN hounded VBD hounding VBG hounds NNS hour NN hour-and-a-half NN hour-long JJ hourlong JJ hourly JJ hours NNS house NN house-building NN house-cleaning NN house-painting JJ houseboat NN houseboats NNS housebound JJ housebreakers NNS housebreaking NN housebroken JJ housecleaning NN housed VBN houseful NN househld JJ household NN household-products NNS household-type JJ householder NN householders NNS households NNS housekeeper NN housekeeping NN houseman NN housemate NN housepaint NN houses NNS housewares NNS housewarming JJ housewife NN housewives NNS housework NN housing NN housing-assistance JJ housing-construction NN housing-discrimination NN housing-loan NN housing-policy NN housing-related JJ housings NNS hove VBD hovel NN hovels NNS hover VB hovered VBD hoverin VBG hovering VBG hovers VBZ how WRB how-to JJ howdy UH howe WRB however RB howitzer NN howl NN howled VBD howlers NNS howling VBG howls NNS howse NN howsomever RB hoydenish JJ hp NN hp. NN hr NN hr. NN http://bit.ly/ NNP hub NN hub-and-spoke JJ hubba UH hubbub NN hubby NN hubris NN hubs NNS huckster NN huckstering VBG huddle NN huddled VBD huddles NNS huddling VBG hue NN hues NNS huffed VBD hug NN huge JJ hugely RB hugged VBD hugging VBG huggings NNS hugh JJ hugs NNS huh UH huh-uh JJ hula NN hulk NN hulking JJ hulks NNS hull NN hull-first RB hullabaloo NN hum NN humaine NN human JJ human-based JJ human-generated JJ human-leukocyte-derived JJ human-resource JJ human-resources NNS human-rights JJ human-robot NN human-sounding JJ humane JJ humanely RB humaneness NN humanism NN humanist JJ humanistic JJ humanists NNS humanitarian JJ humanities NNS humanity NN humanize VB humanizing VBG humankind NN humanly RB humanness NN humans NNS humble JJ humbled VBN humblest JJS humbling JJ humbly RB humid JJ humidity NN humilation NN humiliated VBN humiliates VBZ humiliating JJ humiliatingly RB humiliation NN humility NN humly RB hummable JJ hummed VBD humming NN hummocks NNS humongous JJ humor NN humorist NN humorists NNS humorless JJ humorous JJ humors NNS humour NN hump NN hump-backed JJ humped NN hums VBZ hunch NN hunched VBN hunched-up JJ hunches NNS hunching VBG hundred CD hundred-and-eighty-degree JJ hundred-and-fifty JJ hundred-leaf JJ hundred-odd JJ hundred-thousand-share JJ hundred-yen JJ hundreds NNS hundreds-of-billions-of-yen JJ hundredth JJ hundredweight NN hung VBD hunger NN hungrier JJR hungrily RB hungry JJ hunk NN hunker VB hunkered VBN hunky-dory JJ hunt NN hunted VBN hunter NN hunter-gatherers NNS hunter-killer NN hunters NNS hunting NN hunting-gear JJ hunts VBZ hurdle NN hurdled VBD hurdles NNS hurl VB hurled VBD hurler NN hurlers NNS hurley NN hurling VBG hurls VBZ hurrah NN hurricane NN hurricane-hit JJ hurricane-prone JJ hurricane-ravaged JJ hurricane-related JJ hurricane-stricken JJ hurricane-wracked JJ hurricanes NNS hurried VBD hurriedly RB hurries VBZ hurry NN hurrying VBG hurt VBN hurting VBG hurtled VBD hurtling VBG hurts VBZ husband NN husband-and-wife JJ husband-stealer NN husband-wife JJ husbandry NN husbands NNS husbun NN hush JJ hush-hush JJ hushed JJ husk NN huskily RB huskiness NN husks NNS husky JJ husky-voiced JJ hustings NN hustle VB hustled VBD hustler NN hustlers NNS hustles VBZ hustling VBG hut NN hutch NN hutment NN hutments NNS huts NNS huzzahs NNS hyacinths NNS hyaline JJ hyalinization NN hyaluronic JJ hybrid JJ hybrids NNS hydra-headed JJ hydrated JJ hydration NN hydraulic JJ hydraulically RB hydraulics NNS hydride NN hydrides NNS hydrido NN hydrocarbon NN hydrocarbon-storage NN hydrocarbons NNS hydrochemistry NN hydrochloride NN hydrochlorothiazide NN hydroelectric JJ hydrogen NN hydrogens NNS hydrolysis NN hydrolyzed VBN hydrophilic JJ hydrophobia NN hydrophobic JJ hydrostatic JJ hydrotherapy NN hydrous JJ hydroxyl-rich JJ hydroxylation NN hydroxymethyl NN hyenas NNS hygiene NN hygienic JJ hym PRP hymen NN hymens NNS hymn NN hymns NNS hymselfe NN hype NN hyped VBD hyped-up JJ hyper JJ hyper-competitive JJ hyper-inflation NN hyper-trader NN hyperactive JJ hyperbole NN hyperbolic JJ hyperbolically RB hypercellularity NN hyperemia NN hyperemic JJ hyperfine JJ hyperinflation NN hypermarket NN hypermarkets NNS hyperplasia NN hypersonic JJ hypertension NN hypertrophied VBN hypertrophy NN hypervelocity NN hyperventilating NN hyperzeal NN hyphenated JJ hyphens NNS hyping VBG hypnosis NN hypnotic JJ hypnotically RB hypnotized VBN hypo JJ hypoactive JJ hypoadrenocorticism NN hypocellularity NN hypocracy NN hypocrisies NNS hypocrisy NN hypocrite NN hypocrites NNS hypocritical JJ hypodermic JJ hypoglycemia NN hypoglycemic JJ hypophyseal JJ hypophysectomised VBN hypostatization NN hypothalamic JJ hypothalamic-cortical JJ hypothalamically RB hypothalamus NN hypotheses NNS hypothesis NN hypothesize VB hypothesized VBN hypothetical JJ hypothetically RB hypothyroidism NN hys PRP$ hysterectomy NN hysteria NN hysterical JJ hysterically RB hysteron-proteron NN hytt PRP i PRP i'm VBP i've VBP i-th NN i.d NN i.d. NN i.e. FW i860 NN iMac NNP iPad NNP iPhone NNP iPod NNP iambic JJ ibuprofen NN ice NN ice-baggers NNS ice-breaker JJ ice-chest NN ice-cold NN ice-core NN ice-cream NN ice-cubes NNS ice-feeling NN ice-filled JJ ice-free JJ iceberg NN icebergs NNS icebound JJ icebox NN icecap NN iced JJ iced-tea NN icicle NN icing NN icon NN iconoclasm NN iconoclast NN iconoclastic JJ icons NNS icy JJ idea NN idea-exchange NN ideal JJ idealism NN idealisms NNS idealist NN idealistic JJ idealization NN idealized VBN ideally RB ideals NNS ideas NNS ideational JJ identical JJ identically RB identifiable JJ identification NN identifications NNS identified VBN identifier NN identifiers NNS identifies VBZ identify VB identifying VBG identities NNS identity NN identity-management NN ideological JJ ideologically RB ideologies NNS ideologist NN ideologists NNS ideologues NNS ideology NN ides NNS idiocies NNS idiocy NN idiom NN idiomatic JJ idioms NNS idiosyncrasies NNS idiosyncratic JJ idiot JJ idiot-grin NN idiotic JJ idiotically RB idiots NNS idiotypes NNS idk VBP idle JJ idled VBN idleness NN idler NN idlers NNS idling VBG idlings NNS idly RB idol NN idol-worship NN idolatry NN idolize VBP idolized JJ idols NNS idosyncratic JJ idyll NN idyllic JJ if IN iffy JJ ifs NNS igloo NN igneous JJ ignite VB ignited VBD ignition NN ignoble JJ ignominious JJ ignominiously RB ignoramus NN ignorance NN ignorant JJ ignore VB ignored VBN ignores VBZ ignoring VBG iguana JJ iguanas NNS iight UH iit PRP ij NN ikey-kikey JJ ileum NN iliac JJ ilk NN ill JJ ill-advised JJ ill-conceived JJ ill-defined JJ ill-disposed JJ ill-equipped JJ ill-fated JJ ill-fitting JJ ill-founded JJ ill-gotten JJ ill-mannered JJ ill-prepared JJ ill-starred JJ ill-suited JJ ill-timed JJ ill-trained JJ ill-understood JJ illegal JJ illegalities NNS illegality NN illegally RB illegitimacy NN illegitimate JJ illicit JJ illicitly RB illiquid JJ illiquidity NN illiteracy NN illiterate JJ illness NN illnesses NNS illogic NN illogical JJ ills NNS illuminate VB illuminated VBN illuminates VBZ illuminating JJ illumination NN illuminations NNS illumine VB illumined VBD illumines VBZ illusion NN illusionary JJ illusionist NN illusions NNS illusive JJ illusiveness NN illusory JJ illustrate VB illustrated VBN illustrates VBZ illustrating VBG illustration NN illustrations NNS illustrative JJ illustrator NN illustrators NNS illustrious JJ im VBP ima VBP image NN image-building JJ image-making NN image-processing NN image-provoking JJ imaged VBN imagery NN images NNS imaginable JJ imaginary JJ imagination NN imaginations NNS imaginative JJ imaginatively RB imagine VB imagined VBN imagines VBZ imaging NN imagining VBG imaginings NNS imagnation NN imbalance NN imbalances NNS imbecile NN imbecility NN imbedded VBN imbibe VB imbibed VBN imbroglio NN imbruing VBG imbued VBN imcomparable JJ imcomplete JJ imitate VB imitated VBN imitates VBZ imitating VBG imitation NN imitation-caning JJ imitation-woodgrain NN imitations NNS imitative JJ imitators NNS imma VBP immaculate JJ immanent JJ immaterial JJ immature JJ immaturity NN immeasurable JJ immeasurably RB immediacies NNS immediacy NN immediate JJ immediate-response JJ immediately RB immemorial JJ immense JJ immensely RB immensities NNS immensity NN immersed VBN immersion NN immigrant NN immigrants NNS immigrated VBD immigration NN imminence NN imminent JJ imminently RB immiserated JJ immobility NN immobilized VBN immoderate JJ immodest JJ immodesty NN immoral JJ immoralities NNS immorality NN immortal JJ immortality NN immortalized VBN immovable JJ immune JJ immune-system NN immunities NNS immunity NN immunization NN immunized VBN immunodeficiency NN immunoelectrophoresis NN immunoglobulin NN immunological JJ immunologist NN immunology NN immunosuppressive JJ immutable JJ impact NN impacted VBN impaction NN impacts NNS impair VB impaired VBN impairment NN impaled VBN impaling VBG impart VB impartation NN imparted VBN impartial JJ impartiality NN imparting VBG imparts VBZ impassable JJ impasse NN impassible JJ impassioned JJ impassive JJ impassively RB impassiveness NN impatience NN impatiens NNS impatient JJ impatiently RB impeached VBN impeachment NN impeccable JJ impeccably RB impede VB impeded VBN impedes VBZ impediment NN impediments NNS impeding VBG impelled VBN impelling JJ impels VBZ impending JJ impenetrable JJ imperative JJ imperatives NNS imperceptible JJ imperceptibly RB imperfect JJ imperfectability NN imperfection NN imperfections NNS imperfectly RB imperial JJ imperialism NN imperialist NN imperialists NNS imperil VB imperiled VBN imperiling VBG imperilled VBN imperious JJ imperiously RB imperishable JJ impermissible JJ impersonal JJ impersonalized JJ impersonally RB impersonated VBN impersonates VBZ impersonation NN impersonations NNS impersonator NN impertinent JJ imperturbable JJ impervious JJ impetigo NN impetuous JJ impetuousness NN impetus NN impiety NN impinge VB impinging VBG impious JJ implacable JJ implant NN implantable JJ implantation NN implanted VBN implanting VBG implausible JJ implausibly RB implement VB implementation NN implemented VBN implementer NN implementing VBG implements NNS implicate VB implicated VBN implication NN implications NNS implicit JJ implicitly RB implied VBN implies VBZ implore VB implored VBN implores VBZ imploring VBG imply VB implying VBG impolite JJ impolitic JJ imponderable JJ imponderables NNS import NN import-export JJ import-incentive JJ import-restricting JJ import-screening NN importance NN important JJ important-looking JJ importantly RB importation NN imported VBN imported-food NN importer NN importers NNS importing VBG imports NNS importunately RB importunities NNS impose VB imposed VBN imposes VBZ imposing VBG imposition NN impossibility NN impossible JJ impossibly RB impostor NN impotence NN impotency NN impotent JJ impound VB impounded VBN impoundment NN impoundments NNS impoverished JJ impoverishment NN impracticable JJ impractical JJ impracticality NN imprecates VBZ imprecations NNS imprecise JJ imprecisely RB impregnable JJ impresario NN impress VB impressed VBN impresser NN impresses VBZ impressing VBG impression NN impressionism NN impressionist NN impressionistic JJ impressionistically RB impressionists NNS impressions NNS impressive JJ impressively RB imprimatur NN imprint VB imprinted VBN imprints NNS imprison VB imprisoned VBN imprisoning VBG imprisonment NN imprisons VBZ improbability NN improbable JJ improbably RB impromptu JJ improper JJ improperly RB improprieties NNS impropriety NN improve VB improved VBN improvement NN improvements NNS improves VBZ improvident JJ improvidently RB improving VBG improvisation NN improvisational JJ improvisations NNS improvisatory JJ improvise VB improvised VBD improviser NN improvisers NNS improvises VBZ improvising NN imprudence NN imprudent JJ imprudently RB impudence NN impudent JJ impudently RB impugn VB impugned VBN impugning VBG impulse NN impulse-related JJ impulses NNS impulsive JJ impulsively RB impunity NN impure JJ impurities NNS impurity NN impurity-doped JJ imput NN imputation NN impute VBP imputed VBN in IN in-accord-with-nature JJ in-and-outer NN in-crowd NN in-depth JJ in-fighting NN in-group JJ in-groups NN in-grown JJ in-home JJ in-house JJ in-jokes NNS in-kind JJ in-law NN in-laws NNS in-migrants NNS in-migration NN in-office JJ in-patient JJ in-person JJ in-plant JJ in-room JJ in-state JJ in-store JJ in. NN in... : in\ JJ inability NN inaccessible JJ inaccuracies NNS inaccuracy NN inaccurate JJ inaccurately RB inaction NN inactivate VB inactivated VBD inactivation NN inactive JJ inactivity NN inadequacies NNS inadequacy NN inadequate JJ inadequately RB inadvertence NN inadvertent JJ inadvertently RB inadvisable JJ inalienable JJ inane JJ inanimate JJ inapplicable JJ inappropriate JJ inappropriately RB inappropriateness NN inapt JJ inarticulate JJ inasmuch RB inattention NN inattentive JJ inaudible JJ inaugural JJ inaugurated VBN inaugurating VBG inauguration NN inauspicious JJ inboard JJ inboards NNS inborn JJ inbound JJ inbreeding VBG inc. NNP incalculable JJ incandescent JJ incantation NN incanted VBD incapable JJ incapacitated VBN incapacitating JJ incapacity NN incarcerate VB incarcerated VBN incarceration NN incarnate JJ incarnation NN incarnations NNS incautious JJ incautiously RB incendiaries NNS incendiary JJ incense NN incensed VBN incentive NN incentive-backed JJ incentive-bonus NN incentive-buoyed JJ incentive-maximizing JJ incentive-pay JJ incentive-reduced JJ incentive-spurred JJ incentives NNS incepted VBD incepting VBG inception NN inceptor NN incertain JJ incessant JJ incessantly RB incest NN incestuous JJ inch NN inched VBD inches NNS inching VBG inchworm NN incidence NN incident NN incidental JJ incidentally RB incidentals NNS incidents NNS incineration NN incinerator NN incinerators NNS incipience NN incipiency NN incipient JJ incise VB incisions NNS incisive JJ incisiveness NN incite VB incited VBN incitement NN incitements NNS inciting VBG inclement JJ inclination NN inclinations NNS incline NN inclined VBN inclosed VBN include VBP included VBD includee VBP includes VBZ including VBG inclusion NN inclusions NNS inclusive JJ inclusiveness NN incoherence NN incoherent JJ incoherently RB income NN income-earner NN income-oriented JJ income-paying JJ income-producing JJ income-support NN income-tax NN incomes NNS incoming JJ incomparable JJ incomparably RB incompatibility NN incompatible JJ incompatibles NNS incompetence NN incompetency NN incompetent JJ incompetently RB incompetents NNS incomplete JJ incompletely RB incompleteness NN incomprehensible JJ incomprehension NN inconceivable JJ inconclusive JJ inconclusively RB incongruities NNS incongruity NN incongruous JJ inconsequential JJ inconsiderable JJ inconsistencies NNS inconsistency NN inconsistent JJ inconsistently RB inconspicuous JJ inconspicuously RB incontestable JJ incontrovertible JJ inconvenience NN inconveniences NNS inconvenient JJ inconveniently RB incorporate VB incorporated VBN incorporates VBZ incorporating JJ incorporation NN incorrect JJ incorrectly RB incorrigible JJ incorruptibility NN incorruptible JJ increase NN increase-results NNS increased VBN increases NNS increasing VBG increasing-rate JJ increasingly RB incredible JJ incredibly RB incredulity NN incredulously RB increment NN incremental JJ increments NNS incriminating VBG incubate VB incubated VBN incubating VBG incubation NN incubi NNS incubus NN inculcated VBD inculcation NN incumbencies NNS incumbency NN incumbent JJ incumbent-protection JJ incumbents NNS incur VB incurable JJ incurably RB incurred VBN incurring VBG incurs VBZ incursion NN indebted JJ indebtedness NN indecency NN indecent JJ indecipherable JJ indecision NN indecisive JJ indecisively RB indecisiveness NN indeed RB indefatigable JJ indefensible JJ indefinable JJ indefinite JJ indefinitely RB indefiniteness NN indefinity NN indelible JJ indelibly RB indelicate JJ indemnification NN indemnify VB indemnifying VBG indemnity NN indentations NNS indenture NN indentured VBN independant JJ independence NN independent JJ independent-contractor JJ independent-minded JJ independently RB independents NNS indescribable JJ indestructibility NN indestructible JJ indeterminable JJ indeterminate JJ index NN index-arbitrage NN index-arbitrage-related JJ index-fund JJ index-futures JJ index-linked JJ index-options NNS index-related JJ index-trading NN indexation NN indexed VBN indexer NN indexers NNS indexes NNS indexing NN indicate VB indicated VBD indicates VBZ indicating VBG indication NN indications NNS indicative JJ indicator NN indicators NNS indices NNS indict VB indicted VBN indictment NN indictments NNS indifference NN indifferent JJ indigation NN indigenous JJ indigent JJ indigents NNS indigestible JJ indigestion NN indignant JJ indignantly RB indignation NN indignities NNS indignity NN indirect JJ indirection NN indirectly RB indirectness NN indiscreet JJ indiscretions NNS indiscriminantly RB indiscriminate JJ indiscriminating JJ indispensability NN indispensable JJ indispensable... : indispensible JJ indisposed JJ indisposition NN indisputable JJ indisputably RB indistinct JJ indistinguishable JJ indium NN individual JJ individual-contributor NN individual-investor NN individual-retirement-account NN individual-type JJ individualism NN individualist NN individualistic JJ individualists NNS individuality NN individualized JJ individualizing VBG individually RB individuals NNS individuate VB individuation NN indivisibility NN indivisible JJ indoctrinated VBN indoctrinating NN indoctrination NN indolence NN indolent JJ indolently RB indomitable JJ indoor JJ indoors NN indorsed VBD indpendent JJ indubitable JJ induce VB induced VBN inducement NN inducements NNS induces VBZ inducing VBG inducted VBN inductees NNS induction NN inductions NNS indulge VB indulged VBD indulgence NN indulgences NNS indulgent JJ indulges VBZ indulging VBG industralization NN industrial JJ industrial-automation NN industrial-equipment NN industrial-gas JJ industrial-gases JJ industrial-product NN industrial-production JJ industrial-property NN industrial-services JJ industrial-vehicle NN industrialism NN industrialist NN industrialists NNS industrialization NN industrialize VB industrialized VBN industrialized'em NN industrially RB industrials NNS industries NNS industrious JJ industriously RB industry NN industry-financed JJ industry-funded JJ industry-government JJ industry-specific JJ industry-standard JJ industry-supported JJ industry-wide JJ industryas NNS industrywide JJ industy NN indwelling VBG inedible JJ ineffable JJ ineffably RB ineffective JJ ineffectively RB ineffectiveness NN ineffectual JJ inefficiencies NNS inefficiency NN inefficient JJ ineligible JJ ineluctable JJ inept JJ ineptitude NN ineptly RB ineptness NN inequalities NNS inequality NN inequitable JJ inequitably RB inequities NNS inequity NN inert JJ inertia NN inertial JJ inescapable JJ inescapably RB inevitabilities NNS inevitability NN inevitable JJ inevitably RB inexact JJ inexcusable JJ inexhaustible JJ inexorable JJ inexorably RB inexpensive JJ inexperience NN inexperienced JJ inexpert JJ inexplicable JJ inexplicably RB inexplicit JJ inexpressible JJ inexpressibly RB inextricable JJ inextricably RB infallibility NN infallible JJ infamous JJ infamy NN infancy NN infant NN infant-formula NN infant-mortality JJ infantile JJ infantry NN infantryman NN infantrymen NNS infants NNS infarct NN infarction NN infatuation NN infect VB infected VBN infecting VBG infection NN infection-fighting JJ infection-screening JJ infections NNS infectious JJ infelicitous JJ infer VB infer... : inferable JJ inference NN inferences NNS inferential JJ inferior JJ inferiority NN infernal JJ infernally RB inferno NN inferred VBD infertile JJ infertility NN infest VB infestation NN infestations NNS infested VBN infesting VBG infests VBZ infidel JJ infidelity NN infidels NNS infield NN infielder NN infielders NNS infighting NN infiltrate VB infiltrated VBN infiltrating VBG infiltration NN infinite JJ infinitely RB infinitesimal JJ infinitesimally RB infinitive NN infinitum FW infinity NN infirm JJ infirmary NN infirmity NN inflame VB inflamed JJ inflammation NN inflammations NNS inflammatory JJ inflate VB inflated JJ inflates VBZ inflating VBG inflation NN inflation-adjusted JJ inflation-created JJ inflation-fighting JJ inflation-free JJ inflation-fuels-growth JJ inflation-growth NN inflation-hedge JJ inflation-induced JJ inflation-offsetting JJ inflation-wary JJ inflation\/deflation NN inflationary JJ inflations NNS inflected VBN inflecting VBG inflection NN inflections NNS inflexible JJ inflict VB inflicted VBD inflicting VBG infliction NN inflight JJ inflow NN inflows NNS influence NN influence-peddling NN influenced VBN influences NNS influencing VBG influent JJ influential JJ influenza NN influenza-pneumonia JJ influx NN inform VB informal JJ informality NN informally RB informant NN informants NNS informatics NNS information NN information-cell NN information-delivery NN information-display JJ information-gathering JJ information-processing NN information-products NNS information-seeking NN information-service NN information-services JJ information-system JJ information-systems NNS information-technology JJ informational JJ informative JJ informed VBN informer JJ informing VBG informs VBZ infra FW infraction NN infractions NNS infrared JJ infrastructural JJ infrastructure NN infrastructures NNS infrequent JJ infrequently RB infringe VB infringed VBD infringement NN infringements NNS infringes VBZ infringing VBG infuriate VB infuriated VBD infuriating JJ infuriation NN infuse VB infused VBN infusion NN infusion-therapy JJ infusions NNS ingenious JJ ingeniously RB ingenuity NN ingest VBP ingested VBD ingestion NN inglorious JJ ingloriously RB ingot NN ingots NNS ingrained JJ ingrates NNS ingratiate VB ingratiating JJ ingratitoode NN ingratitude NN ingredient NN ingredients NNS inhabit VBP inhabitants NNS inhabitation NN inhabited VBN inhabiting VBG inhabits VBZ inhalation NN inhaling VBG inharmonious JJ inherent JJ inherently RB inheres VBZ inherit VB inheritable JJ inheritance NN inherited VBN inheriting VBG inheritor NN inheritors NNS inherits VBZ inhibit VB inhibited VBD inhibiting VBG inhibition NN inhibitions NNS inhibitor NN inhibitors NNS inhibitory JJ inhibits VBZ inholdings NNS inhomogeneous JJ inhospitable JJ inhuman JJ inhumane JJ inhumanities NNS inimical JJ inimitable JJ iniquities NNS iniquitous JJ initial JJ initial'well NN initialed VBD initialing VBG initially RB initials NNS initiate VB initiated VBN initiates VBZ initiating VBG initiation NN initiatiors NNS initiative NN initiatives NNS initiator NN initiatve NN inject VB injected VBN injecting VBG injection NN injection-molded JJ injections NNS injects VBZ injunction NN injunctions NNS injunctive JJ injure VB injured VBN injures VBZ injuries NNS injuring VBG injurious JJ injury NN injury-prone JJ injustice NN injustices NNS ink NN ink-jet JJ ink-jetting JJ inkblots NNS inking NN inkling NN inks NNS inkstand NN inky-brown JJ inlaid VBN inland RB inlay NN inlet NN inlets NNS inmate NN inmates NNS inn NN innards NNS innate JJ innately RB inner JJ inner-city JJ inner-ear JJ innermost JJ inning NN innings NN innocence NN innocent JJ innocently RB innocents NNS innoculated VBN innoculating VBG innoculation NN innocuous JJ innovate VB innovated VBD innovation NN innovations NNS innovative JJ innovativeness NN innovator NN innovators NNS innovators... : inns NNS innuendo NN innuendoes NNS innumerable JJ inoculate VB inoculation NN inoculations NNS inoperable JJ inoperative JJ inopportune JJ inordinate JJ inordinately RB inorganic JJ inpatient NN inpatients NNS inpenetrable JJ inplace NN inpost NN input NN inputs NNS inquest NN inquire VB inquired VBD inquiries NNS inquiring JJ inquiry NN inquisitive JJ inquisitiveness NN inquisitor NN inroad NN inroads NNS insane JJ insanely RB insanity NN insatiable JJ inscribed VBN inscription NN inscriptions NNS inscrutability NN inscrutable JJ insect NN insecticide NN insecticides NNS insects NNS insecure JJ insecurities NNS insecurity NN insemination NN insensitive JJ insensitivity NN inseparable JJ insert VB inserted VBN inserting VBG insertion NN insertions NNS inserts NNS inset NN insets NNS inshore JJ inside IN inside-the-Beltway NN inside-the-beltway NN insider NN insider-selling NN insider-trading NN insiders NNS insides NNS insidious JJ insidiously RB insight NN insightful JJ insights NNS insignificance NN insignificances NNS insignificant JJ insincere JJ insinuate VB insinuated VBD insinuates VBZ insinuating VBG insinuation NN insinuations NNS insinuendo NN insipid JJ insist VBP insisted VBD insistence NN insistent JJ insistently RB insisting VBG insists VBZ insofar RB insolence NN insolent JJ insolently RB insoluble JJ insolvencies NNS insolvency NN insolvent JJ insomma FW insomnia NN insomniacs NNS insouciance NN inspect VB inspected VBN inspecting VBG inspection NN inspections NNS inspector NN inspector-general JJ inspectors NNS inspiration NN inspirational JJ inspirationally RB inspirations NNS inspire VB inspired VBN inspires VBZ inspiring JJ insta-book NN instability NN install VB installation NN installations NNS installed VBN installer NN installing VBG installment NN installment-loan JJ installments NNS instalments NNS instance NN instances NNS instancy NN instant NN instant-camera NN instant-credit NN instant-replay NN instantaneous JJ instantaneously RB instantly RB instead RB instigate VB instigated VBD instigating VBG instigation NN instigator NN instigators NNS instill VB instillation NN instills VBZ instinct NN instinctive JJ instinctively RB instincts NNS instinctual JJ institute NN institute-sponsored JJ instituted VBN institutes NN instituting VBG institution NN institution-wide JJ institutional JJ institutional-type JJ institutionalized VBN institutionally RB institutions NNS instruct VB instructed VBN instructing VBG instruction NN instruction-set JJ instructional JJ instructions NNS instructive JJ instructor NN instructors NNS instructs VBZ instrument NN instrument-jammed JJ instrumental JJ instrumental-reward JJ instrumentalists NNS instrumentalities NNS instrumentally RB instrumentals NNS instrumentation NN instrumented JJ instruments NNS insubordinate JJ insubordination NN insubstantial JJ insufferable JJ insufferably RB insufficient JJ insufficiently RB insularity NN insulate VB insulated VBN insulating VBG insulation NN insulator NN insulators NNS insulin NN insulin-dependent JJ insulins NNS insult NN insulted VBN insulting JJ insults NNS insuperable JJ insuperably RB insupportable JJ insurability NN insurance NN insurance-claims NNS insurance-company NN insurance-cost JJ insurance-holding JJ insurance-industry NN insurance-policy NN insurance-premium-finance JJ insurance-rate JJ insurance-reform JJ insure VB insure... : insured VBN insurer NN insurers NNS insures VBZ insurgence NN insurgency NN insurgent JJ insurgents NNS insurgents. NNS insuring VBG insurmountable JJ insurrection NN insurrections NNS intact JJ intactible JJ intake NN intangible JJ intangibles NNS integer NN integers NNS integral NN integrals NNS integrate VB integrated VBN integrated-circuit JJ integrated-steel NN integrated-technologies NNS integrates VBZ integrating VBG integration NN integrative JJ integrator NN integrators NNS integrity NN intellect NN intellectual JJ intellectual-literary JJ intellectual-property JJ intellectuality NN intellectually RB intellectuals NNS intellectus FW intelligence NN intelligence-briefing NN intelligence-sharing NN intelligent JJ intelligently RB intelligentsia NN intelligible JJ intemperance NN intend VBP intendant NN intendants NNS intended VBN intending VBG intends VBZ intense JJ intensely RB intensification NN intensified VBN intensifier NN intensifiers NNS intensify VB intensifying VBG intensities NNS intensity NN intensive JJ intensive-care JJ intensively RB intent NN intention NN intentional JJ intentionally RB intentioned JJ intentions NNS intently RB intents NNS inter FW inter-American JJ inter-Arab JJ inter-German JJ inter-agency JJ inter-bank JJ inter-city JJ inter-company JJ inter-exchange JJ inter-governmental JJ inter-industry JJ inter-office JJ inter-plant JJ inter-relation NN inter-relationships NNS inter-species JJ inter-town JJ inter-tribal JJ interact VBP interacting VBG interaction NN interactions NNS interactive JJ interacts VBZ interagency NN interaxial JJ interbank NN interbreeding VBG intercede VB interceded VBD intercept NN intercepted VBD interception NN interceptor NN interceptors NNS intercepts NNS interchangable JJ interchange NN interchangeable JJ interchanges NNS intercity JJ interclass JJ intercollegiate JJ intercom NN intercompany NN interconnect NN interconnected VBN interconnectedness NN interconnections NNS intercontinental JJ intercorporate JJ intercourse NN intercrisis NN interdenominational JJ interdepartmental JJ interdependence NN interdependent JJ interdicting VBG interdiction NN intereference NN interessant FW interest NN interest-bearing JJ interest-deferred JJ interest-free JJ interest-only JJ interest-rate NN interest-rate-sensitive JJ interest-rate-type JJ interest-sensitive JJ interest-subsidy NN interested JJ interesting JJ interestingly RB interestrate NN interests NNS interface NN interfaces NNS interfacial JJ interfaith JJ interfere VB interfered VBD interference NN interference-like JJ interferes VBZ interfering VBG interferometer NN interferometers NNS interferon NN intergenerational JJ interglacial JJ intergovernmental JJ intergrated-steel NN intergroup JJ interim JJ interim-dividend NN interior JJ interior-construction NN interior-decorating JJ interior-furnishings NNS interiors NNS interject VBP interjected VBD interjects VBZ interlaced VBN interlacing VBG interlayer NN interleukin-1 NN interleukin-2 NN interleukin-3 NN interleukin-4 NN interlibrary JJ interlining NN interlinked VBN interlobular JJ interlocking VBG interlocutor NN interloper NN interlopers NNS interloping VBG interlude NN interludes NNS intermarket JJ intermediaries NNS intermediary NN intermediate JJ intermediate-range JJ intermediate-term JJ intermediates NNS interment NN intermeshed VBN interminable JJ intermingle VBP interministerial JJ intermission NN intermissions NNS intermittent JJ intermittently RB intermixed VBD intermodal JJ intermolecular JJ intern NN internal JJ internal-external JJ internal-security NN internalized VBN internally RB international JJ international-capital JJ international-defense NN international-leasing JJ international-money-markets NN international-operations NNS international-payments NNS international-share JJ international\ JJ internationalism NN internationalist JJ internationalists NNS internationalization NN internationalize VB internationalized VBN internationalizing VBG internationally RB internationals NNS interne FW interned VBN internet NN interning VBG internist NN internists NNS internment NN interns NNS interoffice JJ interparty NN interpenetrate VBP interpenetrates VBZ interpenetration NN interpeople JJ interpersonal JJ interplanetary JJ interplay NN interpolated VBD interpolation NN interpolations NNS interposed VBN interposing VBG interposition NN interpret VB interpretable JJ interpretation NN interpretations NNS interpretative JJ interpreted VBN interpreter NN interpreters NNS interpreting VBG interpretive JJ interpretor NN interprets VBZ interprovincial JJ interred VBD interregnum NN interrelated VBN interrelation NN interrelations NNS interrelationship NN interrelationships NNS interrogate VB interrogated VBN interrogation NN interrogatives NNS interrogator NN interrogators NNS interrupt VB interrupted VBN interrupting VBG interruption NN interruptions NNS interrupts VBZ intersect VB intersecting VBG intersection NN intersections NNS interspecies NNS interspersed VBN intersperses VBZ interst NN interstage NN interstate JJ interstates NNS interstellar JJ interstices NNS interstitial JJ intertitles NNS intertwined VBN intertwining VBG interval NN intervals NNS intervene VB intervened VBD intervenes VBZ intervening VBG intervenors NNS intervention NN intervention-speeded JJ intervention... : interventionist JJ interventionists NNS interventions NNS interview NN interviewed VBN interviewee NN interviewees NNS interviewer NN interviewers NNS interviewing VBG interviews NNS interwar JJ interweaving VBG interwoven VBN intestinal JJ intestine NN intestines NNS inti NN intial JJ intifada NN intifadah NN intima NN intimacy NN intimal JJ intimate JJ intimated VBD intimately RB intimating VBG intimation NN intimations NNS intimidate VB intimidated VBN intimidates VBZ intimidating VBG intimidation NN intimidations NNS intitiative NN into IN intolerable JJ intolerably RB intolerance NN intolerant JJ intonaco NN intonation NN intonations NNS intoned VBD intones VBZ intoxicated JJ intoxicating JJ intoxication NN intra-Community JJ intra-EC JJ intra-administration JJ intra-city NN intra-company JJ intra-governmental JJ intra-mural JJ intra-party JJ intra-state JJ intra-stellar NN intra-uterine JJ intracompany JJ intractable JJ intraday JJ intradepartmental JJ intraepithelial JJ intragovernment JJ intramural JJ intramuscularly RB intranasal JJ intransigence NN intransigent JJ intransigents NNS intraocular JJ intraparty JJ intrapreneurship NN intrapulmonary JJ intrastate JJ intratissue NN intrauterine JJ intravenous JJ intravenously RB intrepid JJ intricacies NNS intricate JJ intricately RB intrigue NN intrigued VBN intrigues NNS intriguing JJ intriguingly RB intrinsic JJ intrinsically RB introduce VB introduced VBN introduces VBZ introducing VBG introduction NN introductions NNS introductory JJ introject NN introjected VBN introjects NNS introspection NN introspective JJ introverted VBN intrude VB intruded VBN intruder NN intruders NNS intrudes VBZ intruding VBG intrusion NN intrusions NNS intrusive JJ intuition NN intuitions NNS intuitive JJ intuitively RB inundated VBN inundating VBG inundations NNS inure VB inured VBN invade VB invaded VBD invader NN invaders NNS invades VBZ invading VBG invalid JJ invalidate VB invalidated VBN invalidism NN invalids NNS invaluable JJ invariable JJ invariably RB invariant JJ invasion NN invasion-theory NN invasions NNS invasive JJ invective NN inveigh VBP inveigle VB invent VB invented VBN inventing VBG invention NN inventions NNS inventive JJ inventively RB inventiveness NN inventor NN inventories NNS inventors NNS inventory NN invents VBZ inverse JJ inversely RB inversion NN inversions NNS invert VB invertebrates NNS inverted JJ invest VB investable JJ invested VBN investigate VB investigated VBN investigates VBZ investigating VBG investigation NN investigational JJ investigations NNS investigative JJ investigative-reporting NN investigator NN investigators NNS investing VBG investment NN investment-advisory NN investment-area JJ investment-bank JJ investment-banking NN investment-counseling JJ investment-grade JJ investment-holding JJ investment-house NN investment-insurance NN investment-linked JJ investment-management NN investment-newsletter NN investment-oriented JJ investment-promotion NN investment-recovery NN investment-tax JJ investments NNS investor NN investor-owned JJ investor-relations NNS investors NNS invests VBZ inveterate JJ invidious JJ invigorate VB invigorated VBN invigorating VBG invigoration NN invincible JJ inviolability NN inviolable JJ inviolate JJ invisible JJ invisibles NNS invisibly RB invitation NN invitational JJ invitations NNS invite VB invited VBN invitees NNS invites VBZ inviting VBG invocation NN invoices NNS invoicing NN invoke VB invoked VBD invokes VBZ invoking VBG involuntarily RB involuntary JJ involuntary-control JJ involution NN involutions NNS involutorial JJ involve VB involved VBN involvement NN involvements NNS involves VBZ involving VBG invulnerability NN invulnerable JJ inward RB inward-looking JJ inwardly RB inwardness NN iodide NN iodide-concentrating JJ iodinate VB iodinated VBN iodinating VBG iodination NN iodine NN iodoamino NN iodocompounds NNS iodoprotein NN iodothyronines NNS iodotyrosines NNS ion NN ionic JJ ionized VBN ionizing VBG ionosphere NN ions NNS iota NN ip NN ipso FW irate JJ ire NN iridescent JJ iridium NN irised VBN irk VB irked VBN irks VBZ irksome JJ iron NN iron-casting JJ iron-clad JJ iron-handed JJ iron-ore NN iron-poor JJ iron-rod JJ iron-shod JJ iron-willed JJ ironclad JJ ironed VBN ironfist NN ironic JJ ironic... : ironical JJ ironically RB ironies NNS ironing VBG irons NNS ironworks NN irony NN irradiated VBN irradiation NN irrational JJ irrationality NN irrationally RB irreconcilable JJ irredeemable JJ irredeemably RB irredentism NN irreducible JJ irrefutable JJ irregular JJ irregularities NNS irregularity NN irregularly RB irregulars NNS irrelevant JJ irremediable JJ irreparable JJ irreparably RB irreplaceable JJ irrepressible JJ irreproducibility NN irresistable JJ irresistible JJ irresistibly RB irresolute JJ irresolution NN irresolvable JJ irrespective RB irresponsibility NN irresponsible JJ irresponsibly RB irretrievably RB irreverence NN irreverent JJ irreversibility NN irreversible JJ irreversibly RB irrevocable JJ irrevocably RB irrigate VB irrigating VBG irrigation NN irritability NN irritable JJ irritably RB irritant NN irritants NNS irritate VB irritated VBN irritates VBZ irritating JJ irritation NN irritations NNS irruptions NNS is VBZ is,'hey NN is... : iself NN island NN island-fantasy JJ island-hopping JJ islander NN islanders NNS islands NNS isle NN isms NNS isn't VBZ isnt VBZ isocyanate NN isocyanate-labeled NN isolate VB isolated VBN isolates VBZ isolating VBG isolation NN isolation... : isolationism NN isolationistic JJ isomers NNS isopleths NNS isothermal JJ isothermally RB isotonic JJ isotopic JJ isotropic JJ issuable JJ issuance NN issuances NNS issue NN issued VBN issuer NN issuers NNS issues NNS issues-such JJ issues... : issuing VBG ist FW isthmus NN it PRP it'controlled PRP|JJ it'd MD it'll MD it's VBZ it'so UH it-wit NN it... : italicized VBN italics NNS itch VB itches VBZ itching VBG itchy JJ item NN item-processing JJ item-veto JJ itemization NN itemize VB itemized VBN itemizing VBG items NNS iteration NN itinerant JJ itinerary NN its PRP$ itself PRP itty-bitty JJ ity NN it’s VBZ iuvabit FW ive VBP ivory NN ivory-inlay NN ivory-tower JJ ivy NN ivy-covered JJ j NN jab NN jabbed VBD jabberings NNS jabbing VBG jabs NNS jack VB jackass NN jackbooted JJ jackboots NNS jackdaws NNS jacked VBD jacket NN jacketed JJ jackets NNS jackhammers NNS jacking VBG jackpot NN jade NN jade-handled JJ jaded JJ jag NN jagged JJ jaggedly RB jai FW jail NN jailed VBN jailhouse NN jailing VBG jails NNS jakes NN jalapeno JJ jalopy NN jam NN jamboree NN jammed VBN jammed-together JJ jammies NNS jamming NN jams NNS janglers NNS jangling VBG janitor NN janitors NNS jar NN jargon NN jarred VBD jarring VBG jarringly RB jars NNS jasmine NN jauntily RB jaunts NNS jaunty JJ java NN jaw NN jawbone NN jawboning NN jaws NNS jay NN jays NNS jaywalkers NNS jazz NN jazzmen NNS jazzy JJ je FW jealous JJ jealousies NNS jealously RB jealousy NN jeans NNS jeep NN jeers NNS jejune JJ jejunum NN jell VB jelled VBD jellies NNS jelly NN jellyfish NN jeopardize VB jeopardized VBN jeopardizes VBZ jeopardizing VBG jeopardy NN jerk NN jerked VBD jerking VBG jerkings NNS jerks NNS jerky JJ jersey NN jest NN jester NN jesting VBG jet NN jet-black NN jet-engine NN jet-setters NNS jetliner NN jetliners NNS jetplane NN jets NNS jetting VBG jettison VB jettisoned VBN jettisoning VBG jetty NN jeunes FW jewel NN jewel-bright RB jeweled JJ jeweler NN jewelers NNS jewelery NN jewelery-related JJ jewelled JJ jewelry NN jewels NNS jibes NNS jiffy NN jig NN jigger NN jiggling VBG jigsaw NN jihad NN jillions NNS jilted VBN jimmied VBD jingle NN jingled VBD jingles NNS jingling VBG jinks NNS jinx NN jinxed VBN jist RB jitterbug NN jitters NNS jittery JJ jiu-jitsu FW jiving VBG jk UH jkaay UH job NN job-boosters NNS job-classification NN job-destroying JJ job-hunters NNS job-hunting JJ job-rating JJ job-seekers NNS job-training NN jobless JJ joblessness NN joblot NN jobs NNS jobs-tears NNS jock NN jockey NN jockeying VBG jockeys NNS jocks NNS jocose JJ jocular JJ jocularly RB jocund JJ jog VB jogger NN joggers NNS jogging NN jogs VBZ john NN joie FW join VB joined VBD joiner NN joiners NNS joining VBG joins VBZ joint JJ joint-implants NNS joint-production JJ joint-research JJ joint-return JJ joint-venture JJ joint-venturing NN jointly RB joints NNS joke NN joked VBD jokers NNS jokes NNS joking VBG jokingly RB jolly JJ jollying VBG jolt NN jolted VBD jolting VBG jolts NNS jonquils NNS jonron FW joss NN jostle VBP jostled VBD jostling VBG jot NN jots VBZ jotted JJ jotting VBG jounce NN jour FW journal NN journalese NN journalism NN journalist NN journalistic JJ journalistically RB journalists NNS journals NNS journey NN journeyed VBD journeying VBG journeys NNS joust NN jousting VBG jovial JJ jowl NN jowls NNS jowly JJ joy NN joyful JJ joyfully RB joyless JJ joyous JJ joyously RB joyride NN joys NNS jua FW jubilant JJ jubilantly RB jubilation NN judge NN judge-made JJ judged VBN judgement NN judgements NNS judges NNS judgeship NN judgeships NNS judging VBG judgment NN judgment-proof JJ judgmental JJ judgments NNS judicial JJ judicial-bypass JJ judicial-conduct NN judicially RB judiciaries NNS judiciary NN judicious JJ judiciously RB jug NN juggernaut NN juggle VB jugglers NNS juggling VBG jugs NNS juice NN juice-storage JJ juices NNS juiciest JJS juicy JJ juju NN juke NN julep NN juleps NNS jumble NN jumbled VBN jumbo JJ jumbos NNS jump NN jump-start VB jumped VBD jumped-up JJ jumper NN jumpiness NN jumping VBG jumping-off JJ jumps NNS jumpsuits NN jumpy JJ junction NN juncture NN junctures NNS jungle NN jungles NNS junior JJ junior-grade JJ junior-high JJ junior-philosophical JJ junior-senior JJ junior-year-abroad JJ juniors NNS junk NN junk-LBO JJ junk-bond NN junk-bond-financed JJ junk-bonds NNS junk-financed JJ junk-fund NN junk-holders NNS junk-mail NN junk-market JJ junk-yard NN junkbond NN junkbond-financed JJ junked VBN junket NN junketeering NN junkets NNS junkholders NNS junkie NN junkies NNS junkification NN junkless JJ junkloads NNS junks VBZ junkyard NN junta NN jure FW juridical JJ juries NNS jurisconsults NNS jurisdiction NN jurisdictional JJ jurisdictions NNS jurisprudence NN jurisprudentially RB jurist NN jurists NNS juror NN jurors NNS jury NN jury-duty NN jury-rigged VBD jury-tampering JJ jus RB just RB just-announced JJ just-completed JJ just-concluded JJ just-departed JJ just-ended JJ just-in-time JJ just-picked JJ just-rejuvenated JJ just-revised JJ just-say-no JJ juste FW justice NN justices NNS justiciable JJ justifiable JJ justifiably RB justification NN justifications NNS justified VBN justifies VBZ justify VB justifying VBG justin NNP justitia NN justly RB justness NN jute NN jutting VBG juvenile JJ juxtapose VBP juxtaposed VBN juxtaposes VBZ juxtaposition NN juxtapositions NNS k NN kaffeeklatsch FW kale NN kalega NN kaleidescope NN kaleidoscope NN kali FW kamikaze NN kangaroo NN kangaroo-committee NN kanji FW kapok-filled JJ karaoke FW kava FW kayo VB kayoed VBN kazoo NN kc. NN kebabs NNS kebob NN keddah FW kedgeree NN keel NN keeled VBD keelson NN keen JJ keener JJR keenest JJS keening NN keenly RB keep VB keeper NN keeping VBG keeps VBZ keepsakes NNS keg NN kegful JJ kegs NNS keine FW kelly\ NNP kelp NN ken NN kennel NN kenning NN kennings NNS keno JJ kept VBD keratitis NN kerchief NN kerchiefed JJ kerchiefs NNS kernel NN kernels NNS kerosene NN kerygma FW ketches NNS ketchup NN ketorolac NNP ketosis NN kettle NN key JJ key-financial JJ key-punched JJ key-someone NN keyboard NN keyboarding VBG keyboards NNS keychain NN keyed VBN keyhole NN keying VBG keyless JJ keynote VBP keynotes NNS keypads NNS keys NNS keystone NN keystroke NN khaki JJ khaki-bound JJ khan FW khaneh FW ki-yi-ing VBG kibbutz NN kibbutz-made JJ kibbutzim NNS kibbutzniks NNS kick NN kick-off NN kick-offs NNS kick-starting VBG kick-up NN kickback NN kickbacks NNS kicked VBD kicker NN kickers NNS kicking VBG kickoff NN kicks VBZ kid NN kiddie NN kiddies NNS kidding VBG kidnap VB kidnaped VBN kidnapped VBN kidnapper NN kidnappers NNS kidnapping NN kidney NN kidney-shaped JJ kidney-stone NN kidneys NNS kids NNS kif NN kill VB killable JJ killed VBN killer NN killers NNS killin VBG killing VBG killings NNS kills VBZ kiln NN kilns NNS kilobytes NNS kilogram NN kilograms NNS kilometer NN kilometers NNS kiloton NN kilowatt NN kilowatt-hour NN kilowatt-hours NNS kilowatts NNS kilter NN kilts NNS kimchi FW kimono FW kimpap FW kin NN kind NN kinda RB kinder JJR kindergarten NN kindest JJS kindle VB kindled VBN kindliness NN kindly RB kindness NN kindnesses NNS kindred JJ kinds NNS kinesics NNS kinesthetic JJ kinesthetically RB kinetic JJ kinfolk NNS king NN king-sized JJ kingdom NN kingdom-wide JJ kingdoms NNS kingmaker NN kingpin NN kingpins NNS kings NNS kingside NN kinked JJ kinship NN kiosk NN kisha FW kisha-club JJ kiss NN kissed VBD kisses NNS kissing VBG kissings NNS kit NN kitchen NN kitchen-sink JJ kitchen-table JJ kitchenette NN kitchens NNS kitchenware NN kite NN kits NNS kitschy JJ kitten NN kittenish JJ kittens NNS kitty NN kitty-cornered JJ kiwi NN klaxon NN klieg NN knack NN knackwurst NN kneaded VBN kneading VBG knee NN knee-deep JJ knee-jerk JJ knee-length JJ knee-socked JJ knee-type JJ kneebreeches NNS kneecap NN kneel VB kneeled VBD kneeling VBG kneels VBZ knees NNS knell NN knelt VBD knew VBD knick-knacks NNS knife NN knife-edge NN knife-men NNS knifelike JJ knight NN knight-errant NN knight-errantry NN knighted VBN knightly JJ knights NNS knit VBN knite NN knitted VBN knitting VBG knitwear NN knives NNS kno VB knob NN knobby-knuckled JJ knobs NNS knock VB knock-down JJ knock-off NN knock-offs NNS knock-out JJ knockdown NN knocked VBD knockers NNS knocking VBG knockoff NN knockoffs NNS knockout NN knocks VBZ knoe VB knoll NN knot NN knot-tying JJ knots NNS knott NN knotted JJ knotty JJ know VB know'til VB know-how NN know... : know\/no NN knowed VBN knoweth VBP knowhow NN knowing VBG knowingly RB knowledge NN knowledgeable JJ known VBN knowns NNS knows VBZ knuckle NN knuckle-duster NN knuckleball NN knuckled VBD knuckles NNS koan FW kob NN koinonia NN kola NN kolkhoz NN kolkhozes NNS konga NN kooks NNS kooky JJ kosher JJ kotowaza FW kowtow VB kraft NN kraft-pulp JJ krater NN kraut NN krautheads NNS krona NN kroner NN kronor NNS kryptonite NN ksu'u'peli'afo VB kudos NNS kung-fu NN kwashiorkor NN kwh NNS kwhr NN kwon FW kyat NN kylix NN l NN l'Ange NNP l'Assistance NNP l'Independance NNP l'Osservatore NNP l'Ouest NNP l'Universite NNP l'activite FW l'identite FW l'oeil FW l. DT l987 CD l988 CD la FW la-la JJ lab NN label NN labeled VBN labeling VBG labelled VBN labels NNS labels. NNS labile JJ labor NN labor-backed JJ labor-based JJ labor-force NN labor-funded JJ labor-intensive JJ labor-management JJ labor-saving JJ labor-shortage NN laboratories NNS laboratory NN laboratory-services JJ laboratory-supply JJ labored VBD laborer NN laborers NNS laboring VBG laborious JJ laboriously RB labors NNS labour NN labs NNS labyrinth NN lace NN lace-drawn JJ laced VBN lacerate VB lacerated VBN lacerations NNS laces NNS lacey JJ lacheln FW laches NN lack NN lackadaisical JJ lacked VBD lackeys NNS lacking VBG lackluster JJ lacks VBZ lacquer NN lacquered VBN lactate NN lactating VBG lacy JJ lad NN ladder NN laddered JJ laden JJ ladies NNS ladle NN ladling VBG lads NNS lady NN lady-bugs NNS ladylike JJ laendler JJ lag VB lagers NNS laggard JJ laggardness NN laggards NNS lagged VBN lagging VBG lagoon NN lagoons NNS lags VBZ lahk IN laid VBN laid-back JJ laid-off JJ lain VBN lairs NNS laissez-faire FW laity NN lak IN lake NN lakers NNPS lakes NNS lamb NN lambaste VB lambasted VBD lambastes VBZ lambasting VBG lambs NNS lambskin NN lame JJ lamechian JJ lamechians NNS lament NN lamentations NNS lamented VBD laments VBZ laminate NN laminated VBN laminating VBG lammed VBD lamming VBG lamp NN lamplight NN lampoon VB lampposts NNS lamps NNS lana FW lance NN lanced VBN lances NNS land NN land-based JJ land-disposal NN land-idling JJ land-locked JJ land-ownership NN land-owning JJ land-rich JJ land-use NN landau NN landed VBD landes NNS landfall NN landfill NN landfilling VBG landfills NNS landholdings NNS landing NN landings NNS landlocked JJ landlord NN landlord-tenant JJ landlords NNS landlubber NN landmark NN landmarks NNS landowner NN landowners NNS landro NN lands NNS landscape NN landscaped VBN landscapers NNS landscapes NNS landscaping NN landslide NN landslides NNS lane NN lanes NNS lange FW language NN language-housekeeper JJ languages NNS languid JJ languish VB languished VBN languishes VBZ languishing VBG languorous JJ lankmark NN lanky JJ lantana NN lantern NN lanterns NNS lanthanum NN lanzador FW lap NN lap-shoulder JJ lap-top JJ lapel NN lapels NNS lapidary JJ lapped VBD lappets NNS lapping VBG laps NNS lapse NN lapsed JJ lapses NNS lapsing VBG laptop NN laptops NNS larceny NN lard NN larder NN large JJ large-area JJ large-business JJ large-capital CD large-capitalization JJ large-city JJ large-computer NN large-denomination NN large-deposit JJ large-diameter JJ large-enough JJ large-firm JJ large-package JJ large-scale JJ large-screen JJ large-size JJ large-ticket JJ large-typeface NN large-volume JJ largely RB largely-silent JJ larger JJR larger-capitalization JJ larger-than-anticipated JJ larger-than-expected JJ larger-than-normal JJ largess NN largesse NN largest JJS largest-ever JJ largest-selling JJ largish JJ lark NN larks NNS larkspur NN larvae NNS larval JJ larynx NN lasciviously RB laser NN laser-beam-printer NN laser-read JJ laser-resistant JJ laser-surgery NN laser-treatment NN laser-type JJ lasers NNS lash VB lash-up JJ lashed VBD lashes NNS lashing VBG lashings NNS lass NN lasses NNS lassitude NN lasso NN last JJ last-ditch JJ last-gasp JJ last-mentioned JJ last-minute JJ last-named JJ last-place JJ last-resort JJ last-round JJ last-season JJ last-second JJ lasted VBD lastest JJS lasting VBG lastly RB lasts VBZ latch NN latched VBN latches VBZ latching VBG late JJ late-1988 JJ late-afternoon JJ late-comers NNS late-day JJ late-in-the-day JJ late-night JJ late-payment NN late-summer JJ late-summer\ JJ latecomer NN latecomers NNS lately RB latent JJ later RB lateral JJ latermaturing JJ latest JJS latest-quarter JJ latex NN lath NN lathe NN lather NN lathered VBN lathes NNS latitude NN latitudes NNS lats NNS latter NN latter-day JJ lattice NN laudable JJ laudably RB laudanum NN laudatory JJ lauded VBD laugh NN laughed VBD laugher NN laughing VBG laughingly RB laughingstock NN laughs VBZ laughter NN launch VB launch-control NN launch-pad JJ launch-vehicle NN launched VBN launcher NN launchers NNS launches VBZ launching VBG launchings NNS launder VB laundered VBN launderer NN launderers NNS laundering NN launderings NNS laundries NNS laundromat NN laundry NN laundry-type JJ laureate NN laureates NNS laurel NN laurels NNS lava NN lava-rocks NNS lavatory NN lavender JJ lavish JJ lavished VBD lavishing VBG lavishly RB law NN law-abiding JJ law-and-order NN law-based JJ law-breaking JJ law-enforcement NN law-governed JJ law-making NNS law-school NN law-unto-itself JJ law. NN lawbreakers NNS lawful JJ lawfully RB lawless JJ lawlessness NN lawmaker NN lawmakers NNS lawmaking JJ lawman NN lawmen NNS lawmkers NNS lawn NN lawn-feeding JJ lawn-mower NN lawnmower NN lawns NNS laws NNS lawsuit NN lawsuits NNS lawyer NN lawyering NN lawyers NNS lax JJ laxative NN laxatives NNS laxity NN laxness NN lay VBD lay-offs NNS lay-sisters NNS lay-up JJ layer NN layered VBN layering VBG layers NNS layette NN laying VBG layman NN laymen NNS layoff NN layoffs NNS layout NN layouts NNS laypersons NNS lays VBZ laze VB lazily RB lazy JJ lb NN lb-plus JJ lb. NN lbs NNS lbs. NNS le FW leach VB leaches NNS leaching NN lead VB lead-exposure JJ lead-zinc JJ lead\/sulfur NN leaded JJ leaded-glass JJ leaden JJ leader NN leaderless JJ leaders NNS leadership NN leadership-sanctioned JJ leadership... : leading VBG leading-edge JJ leadings NNS leadoff NN leads VBZ leadsman NN leaf NN leafed VBD leafhopper JJR leafiest JJS leafing VBG leaflet NN leaflets NNS leafmold NN leafy JJ league NN leagued VBN leaguer NN leaguers NNS leagues NNS leak NN leakage NN leaked VBN leaker NN leakers NNS leaking VBG leaks NNS leaky JJ lean JJ lean-to JJ leaned VBD leaner JJR leaning VBG leans VBZ leap NN leaped VBD leapfrog VB leaping VBG leaps NNS leapt VBD learn VB learned VBD learners NNS learning VBG learning-curve JJ learns VBZ leasable JJ lease NN lease-back NN lease-funded JJ lease-rental JJ leaseback NN leased VBN leases NNS leash NN leashes NNS leasing NN least JJS least-cost JJ least-developed-nation JJ leather NN leather-bound JJ leather-hard JJ leather-men NNS leatherbound JJ leathered JJ leathers NNS leathery JJ leave VB leave-taking NN leavened VBD leavening VBG leaves VBZ leavin VBG leaving VBG leaving... : leavings NNS lebensraum NN lebron NNP lecher NN lecherous JJ lectern NN lecture NN lectured VBD lecturer NN lecturers NNS lectures NNS lecturing VBG led VBN ledge NN ledger NN ledgers NNS ledges NNS leech NN leeches NNS leered VBD leering VBG leery JJ leet JJ leeway NN left VBN left-centerfield JJ left-field JJ left-front JJ left-hand JJ left-handed JJ left-justified JJ left-leaning JJ left-of-center JJ left-right JJ left-wing JJ leftfield NN lefthander NN lefthanders NNS leftist JJ leftists NNS leftover JJ leftovers NNS leftward JJ leg NN leg-split JJ legacies NNS legacy NN legal JJ legal-ethics NNS legal-lending JJ legal-services NNS legalistic JJ legality NN legalization NN legalize VB legalized VBN legalizing VBG legally RB legatee NN legation NN legations NNS legato JJ legend NN legendary JJ legends NNS legerdemain NN legged JJ leggings NNS leggy JJ legibility NN legible JJ legion JJ legions NNS legislate VB legislated VBN legislates VBZ legislating VBG legislation NN legislation-delaying JJ legislative JJ legislatively RB legislator NN legislators NNS legislature NN legislatures NNS legitimacy NN legitimate JJ legitimately RB legitimating VBG legitimize VB legitimized VBN legitimizes VBZ legs NNS legume NN leguminous JJ leisure NN leisure-oriented JJ leisure-related JJ leisure-services JJ leisurely JJ leitmotif NN leitmotiv FW lemmas NNS lemme VBP lemmings NNS lemon NN lemon-lime JJ lemon-meringue NN lemonade NN lemons NNS len NN lend VB lend-lease JJ lendable JJ lender NN lenders NNS lending NN lends VBZ length NN lengthen VB lengthened VBN lengthening VBG lengthens VBZ lengthier RBR lengthiest JJS lengthily RB lengths NNS lengthwise RB lengthy JJ leniency NN lenient JJ lens NN lenses NNS lent VBD lentils NNS leopard-trimmed JJ leopards NNS leotards NNS lepidoptery NN leprae NNS leprosy NN les FW lesbianism NN lesbians NNS lesion NN lesions NNS less JJR less-advanced JJ|JJR less-aggressive JJ less-ambitious JJR less-binding JJ less-complicated JJ less-conservative JJ less-creditworthy JJ less-cyclical JJ less-developed JJ less-developed-country JJ less-dramatic JJ less-educated JJ less-effective JJ less-established JJ less-expensive JJ less-experienced JJ less-hurried JJ less-indomitable JJ less-influential JJ less-intrusive JJ less-junky JJR less-liquid JJR less-obvious JJ less-perfectly RBR less-polluting JJ less-popular JJ less-profitable JJ less-restrictive JJ less-rigorous JJR less-risky JJ less-self-confident JJ less-serious JJ less-sweeping JJ less-than-alarming JJ less-than-altruistic JJ less-than-amicable JJ less-than-brilliant JJ less-than-carload JJ less-than-dazzling JJ less-than-diffident JJ less-than-exacting JJ less-than-expected JJ less-than-half-time JJ less-than-perfect JJ less-than-robust JJ less-than-successful JJ less-than-truckload JJ less-toxic JJ less-traveled JJ less-visible JJ less. NN lessen VB lessened VBN lessening NN lessens VBZ lesser JJR lesser-developed JJ lesser-developed-country JJ lesser-known JJ lesser-rank JJR lessers NNS lesson NN lesson-learning NN lesson... : lessons NNS lessor NN lest IN let VB let's VB let's-give-it-a-year JJ let's-make-your-house-our-club JJ let-down NNS let-the-locals-decide JJ letdown NN lethal JJ lethality NN lethargic JJ lethargies NNS lethargy NN lets VBZ letter NN letter-writing JJ lettered VBD letterhead NN lettering NN letterman NN lettermen NNS letters NNS lettin VBG letting VBG lettuce NN letup NN leukemia NN levamisole NN levee NN level NN level-headed JJ leveled VBD levelheadedness NN leveling NN levelled VBN levels NNS lever NN lever-action JJ leverage NN leveraged JJ leveraged-buy-out JJ leveraged-takeover NN leveraging VBG levers NNS levi-clad JJ leviathan JJ levied VBN levies NNS levis NNS levitation NN levity NN levy NN levying VBG lewd JJ lewdly RB lewdness NN lex FW lexical JJ lexicon NN lexicostatistic JJ lexicostatistics NNS liabilities NNS liability NN liabilty NN liable JJ liaison NN liaisons NNS liar NN liars NNS libel NN libeled VBN libellos NNS libelous JJ liberal JJ liberal-arts NNS liberal-conservative JJ liberal-democratic JJ liberal-led JJ liberalism NN liberality NN liberalization NN liberalizations NNS liberalize VB liberalized VBN liberalizing VBG liberally RB liberals NNS liberate VB liberated VBN liberating VBG liberation NN libertarian JJ libertarians NNS libertie NN liberties NNS libertine NN libertines NNS liberty NN libido NN librarian NN librarian-board NN librarians NNS libraries NNS library NN librettists NNS libretto NN lice NNS license NN licensed VBN licensee NN licensees NNS licenses NNS licensing NN licentiousness NN lichen NN licit JJ lick VB licked VBD licking VBG licks VBZ lid NN lidless JJ lids NNS lie VB lied VBD lieder JJ lien NN liens NNS lies VBZ lieu NN lieutenant NN lieutenant-governor NN lieutenants NNS life NN life-and-death JJ life-bettering JJ life-changing JJ life-contracts JJ life-cycle JJ life-death JJ life-enhancement NN life-health NN life-insurance NN life-like JJ life-long JJ life-of-contract JJ life-or-death NN life-saving JJ life-size JJ life-style NN life-supporting JJ life-threatening JJ life-time JJ life... : lifeblood NN lifeboat NN lifeboats NNS lifeguard NN lifeguards NNS lifeless JJ lifelike JJ lifeline NN lifelong JJ lifer NN lifes NNS lifesaving VBG lifesize JJ lifestyle NN lifestyles NNS lifetime NN lift VB lift-ticket JJ lifted VBD lifters NNS lifting VBG liftoff NN liftoffs NNS lifts VBZ ligament NN ligand NN ligands NNS light NN light-activated JJ light-blue JJ light-bulb NN light-colored JJ light-crude NN light-duty JJ light-flared JJ light-headed JJ light-headedness JJ light-hearted JJ light-industrial JJ light-mindedness JJ light-rail JJ light-reflecting JJ light-transmitting JJ light-truck JJ light-water JJ light-wave JJ light-weight JJ light-year NN lighted VBN lighten VB lightened VBD lightening VBG lightens VBZ lighter JJR lighter'n JJR|IN lighter-than-air JJ lighter-than-normal JJ lighters NNS lightest JJS lightheaded JJ lighthearted JJ lightheartedly RB lighthouses NNS lighting NN lightly RB lightness NN lightning NN lightning-fast JJ lightning-like JJ lightning-occurrence JJ lightning-quick JJ lights NNS lightweight JJ lightyears NNS lignite JJ likable JJ like IN like-minded JJ liked VBD likee VB likelier JJR likeliest JJS likelihood NN likely JJ liken VBP likened VBD likeness NN likening VBG likens VBZ likes VBZ likewise RB liking NN lil JJ lilac JJ lilacs NNS lilies NNS lilt NN lilting JJ lily NN lima NN limb NN limber JJ limbic JJ limbo NN limbs NNS lime NN limelight NN limestone NN limit NN limitation NN limitations NNS limited JJ limited-edition JJ limited-growth NN limited-partner JJ limited-partnership NN limited-production JJ limited-scale JJ limited-substitution JJ limited-time JJ limiting VBG limitless JJ limits NNS limo NN limos NNS limousine NN limousines NNS limp JJ limp-looking JJ limped VBD limpid JJ limping VBG limply RB limps VBZ linage NN linchpin NN linden NN line NN line-centered NN line-density NN line-drawing JJ line-driven NN line-drying JJ line-fragments NN line-hand-wired JJ line-item JJ line-item-veto JJ line-pairs NN line-up NN lineage NN lineages NNS lineal JJ linear JJ linearly RB lineback NN linebacker NN linebackers NNS lined VBN lineman NN linen NN linen-covered JJ linens NNS liner NN liners NNS lines NNS lineup NN lineups NNS linger VB lingered VBD lingerie NN lingering VBG lingers VBZ lingo NN lingua FW linguine NN linguist NN linguist-anthropologist NN linguistic JJ linguistically RB linguistics NNS linguists NNS liniment NN liniments NNS lining VBG link NN link-ups NNS linkage NN linkages NNS linked VBN linking VBG links NNS linkup NN linkups NNS linoleum NN lint NN lion NN lion's-head NN lioness NN lionesses NNS lionized VBN lions NNS lip NN lip-sucking NN lipid NN lipoproteins NNS liposomes NNS lips NNS lipstick NN lipsticks NNS liquefied VBN liquefies VBZ liquefy VB liqueur NN liquid JJ liquid-chromatography NN liquid-crystal JJ liquid-drug JJ liquid-fuel NN liquid-glass NN liquid-nitrogen NN liquidate VB liquidated VBN liquidating VBG liquidation NN liquidations NNS liquidator NN liquidators NNS liquidities NNS liquidity NN liquidity-enhancing JJ liquidity-short-selling NN liquids NNS liquified JJ liquor NN liquor-crazed JJ lira NN liras NNS lire NNS lise NNS lisping VBG list NN liste FW listed VBN listen VB listened VBD listener NN listener-supported JJ listeners NNS listening VBG listens VBZ listeria FW listing NN listings NNS listless JJ listlessly RB lists NNS lit VBD litany NN liter NN literacy NN literal JJ literal-minded JJ literalism NN literally RB literalness NN literary JJ literate JJ literature NN literatures NNS liters NNS lithe JJ lithium NN lithograph NN lithographic JJ lithographs NNS lithography NN lithotripsy NN lithotripter NN litigant NN litigants NNS litigate VB litigated VBN litigation NN litigation-support JJ litigator NN litigators NNS litigious JJ litle JJ litmus NN litter NN litter-strewn JJ litterbug NN littered VBN littering NN litters NNS little JJ little-feared JJ little-girl JJ little-known JJ little-noted JJ little-noticed JJ little-publicized JJ little-town JJ little-understood JJ littlest JJS liturgical JJ liturgy NN livability NN livable JJ live VB live-hauled VBD live-haulers NNS live-in JJ live-oak NN lived VBD livelier JJR liveliest JJS livelihood NN liveliness NN lively JJ liver NN liveried JJ livers NNS livery NN lives NNS livestock NN livestock-dealing JJ livid JJ livin NN living VBG living-benefits JJ living-room NN livres FW lizard NN lizards NNS lmao UH lmaoo UH lmfao UH lo UH load NN load-shedding NNS loaded VBN loader NN loaders NNS loadin VBG loading NN loadings NNS loads NNS loaf NN loafed VBD loafers NNS loan NN loan-by-phone JJ loan-defaulters NNS loan-forgiveness NN loan-guarantee NN loan-loss NN loan-management NN loan-officer NN loan-production NN loan-repayment NN loan-restructuring JJ loan-to-value JJ loaned VBN loans NNS loath JJ loathed VBD loathes VBZ loathing NN loathsome JJ loaves NNS lob VB lob-scuse NN lobbied VBD lobbies NNS lobby NN lobbying VBG lobbyist NN lobbyists NNS lobe NN lobes NNS loblolly NN lobo NN lobscouse NN lobster NN lobster-backed JJ lobstermen NNS lobsters NNS lobular JJ lobule NN lobules NNS local JJ local-content JJ local-control JJ local-exchange JJ local-government JJ local-money NN local-news NN local-service JJ locale NN locales NNS localism NN localisms NNS localities NNS locality NN localization NN localize VB localized JJ locally RB locals NNS locate VB located VBN locates VBZ locatin NN locating VBG location NN location-minded JJ locations NNS loch NN lock VB lock-outs NNS locked VBN locker NN locker-room NN lockers NNS lockhold NN locking JJ locking-in NN lockout NN locks NNS lockstep NN lockup NN loco FW locomotive NN locomotives NNS locus NN locust NN locusts NNS locutions NNS lodge NN lodged VBN lodges NNS lodging NN lodgings NNS lodgment NN loft NN lofts NNS lofty JJ log NN log-house NN log-jam NN log-rolled VBD logarithm NN logarithms NNS logged VBN logger NN loggerheads NNS loggers NNS logging NN logic NN logic-rhetoric NN logical JJ logically RB logistic JJ logistical JJ logistics NNS logistics-computer NN logjam NN logo NN logos NNS logs NNS loin NN loincloth NN loins NNS loitering NN lol UH lolling VBG lollipop NN lone JJ lonelier RBR loneliest JJS loneliness NN lonely JJ lonely-hearts NNS loner NN loners NNS lonesome JJ long JJ long-acting JJ long-arranged JJ long-awaited JJ long-banned JJ long-bodied JJ long-bubbling JJ long-canceled JJ long-chain NN long-cherished JJ long-considered JJ long-cruise JJ long-dated JJ long-deferred JJ long-delayed JJ long-depressed JJ long-deprived JJ long-distance JJ long-dollar JJ long-dominant JJ long-dormant JJ long-endurance JJ long-established JJ long-familiar JJ long-far NN long-format JJ long-hair JJ long-handled JJ long-haul JJ long-held JJ long-hoped-for JJ long-keeping JJ long-known JJ long-lasting JJ long-life JJ long-line JJ long-lived JJ long-neck JJ long-necked JJ long-opposed JJ long-overdue JJ long-planned JJ long-range JJ long-rumored JJ long-run JJ long-running JJ long-settled JJ long-shanked JJ long-shelf-life JJ long-simmering JJ long-sleeved JJ long-sought JJ long-standing JJ long-stemmed JJ long-studied JJ long-successful JJ long-suffering JJ long-suspected JJ long-tenured JJ long-term JJ long-term-oriented JJ long-term`` `` long-termers NNS long-time JJ long-troubled JJ long-vanished JJ long-view JJ long-yardage JJ longed VBD longed-for JJ longer RB longer-established JJ longer-lived JJ longer-range JJR longer-run JJ longer-term JJ longerterm JJ longest JJS longest-standing JJS longevity NN longhaired JJ longhand JJ longhaul NN longhorn NN longhorns NNS longing NN longings NNS longish JJ longitude NN longitudes NNS longitudinal JJ longneck JJ longrange JJ longrun JJ longs VBZ longshoreman NN longshoremen NNS longshot NN longstanding JJ longstrained VBN longsuffering JJ longterm JJ longtime JJ longue NN look VB look-alike JJ look-see NN lookalike JJ looked VBD lookee-loos NNS lookin VBG looking VBG lookit NN lookout NN looks VBZ lookup NN loom VBP loomed VBD looming VBG looms VBZ loon NN loonies NNS loony JJ loop NN loopaholics NNS looped VBD loophole NN loophole... : loopholes NNS loops NNS loopy JJ loose JJ loose-jointed JJ loose-jowled JJ loose-knit JJ loose-leaf JJ loose-loaded JJ looseleaf NN loosely RB loosely-taped JJ loosen VB loosened VBN looseness NN loosening VBG loosens VBZ looser JJR loosest JJS loot NN looted VBN looting NN lootings NNS lop JJ lope NN loped VBD lopes VBZ loping VBG lopped VBD lopping NN lopsided JJ lopsidedly RB loquacious JJ loquacity NN lorazapam NN lord NN lorded VBD lordly JJ lords NNS lordship NN lore NN lorries NNS lose VB loser NN losers NNS loses VBZ losing VBG loss NN loss-expense JJ loss-making JJ loss-plagued JJ loss-recovery JJ losses NNS losses... : lost VBD lost-profits JJ lot NN lotion NN lotions NNS lots NNS lotter NN lotteries NNS lottery NN lotus NN loud JJ loud-voiced JJ louder JJR loudest JJS loudly RB loudspeaker NN loudspeakers NNS louis NNS lounge NN lounged VBD lounges NNS lounging VBG louse VB loused VBD lousy JJ loutish JJ lovable JJ love NN love'em NN love-hate JJ love-in-action NN love-making NN lovebirds NNS loved VBD loved'em NN lovelier-than-life JJ lovelies NNS loveliest JJS loveliness NN lovelorn JJ lovely JJ lover NN lovering VBG lovers NNS loves VBZ lovin JJ loving JJ lovingly RB low JJ low*/JJ-tech NN low-VAT JJ low-ability JJ low-acid JJ low-altitude NN low-back JJ low-back-pain JJ low-ball JJ low-base-price JJ low-boiling JJ low-budget JJ low-cal JJ low-caliber NN low-calorie JJ low-ceilinged JJ low-cholesterol JJ low-class JJ low-concept JJ low-cost JJ low-crime JJ low-density JJ low-down NN low-duty JJ low-end JJ low-fat JJ low-foam NN low-frequency JJ low-grade JJ low-grossing JJ low-growth JJ low-heeled JJ low-income JJ low-interest JJ low-key JJ low-level JJ low-life JJ low-lifes NNS low-load JJ low-loss JJ low-lying JJ low-maintenance JJ low-margin JJ low-moisture JJ low-paid JJ low-pass JJ low-paying JJ low-pitched JJ low-polluting JJ low-power JJ low-price JJ low-priced JJ low-profile JJ low-profit JJ low-profitmargin NN low-quality JJ low-rate JJ low-rated JJ low-risk JJ low-slung JJ low-smoke JJ low-speed JJ low-stress JJ low-sudsing JJ low-sugar JJ low-sulfur JJ low-sulphur JJ low-tax NN low-temperature JJ low-tension JJ low-to-no-fat JJ low-value JJ low-voltage JJ low-volume JJ low-wage JJ low-water NN low-yielding JJ lowball NN lowdown JJ lower JJR lower-class JJ lower-cost JJ lower-court JJ lower-cut JJ lower-emission NN lower-growth JJ lower-house NN lower-income JJ lower-level JJ lower-middle JJ lower-middle-class JJ lower-paid JJ lower-priced JJ lower-priority JJ lower-quality NN lower-rated JJ lower-status JJ lower-tech JJ lower-than-anticipated JJ lower-than-expected JJ lower-than-forecast JJ lower-than-planned JJ lower-value JJR lower-volume JJ lower-wage JJ lowered VBD lowering VBG lowers VBZ lowest JJS lowest-cost JJ lowest-paying JJ lowest-priced JJ lowest-rated JJ lowincome JJ lowlands NNS lowliest JJS lowly JJ lowprofile JJ lows NNS loyal JJ loyalist NN loyalists NNS loyalties NNS loyalty NN lube NN lubra NN lubricant NN lubricants NNS lubricated VBN lubricating-oil NN lucid JJ lucidity NN lucidly RB luck NN lucked VBD luckier JJR luckiest JJS luckily RB lucks NNS lucky JJ lucrative JJ lucy NN ludicrous JJ ludicrously RB ludicrousness NN lug VB luggage NN lugged VBD lugging VBG lugs NNS lui FW lukewarm JJ lull NN lullaby NN lulled VBN lulls NNS lulu NN lumbar JJ lumber NN lumber-like JJ lumbered VBD lumbering JJ lumberjack NN lumberyard NN lumen NN luminaries NNS luminescence NN luminescent JJ luminosity NN luminous JJ luminously RB lummox NN lump NN lump-sum JJ lumped VBN lumpen-intellectual JJ lumpier JJR lumping VBG lumpish JJ lumps NNS lumpy JJ lunar JJ lunatic JJ lunatic-fringe JJ lunatics NNS lunation NN lunch NN lunch-box NN lunch-hour NN lunch-time NN lunched VBN luncheon NN luncheon-meat NN luncheon-table JJ luncheon-voucher NN luncheons NNS lunches NNS lunchroom NN lunchtime NN lung NN lung-cancer NN lung-function JJ lung-tissue JJ lunge VB lunged VBD lunger NN lunges VBZ lunging VBG lungs NNS lurch NN lurched VBD lurching VBG lure VB lured VBN lures VBZ lurid JJ luring VBG lurk VB lurked VBD lurking VBG lurks VBZ luscious JJ lush JJ lushes NNS lust NN luster NN lustful JJ lustily RB lustre NN lustrious JJ lustrous JJ lusts NNS lusty JJ lute NN lutihaw FW luv NN luxuriance NN luxuries NNS luxuriosly-upholstered JJ luxurious JJ luxury NN luxury-car NN luxury-goods NNS luxury-suite NN lye NN lyin NN lying VBG lyking VBG lymph NN lymphocytes NNS lymphocytic JJ lymphoma NN lynch VB lynch-mob JJ lynched VBN lyophilized VBN lyric JJ lyrical JJ lyricism NN lyricist NN lyricists NNS lyrics NNS lyriist NN m NN m&a JJ m.p.h NN m.p.h. NN mEq NNP mEq. NN mV NN ma FW ma'am NN macabre JJ macaque JJ macaroni NNS macaroni-and-cheese NN macaw NN macbook NNP machete NN machetes NNS machikin FW machinations NNS machine NN machine-family NN machine-gun NN machine-gun-toting JJ machine-gunned CD machine-masters NNS machine-tool JJ machine-vision NN machinegun NN machinelike JJ machinery NN machinery-trading JJ machines NNS machining NN machinist NN machinists NNS macho JJ machos NNS mackerel NN mackinaw NN mackintosh NN macro-instructions NNS macrocrystalline NN macrocrystals NNS macroeconomic JJ macromolecular JJ macromolecules NNS macropathological JJ macroscopically RB mad JJ madam NN madcap JJ maddening JJ maddeningly RB made VBN made-for-TV JJ made-for-television JJ made-up JJ madhouse NN madly RB madman NN madmen NNS madness NN madrigal NN madrigaling NN madrigals NNS madstones NNS maelstrom NN maestro NN mafia NN mafias NNS mafiosi NNS magazine NN magazines NNS magenta JJ maget NN maggot-covered JJ maggots NNS maggoty JJ magic NN magic-practicing JJ magical JJ magically RB magician NN magicians NNS magisterially RB magistrate NN magistrates NNS magnanimity NN magnanimous JJ magnate NN magnates NNS magnesium NN magnet NN magnetic JJ magnetic-tape JJ magnetic-tape-coating JJ magnetically RB magnetics NNS magnetism NN magnetisms NNS magnetized VBN magnets NNS magnification NN magnificence NN magnificent JJ magnificently RB magnified VBN magnifies VBZ magnify VB magnifying VBG magnitude NN magnitudes NNS magnolia NN magnum NN magpies NNS mah PRP$ mah-jongg FW maharajahs NNS mahogany NN maht MD mahua NN mai MD mai'teipa VB maid NN maiden NN maidens NNS maids NNS maiestie NN mail NN mail-fraud NN mail-order JJ mail-processing JJ mail-room NN mail-sorting VBG mailboat NN mailbox NN mailboxes NNS mailed VBN mailed-fist-in-velvet-glove JJ mailers NNS mailgram NN mailgrams NNS mailing NN mailings NNS mailman NN mailmen NNS mailroom NN mailrooms NNS mails NNS maimed JJ main JJ mainframe NN mainframe-class JJ mainframe-manufacturing NN mainframes NNS mainland NN mainlander NN mainline JJ mainly RB mains NNS mainstay NN mainstays NNS mainstream NN maintain VB maintained VBN maintainence NN maintaining VBG maintains VBZ maintenance NN mais FW maitre NNP maitres FW majesterial JJ majestic JJ majestically RB majesty NN majeure NN major JJ major-burden-to-the-planet NN major-frauds JJ major-league JJ major-market JJ major-medical JJ major-party JJ majored VBN majoring VBG majoritarian JJ majorities NNS majority NN majority-held JJ majority-owned JJ majority-party JJ majors NNS majuh NN make VB make-believe NN make-overs NNS make-ready NN make-up NN make-work JJ make... : makeover NN maker NN makers NNS makersa NNS makes VBZ makeshift JJ makeshifts NNS makeup NN makin VBG making VBG makings NNS maku FW maladaptive JJ maladies NNS maladjusted JJ maladjustment NN maladjustments NNS maladroit JJ malady NN malaise NN malapropism NN malapropisms NNS malaria NN malcontent NN male JJ male-dominated JJ male-fertile JJ male-headed JJ male-only JJ male-sterile JJ malediction NN malefactors NNS maleness NN males NNS malevolence NN malevolencies NNS malevolent JJ malfeasant JJ malformations NNS malformed JJ malfunction NN malfunctioning NN malfunctions NNS malice NN malicious JJ maliciously RB malign JJ malignancies NNS malignancy NN malignant JJ maligned VBN malingering VBG mall NN malleable JJ malls NNS malnourished JJ malnourishment NN malnutrition NN malocclusion NN malposed JJ malpractice NN malpractices NNS malt NN malted VBN maltreat VBP maltreated VBN maltreatment NN malunya NN mama NN mamalian JJ mammal NN mammalian JJ mammals NNS mammary JJ mammas NN mammography NN mammoth JJ mammoths NNS man NN man-bites-dog JJ man-hours NNS man-in-the-European-street NN man-in-the-moon JJ man-made JJ man-to-man RB man. NN mana NN manacles NNS managament NN manage VB manageability NN manageable JJ managed VBD managed-care JJ management NN management-by-objective NN management-consultant NN management-consulting JJ management-controlled JJ management-employee NN management-incentive JJ management-information JJ management-labor JJ management-led JJ management-pilot JJ management-pilots JJ management-research NN management-services NNS management-trained JJ management-union JJ management... : managements NNS manager NN managerial JJ managers NNS manages VBZ managing VBG managment NN mandamus NN mandate NN mandated VBN mandates NNS mandating VBG mandating'efficiency NN mandatory JJ mandatory-retirement JJ mandrel NN mane NN manes NNS maneuver NN maneuverability NN maneuvered VBD maneuvering NN maneuverings NNS maneuvers NNS manganese NN manger NN mangled JJ manhandled VBN manhole NN manholes NNS manhood NN manhours NNS manhunts NNS mania NN maniac NN maniacal JJ maniacs NNS manias NNS manic JJ manic-depressive NN maniclike JJ manicured VBN manicures VBZ manifest JJ manifestation NN manifestations NNS manifested VBD manifesting VBG manifestly RB manifesto NN manifestos NNS manifold NN manikin NN manikins NNS manila JJ maninstays NNS manipulate VB manipulated VBN manipulates VBZ manipulating VBG manipulation NN manipulations NNS manipulative JJ manipulator NN manipulators NNS mankind NN manliness NN manly JJ manmade NN manmade-fiber JJ manna NN manned JJ mannequin NN mannequins NNS manner NN mannered JJ mannerism NN mannerisms NNS manners NNS manning VBG mano NN manometer NN manor NN manors NNS manpower NN mans VBZ manse NN manservant NN mansion NN mansions NNS manslaughter NN mantel NN mantic JJ mantle NN mantlepiece NN mantrap NN manual JJ manually RB manuals NNS manuevering NN manufacture VB manufactured VBN manufactured... : manufacturer NN manufacturers NNS manufactures VBZ manufacturing NN manufacturing-automation NN manufacturing-cost NN manufacturing-sector NN manumission NN manumitted VBN manure NN manure-scented JJ manuscript NN manuscripts NNS many JJ many-bodied JJ many-faced JJ many-fold RB many-much NN many-sided JJ many-times RB manye JJ manzanita NN map NN maple NN maples NNS mapped VBN mapping NN maps NNS maquette NN maquila NN maquiladora NN maquiladoras NNS maquilas NNS mar VB maraschino NN marathon NN marathons NNS marauders NNS marauding VBG marble NN marble-columned JJ marble-encased JJ marbleized VBN marbleizing NN marbles NNS marcato FW march NN marched VBD marchers NNS marches NNS marchin NN marching VBG mare NN mare-COOR NNP mares NNS margarine NN margin NN margin-calls NNS margin-the NN|DT marginal JJ marginal-rate NN marginalia NNS marginality NN marginalizing VBG marginally RB margined VBN margining VBG margins NNS margins... : maria NNS marijuana NN marijuana-smuggling JJ marimba NN marina NN marinade NN marinas NNS marinated VBN marinating VBG marine NN marine-products NNS marine-related JJ marine-research NN marine-shipping JJ marine-transport NN mariner NN marines NNS marionettes NNS marital JJ maritime JJ marjoram NN mark NN mark-denominated JJ mark-up NN mark-ups NNS mark-yen JJ markdown NN markdowns NNS marked VBN markedly RB marker NN markers NNS market NN market-affecting JJ market-allocation JJ market-based JJ market-basket JJ market-by-market JJ market-corporate JJ market-driven JJ market-hog JJ market-if-touched NN market-inspired JJ market-jarring JJ market-maker NN market-makers NNS market-making NN market-monitoring JJ market-moving JJ market-on-close JJ market-opening JJ market-oriented JJ market-place NN market-ready JJ market-reform JJ market-related JJ market-research NN market-revision NN market-sensitive JJ market-share JJ market-sharing JJ market-specific JJ market-stabilizing JJ market-style JJ market-system NN market-timing JJ market-watchers NNS market-weighted JJ market... : market:8.40 CD market:8.60 NN|CD market:8.80 CD market:8.90 CD marketability NN marketable JJ marketed VBN marketeers NNS marketer NN marketers NNS marketin NN marketing NN marketing-and-distribution JJ marketing-communications NNS marketing-data NNS marketing-wise JJ marketings NNS marketization NN marketmaking NN marketplace NN marketplaces NNS markets NNS marketshare NN marketwide JJ marketwise RB marking VBG markings NNS markka FW markkaa NN marks NNS marksman NN marksmanship NN markup NN markups NNS marmalade NN maroon JJ marooned VBD marque NN marquee NN marquees NNS marques NNS marred VBN marriage NN marriageables NNS marriages NNS married VBN married''-style JJ married-couple JJ married-put JJ marrieds NNS marries VBZ marring VBG marrow NN marrowbones NNS marry VB marrying VBG mars VBZ marshal NN marshaling VBG marshalled VBD marshalling NN marshals NNS marshes NNS marshlands NNS marshmallow NN marshmallows NNS mart NNP martial JJ martingale NN martini NN martinis NNS marts NNS martyr NN martyrdom NN marvel VB marveled VBD marveling VBG marvelled VBD marvelous JJ marvelously RB marvels NNS maryed VBN mascara NN mascot NN masculine JJ masculinity NN masers NNS mash NN mashed VBN mashing VBG mask NN masked VBN maskers NNS masking VBG masks NNS mason NN masonry NN masons NNS masquerade NN masquerades VBZ masquerading VBG masquers NNS mass NN mass-audience JJ mass-building JJ mass-circulation JJ mass-distribution JJ mass-faxing JJ mass-market JJ mass-marketers NNS mass-media NN mass-merchandise NN mass-murderer NN mass-produce VB mass-produced JJ mass-producing VBG mass-production NN mass-reproduced JJ mass-transit NN massacre NN massacred VBD massacres NNS massage NN massaged VBN massages NNS massaging VBG masse FW massed VBD masses NNS masseur NN masseurs NNS masseuse NN masseuses NNS massifs NNS massing VBG massive JJ massively RB massuh NN mast NN master NN master-race NN mastered VBN masterful JJ masterfully RB mastering VBG masterly JJ mastermind NN masterminding VBG masterpiece NN masterpieces NNS masters NNS masterworks NNS mastery NN mastiff NN mastodons NNS mastoideus NN masts NNS mat NN matador NN match VB match-width NN matched VBN matches VBZ matching VBG matching-fund JJ matchless JJ matchmaker NN matchmakers NNS matchmaking NN mate NN mated VBN mateless JJ mater NN materals NNS material NN material-formal JJ material-management NN material0F. NN materialism NN materialistic JJ materialize VB materialized VBD materializes VBZ materially RB materials NNS materials-handling JJ materials-related JJ materiel NN maternal JJ maternity NN mates NNS math NN mathematical JJ mathematically RB mathematician NN mathematicians NNS mathematics NNS matinals FW matinee JJ matinees NNS mating NN matriarch NN matriarchal JJ matricide NN matriculate VB matriculated VBN matrimonial JJ matrimony NN matrix NN matron NN matronly JJ matryoshka FW mats NNS matsyendra NN matt NN matte NN matter NN matter-of-factly RB matter-of-factness NN mattered VBD matters NNS matting NN mattress NN mattresses NNS maturation NN maturational JJ mature JJ matured VBD matures VBZ maturing VBG maturities NNS maturity NN maudlin JJ maul VB mauler NN mauling VBG mausoleum NN mauve JJ maven NN mavens NNS maverick NN mavericks NNS maw NN mawkish JJ max NN maxim NN maximal JJ maximization NN maximize VB maximized VBN maximizes VBZ maximizing VBG maxims NNS maximum JJ maximum-security JJ maximums NNS may MD may... : maya FW maybe RB maye MD mayhem NN mayonnaise NN mayor NN mayoral JJ mayoralty NN mayors NNS mayorship NN mayst MD maze NN mazes NNS mazurka NN mc. NN me PRP me/PRP NNP mea FW meadow NN meadows NNS meager JJ meal NN meal-to-meal JJ mealie-meal NN meals NNS mealtime NN mealy JJ mealynose NN mealynosed JJ mean VB mean-spirited JJ mean-square JJ meandered VBD meandering VBG meanders VBZ meaner JJR meanes NNS meanest JJS meanin VBG meaning NN meaningful JJ meaningfully RB meaningfulness NN meaningless JJ meaninglessness NN meanings NNS meanly RB meanness NN means VBZ meant VBD meantime NN meanwhile RB measles NN measly JJ measurable JJ measurably RB measure NN measured VBN measurement NN measurements NNS measures NNS measuring VBG meat NN meat-hungry JJ meat-packing JJ meat-processing JJ meat-wagon NN meatpacker NN meatpacking NN meats NNS meaty JJ mecca NN mechanic NN mechanical JJ mechanically RB mechanics NNS mechanism NN mechanisms NNS mechanist NN mechanistic JJ mechanization NN mechanized JJ mechanochemically RB meclofenamate NN mecum FW medal NN medalist NN medallions NNS medals NNS meddle VB meddling VBG media NNS media-buying JJ media-conscious JJ media-linked JJ media-related JJ media-spending JJ media-stock JJ mediaevalist NN median JJ median-family NN median-nerve JJ mediate VB mediated VBN mediating VBG mediation NN mediator NN mediators NNS medical JJ medical-airlift NN medical-assistance NN medical-benefits NNS medical-care NN medical-instrument JJ medical-leave JJ medical-practice NN medical-products NNS medical-school NN medical-support JJ medical-test JJ medically RB medicare NN medication NN medication-dispensing JJ medications NNS medicinal JJ medicinalis FW medicine NN medicines NNS medico NN medico-military NN medics NNS medieval JJ mediocre JJ mediocrities NNS mediocrity NN meditate VB meditated VBD meditating VBG meditation NN meditations NNS meditative JJ medium NN medium-distance JJ medium-duty JJ medium-grade JJ medium-haul JJ medium-size JJ medium-sized JJ medium-term JJ medium-to-long-range JJ mediumistic JJ mediums NNS mediumship NN medley NN mee PRP meek JJ meek-mannered JJ meekest JJS meekly RB meet VB meet... : meetin NN meeting NN meetings NNS meets VBZ mega JJ mega-crash NN mega-crashes NNS mega-deal NN mega-deals NNS mega-hit JJ mega-issues NNS mega-lawyer NN mega-mergers NNS mega-problems NNS mega-projects NNS mega-resort NN mega-resorts NNS mega-stadium NN mega-stardom NN mega-welfare JJ megabillion NN megabit NN megabyte NN megabytes NNS megadrop NN megahertz NN megakaryocytic JJ megalomania NN megalomaniac NN megalopolises NNS megaquestions NNS megaton NN megatons NNS megawatt NN megawatts NNS mei FW melamine NN melancholy NN melanderi NNPS melange NN melanin NN meld VB melding VBG melds VBZ melee NN melioration NN mellifluous JJ mellow JJ mellowed VBN melodic JJ melodically RB melodies NNS melodious JJ melodrama NN melodramatic JJ melody NN melon NN melon-like JJ melt VB melt-textured JJ meltdown NN melted VBN melting VBG melts VBZ mem FW member NN members NNS members. NN membership NN memberships NNS membrane NN meme FW memento NN mementos NNS meminisse FW memo NN memoir NN memoirs NNS memorabilia NNS memorable JJ memoranda NNS memorandum NN memorandums NNS memorial NN memorialist NN memorialization NN memorialized VBN memorials NNS memories NNS memorization NN memorize VB memorized VBN memorizing NN memory NN memory-chip NN memory-expansion JJ memory-images NNS memory-picture NN memory-pictures NNS memos NNS men NNS men-folk NNS men-of-war NNS menace NN menaced VBN menacing JJ menarche NN menarches NNS mend VB mendacious JJ mendacity NN mended VBN mendicant JJ mending VBG menial JJ meningioma NN menopause NN menstrual JJ menstruation JJ menswear NN mental JJ mental-health JJ mental-illness NN mentalities NNS mentality NN mentally RB mention VB mentioned VBN mentioning VBG mentions VBZ mentor NN mentors NNS menu NN menus NNS mercenaries NNS mercenary JJ mercer NN merchandise NN merchandise-trade JJ merchandised VBN merchandisers NNS merchandising NN merchant NN merchant-banking JJ merchantbanking NN merchants NNS merciful JJ mercifully RB merciless JJ mercilessly RB mercurial JJ mercury NN mercy NN mere JJ merely RB merely'critical JJ merest JJS meretricious JJ merge VB merged VBN merger NN merger-acquisition JJ merger-law NN merger-related JJ mergers NNS mergers-advisory JJ mergers-and-acquisitions NNS merges VBZ merging VBG meridian NN meringues NNS merit NN merited VBD meritless JJ meritocracy NN meritorious JJ merits NNS mermaid NN merriest JJS merrily RB merriment NN merry JJ merry-go-round NN merrymaking NN merveilleux FW mesenteric JJ mesh NN meshed VBN mesmerized VBN mesothelioma NN mess NN message NN messages NNS messaging NN messed VBD messenger NN messengers NNS messes NNS messhall NN messiah NN messianic JJ messieurs FW messing VBG messy JJ met VBD metabolic JJ metabolism NN metabolite NN metabolites NNS metabolize VB metabolized VBN metal NN metal-benders NNS metal-cleaning JJ metal-coil JJ metal-cutting JJ metal-forming JJ metal-hydrido NN metal-processing JJ metal-products NNS metal-tasting JJ metal-workers NNS metal-working JJ metalized VBN metallic JJ metallurgical JJ metallurgy NN metals NNS metals-stock NN metalsmiths NNS metalworkers NNS metalworking NN metamidophos NNS metamorphic JJ metamorphosed VBN metamorphosis NN metaphor NN metaphorical JJ metaphors NNS metaphosphate NN metaphysic NN metaphysical JJ metaphysicals NNS metaphysics NNS meted VBN meteor NN meteoric JJ meteorite NN meteorites NNS meteoritic JJ meteorological JJ meteorologist NN meteorology NN meteors NNS meter NN metered VBN metering VBG meterological JJ meters NNS methacrylate NN methadone NN methane NN methanol NN methanol-gasoline JJ methanol-powered JJ method NN methode NNP methodical JJ methodically RB methodological JJ methodologies NNS methodology NN methods NNS methodsm NN methyl NN methylene NN methylglyoxal NN meticulous JJ meticulously RB metier NN meting VBG metis NNS metrazol NN metre NN metric JJ metric-ton-per-year JJ metrical JJ metrics NNS metro NN metronome NN metropolis NN metropolitan JJ metropolitanization NN metropolitian JJ mettle NN mettlesome JJ mettwurst NN mew VB mewed VBD mews NN mezzo NN mg NN mg. NN miami NNP miasma NN miasmal JJ mica NN mice NNS micelle NN micelles NNS micoprocessors NNS micro JJ micro-electronic JJ micro-liquidity NN micro-microcurie NN micro-organisms NNS microanalysis NN microbe NN microbes NNS microbial JJ microbiological JJ microbiologist NN microbiology NN microcassette NN microchannel JJ microchemistry NN microchip NN microchips NNS microcircuits NNS microcomputer NN microcomputer-systems JJ microcomputers NNS microcosm NN microcytochemistry NN microeconomic JJ microeconomics NNS microeconomy NN microelectronic JJ microelectronics NNS microfilm NN microfossils NNS micrograms NNS micrographics NNS microinjection NN micromanage NN micromanagement NN micrometeorite NN micrometeorites NNS micrometeoritic JJ micrometer NN micrometers NNS microns NNS microorganism NN microorganisms NNS microphone NN microphones NNS microphoning VBG microprocessor NN microprocessor-based JJ microprocessors NNS microscope NN microscopes NNS microscopic JJ microscopical JJ microscopy NN microseconds NNS microsomal JJ microsurgery NN microtonal JJ microvan NN microwavable JJ microwave NN microwaved VBN microwaves NNS microwaving VBG mid JJ mid-'70s NNS mid-'80s NNS mid-1890 CD mid-1940s NNS mid-1948 JJ mid-1950 CD mid-1950s NNS mid-1958 NN mid-1960 CD mid-1960s NNS mid-1963 CD mid-1970 NN mid-1970s NNS mid-1979 NN mid-1980s NNS mid-1981 CD mid-1986 NN mid-1987 NN mid-1988 CD mid-1989 NN mid-1990 CD mid-1990s NNS mid-1991 CD mid-1992 NN mid-1995 NN mid-19th JJ mid-20 CD mid-30s CD mid-40s CD mid-50s NNS mid-70s CD mid-80s NNS mid-April NN mid-Atlantic JJ mid-August NNP mid-December NNP mid-February NNP mid-January NNP mid-July NN mid-June NNP mid-March NNP mid-November NNP mid-October NNP mid-September NNP mid-Victorian NNP mid-afternoon JJ mid-air NN mid-century JJ mid-continent JJ mid-conversation NN mid-engine JJ mid-fifties NNS mid-flight RB mid-market JJ mid-morning NN mid-priced JJ mid-range JJ mid-season NN mid-section NN mid-shimmy NN mid-size JJ mid-sized JJ mid-term JJ mid-thirties NNS mid-to-high JJ mid-to-late JJ mid-twentieth JJ mid-twentieth-century JJ mid-watch JJ mid-week JJ mid1984 CD midafternoon NN midair NN midcapitalization NN midcontinent JJ midday NN middle NN middle-Gaelic JJ middle-age JJ middle-aged JJ middle-brow JJ middle-class JJ middle-ground JJ middle-income JJ middle-level JJ middle-management JJ middle-market JJ middle-of-the-road JJ middle-of-the-roaders NNS middle-priced JJ middle-range JJ middle-school JJ middle-sized JJ middlebrow JJ middleman NN middlemen NNS middles NNS middling JJ midfield NN midlands NNS midlevel JJ midmonth RB midmorning NN midnight NN midocean JJ midpoint NN midpriced JJ midrange JJ midseason NN midsession NN midshipmen NNS midsize JJ midsized JJ midsized-car JJ midst NN midstream NN midsts NNS midsummer NN midterm JJ midtown JJ midway RB midweek JJ midwest JJS midwestern JJ midwife NN midwinter NN midyear NN mien NN miffed VBN might MD mighta MD|VB mightiest JJS mightily RB mighty JJ mignon NN migraine NN migrant JJ migrants NNS migrate VB migrated VBN migrates VBZ migrating VBG migration NN migrations NNS migratory JJ mil. NN mild JJ mild-mannered JJ mild-voiced JJ mild-winter JJ milder JJR mildew NN mildewy JJ mildly RB mildness NN mile NN mile-long JJ mileage NN mileage-based JJ miles NNS miles-per-hour JJ milestone NN milestones NNS miliaris NN milieu NN milion NN militancy NN militant JJ militantly RB militarily RB militarism NN militarist NN military JJ military-electronics NNS military-medical JJ military-service JJ military-spending NN military-style JJ militate VB militated VBN militia NN militiamen NNS militias NNS milk NN milk-chocolate JJ milk-supply NN milked VBD milking VBG milks VBZ milkshakes NNS milky JJ mill NN mill-pond NN mill-wheel NN millages NNS milled JJ millenarianism NN millenarians NNS millenium NN millennia NN millennium NN millenniums NNS milliamperes NNS millidegree NN millidegrees NNS milligram NN milligrams NNS milliliter NN millilon NN millimeter NN millimeters NNS millinery NN milling NN million CD million-a-year JJ million-and-counting JJ million-asset JJ million-common NN million-dollar JJ million-dollar-a-year JJ million-dollar-plus JJ million-franc JJ million-gallon JJ million-mark JJ million-member JJ million-member-Teamsters NNPS million-plus JJ million-share JJ million-square-foot JJ million-to-$ $ million-ton JJ million-unit JJ millionaire NN millionaires NNS millions NNS millionth JJ millionths-of-a-second JJ millisecond NN millivoltmeter NN milllion NN millon NN mills NNS millstones NNS milord NN milquetoast NN mimesis NN mimetic JJ mimetically RB mimic VB mimicked VBN mimicking VBG mimics NNS mimimum NN min NN min. NN minaces NNS minarets NNS minber NN mince VB minced VBN mincemeat NN mincing VBG mind NN mind-altering JJ mind-boggling JJ mind-numbing JJ mind-set NN minded VBD mindful JJ mindless JJ minds NNS mindset NN mine NN mine-hunting JJ mine-safety JJ mined VBN minefield NN minefields NNS minehunter NN miner NN mineral NN mineral-rich JJ mineralized JJ mineralogical JJ mineralogy NN minerals NNS miners NNS mines NNS mineworkers NNS mingle VB mingled VBD mingles VBZ mingling VBG mini-Prohibition NNP mini-cars NNS mini-component JJ mini-doll NN mini-empire NN mini-fiestas NNS mini-flap NN mini-mafia NN mini-mill NN mini-post JJ mini-revolution NN mini-saga NN mini-series NN mini-slip NN mini-studio NN mini-supercomputers NNS mini-vans NNS miniature JJ miniatures NNS miniaturized VBN minibars NNS minicar NN minicars NNS minicomputer NN minicomputers NNS minicrash NN minifying VBG minimal JJ minimalism NN minimalist JJ minimally RB minimill NN minimills NNS minimize VB minimized VBN minimizes VBZ minimizing VBG minimum JJ minimum-capital JJ minimum-fee JJ minimum-tax NN minimum-wage NN minimums NNS minimun NN minin VBG minincomputer JJR mining NN mininum-wage NN minions NNS miniscule JJ miniseries NNS miniskirt NN miniskirts NNS minister NN ministered VBD ministerial JJ ministering VBG ministers NNS ministrations NNS ministries NNS ministry NN minisupercomputers NNS minivan NN minivans NNS minivans. NNS miniwelfare JJ mink NN minor JJ minor-leaguer NN minor-sport NN minorities NNS minority NN minority-internship JJ minority-owned JJ minors NNS mins NN minstrel NN minstrels NNS mint NN minted VBN minter NN minting VBG mints NNS minuet NN minus CC minus\ JJ minuscule JJ minuses NNS minute NN minutely RB minutes NNS minutiae NNS mio FW mioxidil NN miracle NN miracles NNS miraculous JJ miraculously RB mire NN mired VBN mirror NN mirrored VBN mirroring VBG mirrors VBZ mirth NN mirthless JJ mis-reading VBG misadventure NN misadventures NNS misalignment NN misallocated VBD misallocating VBG misanthrope NN misapplication NN misapplied VBN misapplying VBG misapprehension NN misappropriated VBD misappropriating VBG misappropriation NN misbegotten JJ misbehaving VBG misbehavior NN misbranded JJ miscalculated VBD miscalculation NN miscalculations NNS miscarriages NNS miscarried VBD miscegenation NN miscellaneous JJ miscellanies NNS miscellany NN mischarged VBD mischarges NNS mischarging NN mischief NN mischievous JJ misclassified VBN miscommunication NN misconception NN misconceptions NNS misconduct NN misconstruction NN misconstructions NNS misconstrued VBN miscount NN miscreant JJ miscreants NNS miscues NNS misdeeds NNS misdemeanants NNS misdemeanor NN misdemeanors NNS misdirectors NNS miserable JJ miserably RB miseries NNS miserly JJ misery NN misfired VBN misfiring VBG misfits NNS misfortune NN misfortunes NNS misgauged VBN misgivings NNS misguided JJ mishandled VBD mishandling VBG mishap NN mishaps NNS misimpressions NNS misinformation NN misinformed VBN misinterpret VB misinterpretation NN misinterpreted VBN misinterpreters NNS misjudged VBD misjudgment NN misjudgments NNS mislaid VBN misleading JJ misleadingly RB misleads VBZ misled VBD mismanaged VBD mismanagement NN mismanaging VBG mismatch NN mismatched VBN mismatches NNS mismeasurement NN mismeasurements NNS misnamed VBN misnomer NN miso NN misogynist NN misperceives VBZ misperceptions NNS misplace VB misplaced VBN misplacements NNS misplacing VBG mispriced VBD mispronunciation NN misquotation NN misquoted VBN misquoting VBG misread VBD misreading NN misrelated VBN misrepresent VB misrepresentation NN misrepresentations NNS misrepresented VBD misrepresenting VBG misrepresents VBZ misrouted VBN miss VB missed VBD misses VBZ misshapen JJ missile NN missile-defense JJ missile-engineering JJ missile-guidance JJ missile-launch JJ missile-range JJ missile-transporter NN missile-type JJ missiles NNS missing VBG mission NN missionaries NNS missionary JJ missions NNS missive NN misspelled VBN misspent VBN misstated VBN misstatements NNS misstates VBZ misstating VBG misstep NN missteps NNS missy NN mist NN mist-like JJ mistake NN mistaken VBN mistakenly RB mistakes NNS mistaking VBG misted VBD mister NN mistletoe NN mistook VBD mistreat VB mistreatment NN mistress NN mistresses NNS mistrial NN mistrials NNS mistrust NN mistrusted VBD mists NNS misty JJ misty-eyed JJ misunderstand VB misunderstanders NNS misunderstanding NN misunderstandings NNS misunderstands VBZ misunderstood VBN misuse NN misused VBN misusing VBG miswritten JJ mite NN mite-box NN miter VB mites NNS mitigate VB mitigates VBZ mitigating VBG mitigation NN mitral JJ mitre NN mitt NN mittens NNS miuchi FW mix NN mix-up NN mixed VBN mixed-up JJ mixer NN mixers NNS mixes NNS mixing VBG mixologists NNS mixture NN mixtures NNS ml NN ml. NN mm NN mm. NN mnemonic JJ mo NN mo-tivation NN moan VB moaned VBD moaning VBG moans VBZ moat NN mob NN mobcaps NNS mobile JJ mobile-home NN mobile-telecommunications NNS mobility NN mobilization NN mobilize VB mobilized VBN mobilizing VBG mobs NNS mobster NN mobsters NNS moccasins NNS mock JJ mocked VBN mockery NN mocking VBG mockingly RB mockups NNS modal JJ modality NN mode NN model NN model-year JJ modeled VBN modeling NN models NNS models-on-the-way-up JJ modem NN modems NNS moderate JJ moderate-income JJ moderate-rehabilitation NN moderated VBN moderately RB moderates NNS moderating VBG moderation NN moderator NN modern JJ modern-dance NN modern-day JJ modernism NN modernist JJ modernistic JJ modernists NNS modernity NN modernization NN modernize VB modernized VBN modernizing VBG moderns NNS modes NNS modest JJ modestly RB modesty NN modicum NN modification NN modifications NNS modified VBN modifier NN modifiers NNS modifies VBZ modify VB modifying VBG modish JJ modular JJ modulate VBP modulated VBN modulation NN modulations NNS module NN modules NNS modus FW mogul NN moguls NNS moi FW moire JJ moist JJ moisten VB moistened JJ moistening VBG moisture NN moisturizer NN moisturizers NNS molal JJ molar NN molars NNS molasses NN mold NN moldable JJ moldboard NN molded VBN molding NN moldings NNS molds NNS moldy JJ mole NN molecular JJ molecularly RB molecule NN molecules NNS molehill NN molest VB molesting VBG mollified VBN mollify VB mollycoddle NN molten JJ molting VBG molton NN mom NN mom-and-pop JJ moment NN momentarily RB momentary JJ momentoes NNS momentous JJ moments NNS momentum NN momentwhen NN|WRB mon FW monacle NN monarch NN monarchists NNS monarchy NN monasteries NNS monastery NN monastic JJ monasticism NN monaural JJ monde FW monei NN monetarism NN monetarist NN monetarists NNS monetary JJ monetary-damage NN|JJ monetary-policy NN monetary-stroke-military JJ money NN money-back JJ money-broking JJ money-center JJ money-fed JJ money-fund JJ money-granting NN money-handling NN money-hungry NN money-laundering NN money-lending JJ money-losing JJ money-maker NN money-making JJ money-management NN money-manager NN money-market JJ money-minded JJ money-retirees NNS money-saving JJ money-strapped JJ money-supply JJ money-transfer JJ money-winner NN money-wise JJ moneyed JJ moneymaker NN moneymakers NNS moneymaking JJ moneys NNS monic JJ monicker JJR monied JJ monies NNS moniker NN monitor VB monitored VBN monitoring NN monitors NNS monk NN monkey NN monkey-gland NN monkeys NNS monkish JJ monks NNS mono JJ mono-iodotyrosine JJ mono-unsaturated JJ monochromatic JJ monochrome JJ monochromes NNS monoclinic JJ monoclonal JJ monoclonal-antibody NN monocrotophos NNS monocytogenes FW monodisperse JJ monogamous JJ monogrammed JJ monograph NN monographs NNS monohull NN monolith NN monolithic JJ monolithically RB monoliths NNS monologist NN monologue NN monologues NNS monomer NN monomers NNS mononuclear JJ monophonic JJ monopolies NNS monopolistic JJ monopolists NNS monopolization NN monopolize VB monopolized VBD monopolizing VBG monopoly NN monosodium NN monosyllable NN monosyllables NNS monotone JJ monotonous JJ monotony NN monoxide NN monsieur NN monsoon NN monsoon-shrouded JJ monster NN monsters NNS monstrosity NN monstrous JJ montage NN montgolfiere FW montgolfing NN month NN month-earlier JJ month-end JJ month-long JJ month-old JJ month-to-month JJ monthlong JJ monthly JJ months NNS months-long JJ monthsit NN montmorillonites NNS monument NN monumental JJ monumentalism NN monumentality NN monumentally RB monuments NNS mood NN moodily RB moods NNS moody JJ mooed VBD mooing VBG moon NN moon-drenched JJ moon-round JJ moon-splashed JJ moon-washed JJ mooncursers NNS moonlight NN moonlighting NN moonlike JJ moonlit JJ moons NNS moontrack NN moored VBN mooring NN moorings NNS moors NNS moot JJ mop VB mop-up NN mopped VBD mopping VBG mops NNS mor JJR moraine NN moral JJ morale NN morale-damaging JJ morale-enhancing JJ moralism NN moralist NN moralistic JJ moralities NNS morality NN moralizers NNS moralizing VBG morally RB morals NNS morass NN moratorium NN morbid JJ morbid-minded JJ morbidity NN more JJR more-active JJ more-advanced JJ more-affordable JJ more-attractive JJ more-conventional JJR more-discriminating JJ more-distinctive JJR more-efficient JJ more-entrenched JJ more-established JJR more-favored JJ more-general JJ more-generic JJ more-hazardous JJ more-informed JJ more-level JJ more-mainstream JJ more-mundane JJ more-muscular JJ more-natural JJ more-open JJ more-or-less RB more-personal JJ more-powerful JJR more-pressing JJ more-realistic JJ more-selective JJR more-senior JJR more-sophisticated JJ more-spontaneous JJ more-stringent JJ more-than-$ $ more-than-average RB more-than-ordinary JJ more-than-terrible JJ more-volatile JJR moreover RB mores NNS morgen FW morgue NN moribund JJ morning NN morning-frightened JJ morning-glory NN morning-session NN mornings NNS morocco-bound JJ morose JJ morosely RB morphemic JJ morphine NN morphogenetic JJ morphologic JJ morphological JJ morphology NN morphophonemic JJ morphophonemics NNS morrow NN morsel NN morsels NNS mortages NNS mortal JJ mortality NN mortally RB mortals NNS mortar NN mortared VBN mortaring NN mortars NNS mortgage NN mortgage-backed JJ mortgage-backed-securities NNS mortgage-banking NN mortgage-based JJ mortgage-industry NN mortgage-insurance JJ mortgage-interest JJ mortgage-lending JJ mortgage-securities JJ mortgage-servicing NN mortgagebacked JJ mortgaged VBN mortgaged-backed JJ mortgages NNS morticians NNS mortification NN mortis NN mos NNS mosaic NN mosaic-like JJ mosaics NNS mosey VB mosque NN mosques NNS mosquito NN mosquito-plagued JJ mosquitoes NNS moss NN moss-covered JJ most RBS most'bee-yoo-tee-fool JJ most-active JJ most-actives JJS most-admired JJ most-contentious RBS|JJ most-dangerous JJ most-desired JJ most-favored-nation JJ most-hazardous JJ most-indebted JJS most-influential JJ most-jingoistic JJ most-likely JJ most-likely-successor JJ most-livable JJS most-obvious JJ most-owned JJ most-polluted JJS most-prestigious JJ most-recent JJ most-recommended JJ most-recommended-issues JJ most-respected JJS most-sold JJ most-strident JJ most-used JJ most-valuable JJ most-valuable-player NN most-watched JJ mostaccioli NN mostly RB mot FW motel NN motel-keepers NNS motel-keeping NN motels NNS motet NN motets NNS moth NN moth-eaten VBN moth-like JJ mothballing NN mothballs NNS mother NN mother-in-law NN mother-introject NN mother-naked JJ mother-of-pearl JJ mother-only JJ mother. NN mothered VBN motherhood NN motherland NN motherless JJ motherly JJ mothers NNS mothers-in-law NNS moths NNS motif NN motifs NNS motion NN motion-control NN motion-pattern NN motion-picture NN motional JJ motional-modified JJ motioned VBD motioning VBG motionless JJ motions NNS motivate VB motivated VBN motivates VBZ motivating VBG motivation NN motivations NNS motive NN motives NNS motley JJ motor NN motor-car NN motor-control JJ motor-drive JJ motor-home NN motor-industry NN motor-operated JJ motor-vehicle NN motorbike NN motorcade NN motorcycle NN motorcycled VBD motorcycles NNS motorcyle NN motored VBD motoring VBG motorist NN motorists NNS motorized VBN motors NNS motors. NNS motorscooters NNS mots FW mottled VBN motto NN mough NN mould VB mouldering VBG moulding NN mound NN mounded VBD mounds NNS mount VB mountain NN mountain-bike NN mountaineering NN mountaineers NNS mountainous JJ mountainously RB mountains NNS mountainside NN mountainsides NNS mountaintop NN mounted VBN mounting VBG mountings NNS mounts NNS mourn VB mourned VBD mourners NNS mournful JJ mournfully RB mourning VBG mourns VBZ mouse NN mousetrap NN mousetraps NNS mousse NN mousseline NN moustache NN mousy JJ mouth NN mouth-to-mouth JJ mouth-up JJ mouth-watering JJ mouthed VBD mouthful NN mouthing VBG mouthpiece NN mouthpieces NNS mouths NNS movable JJ move NN move-up JJ moved VBD movement NN movements NNS mover NN movers NNS moves NNS movie NN movie-distribution NN movie-goer NN movie-like JJ movie-making NN movie-of-the-week NN movie-production NN movie-quality JJ movie-star NN movie-studio NN movie-themed JJ movie-to-be NN moviegoer NN movieland NN moviemakers NNS movies NNS moviestar NN moving VBG movingly RB mow VB mowed VBN mower NN moxie NN mpg NN mph NN much JJ much-abused JJ much-anticipated JJ much-awaited JJ much-beloved JJ much-copied JJ much-coveted JJ much-craved JJ much-criticized JJ much-delayed JJ much-despised JJ much-discussed JJ much-heralded JJ much-larger JJ much-lauded JJ much-maligned JJ much-needed JJ much-publicized JJ much-respected JJ much-revised JJ much-smaller JJ much-talked-about JJ much-thumbed JJ much-watched JJ mucilage NN muck NN mucked VBN mucker NN mucking VBG mucky JJ mucosa NN mucus NN mud NN mud-beplastered JJ mud-caked JJ mud-logger NN mud-sweat-and-tears JJ muddied VBN muddle NN muddled VBN muddleheaded JJ muddling VBG muddy JJ muddy-tasting JJ mudguard NN mudslinging NN mudwagon NN muezzin NN muff NN muffed VBD muffins NNS muffled JJ muffler NN mufflers NNS muffs NNS mufti NN mufuggah NN mug NN mugged VBN muggers NNS mugging NN muggy JJ mugs NNS mujahideen FW mulatto NN mulch NN mulching VBG mule NN mule-drawn JJ mules NNS mulitiplier JJ mull VB mullah NN mullets NNS mulling VBG mulls VBZ multi NNS multi-agency JJ multi-billion-dollar JJ multi-colored JJ multi-column JJ multi-crystal JJ multi-disciplinary JJ multi-family JJ multi-gear JJ multi-lingual JJ multi-media NNS multi-million JJ multi-million-dollar JJ multi-millionaire JJ multi-phase JJ multi-product JJ multi-purpose JJ multi-spired JJ multi-state JJ multi-valued NNS multi-valve JJ multi-windowed JJ multi-year JJ multibank NN multibillion JJ multibillion-dollar JJ multibillion-yen JJ multibilliondollar JJ multichannel JJ multicolor JJ multicolored JJ multidimensional JJ multifaceted JJ multifamily JJ multifiber JJR multifigure NN multihulled VBN multilateral JJ multilayer JJ multilayered JJ multilevel JJ multilingual JJ multilocation NN multimedia NNS multimegaton JJ multimillion JJ multimillion-dollar JJ multimillion-pound-per-year JJ multimillionaire NN multimillions NNS multinational JJ multinationalism NN multinationals NNS multipactor NN multipart JJ multipartisan JJ multiparty NN multiple JJ multiple-choice JJ multiple-column JJ multiple-paged JJ multiple-purpose JJ multiple-state JJ multiple-use JJ multiple-year JJ multipled VBD multiples NNS multipleuser JJ multiplexer NN multiplexers NNS multiplexing NN multiplication NN multiplicity NN multiplied VBN multiplies VBZ multiply VB multiplying VBG multipronged VBN multipurpose JJ multiscreen JJ multisided JJ multistage JJ multistate NN multitasking VBG multitude NN multitudes NNS multitudinous JJ multivalent JJ multivalve JJ multiversity NN multiyear JJ mum JJ mumble NN mumbled VBD mumbles VBZ mumbling VBG mumbo NN mumbo-jumbo NN mummies NNS mummified VBN mummy NN munch VB munched VBD munches VBZ munching VBG munchkin NN mundane JJ mungus NN muni NN municipal JJ municipal-bond JJ municipalities NNS municipality NN municipally RB municipally-sponsored JJ municipals NNS munificence NN munis NNS munitions NNS mural NN murals NNS murder NN murdered VBN murderer NN murderers NNS murdering VBG murderous JJ murders NNS murkier JJR murkily RB murky JJ murmur NN murmured VBD murmuring VBG murmurs VBZ mus MD muscat JJ muscatel NN muscle NN muscle-bound JJ muscle-flexing JJ muscle-meat NN muscle-shaping JJ muscled VBD musclemen NNS muscles NNS muscling VBG muscular JJ musculature NN muse NN mused VBD muses VBZ museum NN museums NNS mush NN mushroom NN mushroom-processing JJ mushroomed VBN mushrooming NN mushrooms NNS mushy JJ music NN music-entertainment NN music-hall JJ music-loving JJ music-making NN music-publishing JJ musical JJ musicality NN musically RB musicals NNS musician NN musicians NNS musicianship NN musicologists NNS musing VBG musings NNS musk NN muskadell NN musket NN muskets NNS mussels NNS must MD musta MD mustache NN mustached JJ mustaches NNS mustachioed JJ mustard NN muster VB mustered VBD mustering VBG mustiness NN musts NNS musuem NN mutant JJ mutate VB mutated VBN mutates VBZ mutation NN mutational JJ mutations NNS mute JJ muted VBN mutely RB mutilated VBN mutilates VBZ mutilating VBG mutilation NN mutineer NN mutinies NNS mutinous JJ mutiny NN mutter VB muttered VBD mutterers NNS muttering VBG mutterings NNS mutters NNS mutton NN mutts NNS mutual JJ mutual-aid JJ mutual-assured JJ mutual-fund JJ mutual-funds NNS mutuality NN mutually RB muzzle NN muzzled VBN muzzles NNS muzzling JJ my PRP$ mycobacteria NN mycology NN myelofibrosis NN myelogenous JJ myeloid NN myn PRP$ myne PRP$ myocardial JJ myocardium NN myofibrillae NNS myofibrils NNS myopia NN myopic JJ myosin NN myriad JJ myrrh NN myrtle NN myself PRP mysteries NNS mysterious JJ mysteriously RB mystery NN mystery-story JJ mystic JJ mystical JJ mystically RB mysticism NN mysticisms NNS mystics NNS mystification NN mystified VBN mystique NN myth NN myth-making VBG mythic JJ mythical JJ mythological JJ mythologies NNS mythology NN myths NNS n NN n't RB n't/RB NNP n'th JJ n-dimensional JJ n-trial NN na TO na/TO NNP nab VB nabbed VBN nabbing VBG nacelle NN nacho-crunching JJ naczelnik FW nadir NN nagged VBD nagging JJ naggings NNS nags NNS nah UH nahce JJ nail NN nailed VBN nailing VBG nails NNS naive JJ naively RB naivete NN naked JJ nakedly RB nakedness NN name NN name-brand JJ name-calling NN name-dropper NN name-droppers NNS name-dropping NN name-drops VBZ name-plating JJ named VBN namedropper NN nameless JJ namely RB nameplate NN nameplates NNS names NNS namesake NN naming VBG nannies NNS nanny NN nap NN naphtha NN napkin NN napkins NNS napped VBD napping VBG naps NNS narcissistically RB narco NN narcokleptocrat NN narcolepsy NN narcos NNS narcosis NN narcotic JJ narcotics NNS narcotizes VBZ narcotraficantes FW narrated VBN narration NN narrative NN narratives NNS narrator NN narrow JJ narrow-bodied JJ narrow-casting NN narrow-minded JJ narrowed VBD narrower JJR narrowest JJS narrowing VBG narrowly RB narrowness NN narrows VBZ nary DT nasal JJ nasaled VBD nascent JJ nastier JJR nastiest JJS nasty JJ natal JJ natch UH nation NN nation-building NN nation-state NN nation-states NN nation-wide JJ national JJ national-policy NN national-priority JJ national-security NN national-service JJ national-treasure JJ nationalism NN nationalisms NNS nationalist JJ nationalistic JJ nationalists NNS nationalities NNS nationality NN nationalization NN nationalize VB nationalized VBD nationalizing VBG nationally RB nationals NNS nationhood NN nations NNS nationwide JJ native JJ native-born JJ natives NNS nattily RB natty JJ natural JJ natural-foods NNS natural-gas NN natural-gas-pipeline JJ natural-gas-pricing JJ natural-law NN natural-resources NNS naturalism NN naturalist NN naturalistic JJ naturalized VBN naturally RB naturalness NN nature NN nature-conquering JJ natured JJ natures NNS naturopath NN naught NN naughtier JJR naughty JJ nausea NN nauseated VBN nauseous JJ nautical JJ naval JJ navel NN navels NNS navies NNS navigable JJ navigate VB navigated VBN navigating VBG navigation NN navigational JJ navigator NN navigators NNS navy NN navy-blue JJ naw UH nawt RB nawth NN nay RB naysay VB naysayers NNS nd CC ne FW ne'er RB near IN near-Balkanization NN near-Communists NNS near-absence NN near-at-hand JJ near-blind JJ near-by IN near-certain JJ near-complete JJ near-completed JJ near-completion NN near-disaster NN near-doubling NN near-equivalents NNS near-hysteria NN near-identical JJ near-irrelevant JJ near-left NN near-limit JJ near-luxury JJ near-maddened JJ near-majority JJ near-manic JJ near-market JJ near-misses NN near-monopolies NNS near-monopoly NN near-mutiny NN near-panic JJ near-paralysis NN near-perfect JJ near-recession NN near-record JJ near-rich NN near-solid JJ near-strangers NNS near-synonyms NNS near-term JJ near-total JJ near-unanimous JJ near-unmatched JJ nearby JJ neared VBD nearer JJR nearest JJS nearing VBG nearly RB nearly-30 JJ nearness NN nears VBZ nearsighted JJ nearsightedly RB neat JJ neater RBR neatest JJS neatly RB neatness NN nebula NN nebular JJ nebulous JJ necessaries NNS necessarily RB necessary JJ necessitate VBP necessitated VBN necessitates VBZ necessitating VBG necessities NNS necessity NN neck NN neck-and-neck JJ neck-deep JJ necking NN necklace NN necklace-like JJ necklaces NNS neckline NN necks NNS necktie NN neckties NNS necromantic JJ necropsy NN necrosis NN necrotic JJ nectar NN nectareous JJ nectaries NNS need NN needed VBN needed... : needing VBG needle NN needle-like JJ needle-nosed JJ needle-sharp JJ needled VBD needlelike JJ needles NNS needless JJ needlessly RB needs VBZ needy JJ negate VB negated VBN negation NN negative JJ negatively RB negatives NNS negativism NN neglect NN neglected VBN neglecting VBG neglects VBZ negligence NN negligent JJ negligent-homicide NN negligently RB negligible JJ negligibly RB negociant NN negociants NNS negotatiators NNS negotiable JJ negotiate VB negotiated VBN negotiates VBZ negotiating VBG negotiation NN negotiations NNS negotiations... : negotiator NN negotiators NNS negro NNP negroes NNPS neige FW neighbhorhoods NNS neighbor NN neighborhood NN neighborhoods NNS neighboring VBG neighborliness NN neighborly JJ neighbors NNS neighbourhood NN neighbours NNS nein FW neither DT nemeses NNS nemesis NN neo JJ neo-Nazis NNPS neo-classicism NN neo-dadaist NN neo-fascist JJ neo-populist JJ neo-stagnationist JJ neo-swing NN neoclassical JJ neoconservative JJ neocortex NN neocortical-hypothalamic JJ neoliberal JJ neolithic JJ neon NN neon-lighted JJ neon-lit JJ neonatal JJ neophyte JJ neophytes NNS neoplasia FW neoprene NN nephew NN nephews NNS nepotism NN nerd NN nerd-and-geek JJ nerds NNS nerdy JJ nerly RB nerve NN nerve-cell JJ nerve-ends NNS nerve-racking JJ nerve-shattering JJ nerveless JJ nerves NNS nervous JJ nervously RB nervousness NN nervy JJ nest NN nest-egg NN nestbuilding NN nested VBN nester NN nesters NNS nesting VBG nestled VBN nestling NN nests NNS net JJ net-benefit JJ net-capital JJ net-like JJ net-profits JJ nether JJ nets NNS netted VBD netting VBG nettled VBD nettlesome JJ network NN network-affiliated JJ network-buying JJ network-owned JJ network-services JJ network-wide JJ network-writer JJ networking NN networks NNS neural JJ neuralgia NN neurasthenic NN neuritis NN neuroblastoma NN neurological JJ neurologist NN neurologists NNS neuromuscular JJ neuron NN neuronal JJ neuropathology NN neuropathy NN neuropsychiatric JJ neuroselective JJ neuroses NNS neurosis NN neurosurgeon NN neurotic JJ neurotoxic JJ neurotransmitter NN neurotransmitters NNS neuter NN neutered VBN neutral JJ neutralism NN neutralist JJ neutralists NNS neutrality NN neutralization NN neutralize VB neutralized VBN neutralizes VBZ neutrino NN neutrino-sized JJ neutron NN neutrons NNS neutrophils NNS never RB never-ending JJ never-predictable JJ never-to-be-forgotten JJ nevertheless RB new JJ new-business NN new-car NN new-country JJ new-found JJ new-generation NN new-home JJ new-house JJ new-issue JJ new-issues JJ new-job JJ new-loan JJ new-model JJ new-money JJ new-mown JJ new-product NN new-rich JJ new-share JJ new-spilled JJ new-styled JJ new-telephone-line NN newage NN newborn JJ newborns NNS newcasts NNS newcomer NN newcomers NNS newdrug NN newel NN newer JJR newest JJS newfangled JJ newfound JJ newissue NN newly RB newly-appointed JJ newly-created JJ newly-emerging JJ newly-married JJ newly-plowed JJ newly-scrubbed JJ newly-weds NNS newlywed NN newlyweds NNS news NN news-division NN news-magazine NN news-oriented JJ news-release NN news-weeklies NNS news-weekly NN newsboy NN newscast NN newscaster NN newscasts NNS newsgathering NN newsies NNS newsletter NN newsletters NNS newsmaker NN newsman NN newsmen NNS newspaper NN newspaper-delivery NN newspaper-industry JJ newspaper-printing NN newspaper-publishing JJ newspaperman NN newspapers NNS newsperson NN newsprint NN newsprints NNS newsreel NN newsroom NN newsstand NN newsstands NNS newsweekly RB newswire NN newsworthiness NN newsworthy JJ newt NN next JJ next-door JJ next-generation NN next-to-last JJ nexus NN ngandlu FW nibble VB nibblers NNS nibbling VBG nibs NNS nice JJ nice-looking JJ nicely RB nicer JJR nicest JJS niceties NNS niche NN niche-itis,`` `` niche-market NN niches NNS nicked VBN nickel NN nickel-iron NN nickeling VBG nickels NNS nickname NN nicknamed VBN nicknames NNS nicotine NN nicotine-choked JJ nicotine-free JJ niece NN nieces NNS nifty JJ niger NN nigga NN niggardly JJ nigger NN niggers NNS nigh RB night NN night-coach JJ night-sight NN night-time JJ night-vision JJ night-watchman NN nightclub NN nightclubs NNS nightdress NN nighted JJ nighters NNS nightfall NN nightgown-clad JJ nightgowns NNS nightingale NN nightingales NNS nightly JJ nightmare NN nightmares NNS nightmarish JJ nights NNS nightshirt NN nighttime JJ nigras NNS nigs NNS nihilism NN nihilist NN nihilistic JJ nil JJ nilly RB nilpotent JJ nimble JJ nimbler JJR nimbly RB nine CD nine-bedroom JJ nine-cent JJ nine-chambered JJ nine-day JJ nine-digit JJ nine-game JJ nine-member JJ nine-month JJ nine-months NNS nine-page JJ nine-point JJ nine-press NN nine-state JJ nine-story JJ nine-tenths NNS nine-thirty CD nine-to-five JJ nine-year JJ nine-year-old JJ ninefold JJ nineteen CD nineteen-year-old JJ nineteenth JJ nineteenth-century JJ nineties NNS ninetieth JJ ninety CD ninety-eight CD ninety-five CD ninety-nine CD ninety-six CD ninety-two CD ninth JJ ninth-circuit JJ ninth-inning NN ninth-largest JJ nip NN nipped VBD nipples NNS nips NNS nirvana NN nise JJ nisf-i-jahan NNP nit-picking NN nit-picky JJ nitpicking JJ nitrate NN nitrates NNS nitrite NN nitrocellulose NN nitrofurantoin NN nitrogen NN nitrogen-based JJ nitrogen-fertilizer NN nitrogen-mustard JJ nitroglycerine NN nitrous JJ nitwits NNS nixed VBD nnuolapertar-it-vuh-karti-birifw FW no DT no'junk JJ no-back NN no-brainer NN no-bunkum JJ no-confidence NN no-drinking JJ no-driving JJ no-fat JJ no-fault JJ no-frills JJ no-fuss JJ no-goal NN no-good JJ no-good-bums NNS no-growth JJ no-hit JJ no-hitters NNS no-inflation JJ no-layoff JJ no-load JJ no-loads NNS no-lose JJ no-man JJ no-man's-land NN no-men NNS no-mistakes JJ no-more-nonsense JJ no-muss JJ no-new-tax JJ no-new-taxes JJ no-no NN no-nonsense JJ no-nos NNS no-o UH no-one JJ no-profit JJ no-smoking JJ no-star JJ no-strike JJ no-tax JJ no-tax-increase JJ no-trade JJ no-trading JJ no-valued JJ no-walls-no-doors JJ no-waste JJ no-win JJ no. NN nobility NN noble JJ nobleman NN noblemen NNS nobler JJR nobles NNS noblesse JJ noblest JJS nobly RB nobody NN nociceptive JJ noconfidence JJ nocturnal JJ nod NN nodded VBD nodding VBG nodes NNS nods VBZ nodular JJ nodules NNS noes NNS noir FW noire NN noise NN noiseless JJ noisemakers NNS noises NNS noisier JJR noisily RB noisy JJ nolens FW noli NNS nolle FW nolo FW nomadic JJ nomads NNS nomenclatural JJ nomenclature NN nomenklatura FW nomias NNS nominal JJ nominally RB nominate VB nominated VBN nominating VBG nomination NN nominations NNS nominee NN nominees NNS non FW non-AMT JJ non-Alternative NNP non-Aryan JJ non-Big JJ non-British JJ non-Canadian JJ non-Castilians NNPS non-Catholic NNP non-Catholics NNPS non-Christians NNPS non-Cocom JJ non-Communist JJ non-Dow NNP non-EC JJ non-English NN non-European JJ non-Fed JJ non-Federal JJ non-Ford JJ non-GM JJ non-Germans NNS non-God NN non-Greek JJ non-Hispanic JJ non-Humana JJ non-Hungarians NNPS non-ICO JJ non-Indian JJ non-Indonesian JJ non-Japanese JJ non-Jew NN non-Jewish JJ non-Jews NNS non-Korean JJ non-Magyars NNPS non-Manpower JJ non-Mexican JJ non-NMS JJ non-New JJ non-OPEC JJ non-Russian JJ non-Socialist JJ non-Soviet JJ non-Swedish JJ non-Tagalog JJ non-Tories NNS non-U.S. JJ non-Western JJ non-`` `` non-absorbent JJ non-academic JJ non-accrual JJ non-accruing JJ non-advertising JJ non-affiliate NN non-airline JJ non-alcohol JJ non-alcoholic JJ non-algebraically JJ non-amortizing JJ non-annualized JJ non-answer JJ non-arbitrage JJ non-artistic JJ non-authoritative JJ non-auto JJ non-automotive JJ non-bank JJ non-banking JJ non-bearing JJ non-beer JJ non-binding JJ non-biodegradable JJ non-black JJ non-books NNS non-brain JJ non-brand JJ non-building JJ non-business JJ non-caffeine JJ non-call JJ non-callable JJ non-cash JJ non-casino JJ non-church JJ non-circumvention NN non-clients NNS non-code JJ non-college JJ non-color NN non-com NN non-commissioned JJ non-communist JJ non-communists NNS non-comparable JJ non-compete JJ non-competition JJ non-competitive JJ non-compliance NN non-conformists NNS non-confrontational JJ non-consolidated JJ non-consumer NN non-contact JJ non-contract JJ non-contributory JJ non-controlling JJ non-convertible JJ non-core JJ non-credit JJ non-crisis JJ non-cumulative JJ non-cyclical JJ non-daily JJ non-dairy-creamer NN non-dealer JJ non-deductible JJ non-defense JJ non-defense-related JJ non-democratic JJ non-direct JJ non-disabled JJ non-dischargable JJ non-discrimination NN non-diva-like JJ non-dividend-bearing JJ non-dramas NNS non-drug JJ non-dual JJ non-duck JJ non-durable JJ non-earning JJ non-economical JJ non-economists NNS non-edible JJ non-elderly JJ non-employee JJ non-encapsulating JJ non-energy JJ non-enforcement JJ non-enzymatic JJ non-equity JJ non-event NN non-exclusive JJ non-executive JJ non-exempt JJ non-existant JJ non-existent JJ non-familial JJ non-family JJ non-farm JJ non-fat JJ non-fiction JJ non-figurative JJ non-financial JJ non-firm JJ non-flight JJ non-food JJ non-forthcoming JJ non-fortress-like JJ non-freezing JJ non-gasoline JJ non-governmental JJ non-high JJ non-horticultural JJ non-hydrogen-bonded JJ non-identity JJ non-ideological JJ non-inflationary JJ non-insider NN non-instinctive JJ non-institutionalized JJ non-insurance JJ non-intellectual JJ non-interest JJ non-interest-bearing JJ non-interference NN non-interstate JJ non-interventionist JJ non-invasive JJ non-investment JJ non-issue NN non-itemized JJ non-job-connected JJ non-junk JJ non-junkies NNS non-lawyers NNS non-lethal JJ non-life JJ non-linear JJ non-liquid JJ non-literary JJ non-management JJ non-market NN non-meat NN non-medical JJ non-mega JJ non-member NN non-members NNS non-merger JJ non-metallic JJ non-methanol JJ non-military JJ non-mining JJ non-monetary JJ non-monopolistic JJ non-negative JJ non-network JJ non-newspaper JJ non-newtonian JJ non-nonsense NN non-objective JJ non-objects NNS non-oil JJ non-operating JJ non-option JJ non-packaging JJ non-paper NN non-partisan JJ non-party JJ non-patent JJ non-pathogenic JJ non-performing JJ non-person NN non-pipeline NN non-poetry NN non-police JJ non-political JJ non-polygynous JJ non-porous JJ non-pregnant JJ non-prescription JJ non-priority JJ non-productive JJ non-professional JJ non-professionals NNS non-profit JJ non-propagandistic JJ non-propagating JJ non-public JJ non-publishers NNS non-readers NNS non-realistic JJ non-recessionary JJ non-recourse JJ non-recurring JJ non-refundable JJ non-regulated JJ non-religious JJ non-repetitious JJ non-representation JJ non-research JJ non-resident JJ non-residential JJ non-residents NNS non-resistants JJ non-retail JJ non-romantic JJ non-sales JJ non-scheduled JJ non-scientific JJ non-scientist JJ non-seamen NNS non-sentimental JJ non-service JJ non-service-connected JJ non-skid JJ non-smokers NNS non-smoking JJ non-social JJ non-staple JJ non-state JJ non-stop JJ non-strategic JJ non-striking JJ non-subcommittee JJ non-subscription JJ non-subsidized JJ non-success NN non-supervisory JJ non-surgical JJ non-swimmers NNS non-systematic JJ non-tariff JJ non-taxable JJ non-telephone JJ non-thermal JJ non-time NN non-toxic JJ non-trade JJ non-trade-related JJ non-traders NNS non-traditional JJ non-union JJ non-user NN non-utility JJ non-vaccinated JJ non-verbal JJ non-vested JJ non-veterans NNS non-violence NN non-violent JJ non-violently RB non-viral JJ non-virulent JJ non-volatile JJ non-voting JJ non-wage JJ non-warranty NN non-wealthy JJ non-white JJ non-wireline JJ non-working JJ non-writers NNS nonacid JJ nonaddictive JJ nonagricultural JJ nonbanking JJ nonbinding JJ nonbusiness NN noncallable JJ noncash JJ nonce NN nonchalant JJ nonchlorinated JJ nonchurchgoing JJ noncombat JJ noncombatant JJ noncommercial JJ noncommissioned JJ noncommittal JJ noncommittally RB noncommunist NN noncompetitive JJ noncompetitively RB noncompliance NN noncompliant JJ nonconformist NN nonconformists NNS noncontract JJ noncontroversial JJ nonconvertible JJ noncorrosive JJ noncriminal JJ noncumulative JJ noncustomer NN nondairy JJ nondeductible JJ nondefeatist JJ nondefense JJ nondemocratic JJ nondescript JJ nondescriptly RB nondestructive JJ nondiscretionary JJ nondiscrimination NN nondiscriminatory JJ nondoctrinaire JJ nondollar JJ nondriver NN nondrying JJ nondurable JJ nondurables NNS none NN noneconomic JJ nonelectrical JJ nonentity NN nonequivalence NN nonequivalent JJ nonessential JJ nonetheless RB nonevent NN nonexecutive JJ nonexistent JJ nonfarm JJ nonfat JJ nonferrous JJ nonfiction NN nonfinancial JJ nonflammable JJ nonfood NN nonfunctional JJ noninflationary JJ noninstitutionalized JJ noninterest JJ noninterest-income NN noninterference NN nonintervention NN nonionic JJ nonism NN nonlethal JJ nonlinguistic JJ nonliterary JJ nonmaterial JJ nonmedia NN nonmembers NNS nonmetallic JJ nonminority NN nonmusical JJ nonmythological JJ nonobservant JJ nonoccurrence NN nonogenarian NN nonoperating VBG nonpareil JJ nonparticulate NN nonpartisan JJ nonpaying JJ nonpayment NN nonperformers NNS nonperforming JJ nonphysical JJ nonpoisonous JJ nonpolitical JJ nonporous JJ nonprescription NN nonpriority NN nonproductive JJ nonprofit JJ nonproliferation NN nonpublic JJ nonqualified VBN nonracial JJ nonreactivity NN nonreactors NNS nonrecourse JJ nonrecurring VBG nonrefundable JJ nonregulated JJ nonresident JJ nonresidential JJ nonresidential-contracting JJ nonsegregated JJ nonsense NN nonsensical JJ nonshifters NNS nonsingular JJ nonsmokers NNS nonsocialist JJ nonspecific JJ nonspecifically RB nonstandard JJ nonstop JJ nonstops NNS nonstrategic JJ nonstrikers NNS nonsuccessful JJ nonsurgical JJ nonsystematic JJ nonthreatening VBG nontoxic JJ nontrade NN nontraditional JJ nontransferable JJ nonunion JJ nonunionized VBN nonverbal JJ nonverbally RB nonviolence NN nonviolent JJ nonvirulent JJ nonvoting JJ nonwhite JJ nonwhites NNS nonworking JJ noodles NNS nook NN nooks NNS noon NN noontime NN noose NN nope UH nor CC noradrenalin NN norethandrolone NN norm NN normal JJ normalcy NN normalization NN normalize VB normalized VBN normalizing VBG normally RB normals NNS normative JJ norms NNS norske NNP north RB north-bound JJ north-flowing JJ north-south JJ northeast NN northeastern JJ northerly JJ northern JJ northerner NN northerners NNS northernmost JJ northers NNS northward RB northwest RB northwestern JJ nos NNS nos. NN nose NN nose-dive NN nose-dived VBD nose-to-nose JJ nosebag NN nosebleed NN nosed VBD nosedive NN nosedived VBD nosediving VBG noses NNS nosing VBG nostalgia NN nostalgic JJ nostalgically RB nostril NN nostrils NNS nostrums NNS nosy JJ not RB not-A NN not-ace NN not-for-profit JJ not-knowing RB|VBG not-less-deadly JJ not-quite-mainstream JJ not-quite-perfect JJ not-so-favorite JJ not-so-lonely JJ not-so-new JJ not-so-pale JJ not-so-rich NN not-so-subtly RB not-so-trivial JJ not-strictly-practical JJ not-too-distant JJ not-yet-married JJ not. NN notable JJ notables NNS notably RB notarized VBN notation NN notch NN notched VBN notched-stick JJ notches NNS notching VBG note NN notebook NN notebook-size JJ notebook-sized JJ notebooks NNS noted VBD noteholder NN noteholders NNS notepad NN notes NNS noteworthy JJ nothin NN nothing NN nothing-down JJ nothingness NN nothings NNS notice NN noticeable JJ noticeably RB noticed VBD notices NNS noticing VBG notification NN notifications NNS notified VBN notifies VBZ notify VB notifying VBG noting VBG notion NN notions NNS notoriety NN notorious JJ notoriously RB nott RB notwithstanding IN nought NN noun NN nouns NNS nourish VB nourished VBN nourishes VBZ nourishment NN nous FW nouveau JJ nouveaux FW nouvelle JJ novel NN novel-in-progress NN novelist NN novelistic JJ novelists NNS novelized JJ novels NNS novelties NNS novelty NN novice NN novices NNS novitiate NN novitiates NNS novo FW now RB now-Rep JJ now-deceased JJ now-defunct JJ now-discontinued JJ now-dismembered JJ now-dominant JJ now-evident JJ now-famous JJ now-historic JJ now-infamous JJ now-legal JJ now-misplaced JJ now-notorious JJ now-obscure JJ now-ousted JJ now-purged JJ now-repentant JJ now-scuttled JJ now-shaky JJ now-shuttered JJ now-smaller JJ now-standard JJ now-troubled JJ now-vacant JJ now... : nowadays RB nowbankrupt JJ nowhere RB noxious JJ nozzle NN nozzles NNS nuance NN nuances NNS nubbins NNS nubile JJ nuceoside NN nuclear JJ nuclear-armed JJ nuclear-arms NNS nuclear-bomb NN nuclear-industry NN nuclear-plant JJ nuclear-power JJ nuclear-powered JJ nuclear-propulsion JJ nuclear-tipped JJ nuclear-weapons NNS nuclear-weapons-sites NNS nucleated VBN nuclei NNS nucleic JJ nucleoli NNS nucleotide NN nucleus NN nuclide NN nude JJ nudes NNS nudge VB nudged VBD nudging VBG nudism NN nudist JJ nudity NN nufs NNS nugget NN nuisance NN nuisances NNS nukes NNS null JJ null-type JJ nullified VBN nullifiers NNS nullify VB nullifying VBG nullity NN numb JJ numbed VBN number NN number-crunchers NNS number-one JJ numbered VBN numbering VBG numbers NNS numbing JJ numbingly RB numbness NN numenous JJ numeral NN numerals NNS numerator NN numerical JJ numerically RB numerological JJ numerology NN numerous JJ numinous JJ numismatic JJ nun NN nuns NNS nuper FW nurse NN nursed VBD nurseries NNS nursery NN nurses NNS nursing NN nursing-home NN nursing-homes\/retirement-living JJ nurture VB nurture... : nurtured VBD nurturer NN nurturing VBG nut NN nut-house NN nut-like JJ nutmeg NN nutrient JJ nutrients NNS nutrition NN nutritional JJ nutritionists NNS nutritious JJ nutritive JJ nuts NNS nuts-and-bolts JJ nutshell NN nutty JJ nux NN nuzzled VBD nw. NN nyet UH nylon NN nymph NN nympho NN nymphomaniac NN nymphomaniacs NNS nymphs NNS nystatin NN o IN o'clock RB o'er IN oaf NN oafs NNS oak NN oak-log NN oaken JJ oaks NNS oases NNS oasis NN oat NN oat-based JJ oat-bran NN oath NN oath-taking NN oathe NN oaths NNS oatmeal NN oats NNS obdurate JJ obedience NN obedience-trained JJ obediences NNS obedient JJ obediently RB obeisance NN obeisant JJ obelisk NN obese JJ obesity NN obey VB obeyed VBD obeying VBG obeys VBZ obfuscate VB obfuscation NN obfuscations NNS obituaries NNS object NN objected VBD objectification NN objecting VBG objection NN objectionable JJ objections NNS objective NN objectively RB objectiveness NN objectives NNS objectivity NN objector NN objectors NNS objects NNS objets FW obligated VBN obligates VBZ obligating VBG obligation NN obligational JJ obligations NNS obligatory JJ obligatto NN oblige VB obliged VBN obliges VBZ obliging JJ obligingly RB oblique JJ obliquely RB obliterans NNS obliterate VB obliterated VBN obliteration NN oblivion NN oblivious JJ oblong JJ obnoxious JJ oboist NN obscene JJ obscenities NNS obscenity NN obscure JJ obscured VBN obscurely RB obscures VBZ obscuring VBG obscurities NNS obscurity NN obsequies NNS obsequious JJ obsequiousness NN observable JJ observance NN observances NNS observant JJ observation NN observational JJ observations NNS observatory NN observe VB observed VBN observer NN observers NNS observes VBZ observing VBG obsessed VBN obsesses VBZ obsession NN obsessions NNS obsessive JJ obsessive-compulsive JJ obsessively RB obsidian NN obsolescent JJ obsolesence NN obsolete JJ obsoleted VBN obsoleting VBG obstacle NN obstacles NNS obstetrician NN obstinacy NN obstinate JJ obstruct VB obstructed VBN obstructing VBG obstruction NN obstructionism NN obstructionist NN obstructive JJ obtain VB obtainable JJ obtaine VB obtained VBN obtaining VBG obtrudes VBZ obtrusiveness NN obtuse JJ obverse NN obviate VB obvious JJ obviously RB obviousness NN ocarina NN occasion NN occasional JJ occasionally RB occasioned VBN occasions NNS occidental JJ occipital JJ occluded VBN occlusion NN occlusive JJ occupancies NNS occupancy NN occupant NN occupants NNS occupation NN occupation-as NN|IN occupational JJ occupations NNS occupied VBN occupies VBZ occupy VB occupying VBG occur VB occured VBD occuring VBG occurred VBD occurrence NN occurrences NNS occurring VBG occurs VBZ ocean NN ocean-going JJ ocean-pollution NN ocean-shipping NN ocean-thermal JJ oceanfront JJ oceanographic JJ oceanography NN oceans NNS oceanthermal JJ ocelot NN och FW ocher NN ochre JJ octagonal JJ octahedron NN octane NN octave JJ octaves NNS octillion CD octogenaraians NNS octogenarian JJ octogenarians NNS octopus NN octoroon NN ocular JJ odd JJ odd-looking JJ odd-lot JJ odd-sounding JJ odd-year JJ oddball JJ oddballs NNS oddest JJS oddities NNS oddity NN oddly RB odds NNS odds-on JJ ode NN odious JJ odor NN odors NNS odyssey NN oedipal JJ oerations NNS oeufs FW of IN of'aw NN of'em IN|PP of'for IN of'idling NN of'no NN of'tholin NN of... : off IN off-Broadway JJ off-again JJ off-balance JJ off-base JJ off-beat JJ off-budget JJ off-center JJ off-color JJ off-duty JJ off-exchange JJ off-farm JJ off-field JJ off-flavors NNS off-hours JJ off-key JJ off-level JJ off-limits JJ off-line JJ off-network JJ off-off JJ off-off-Broadway NNP off-price JJ off-putting JJ off-road JJ off-season NN off-shore JJ off-speed JJ off-stage NN off-the-books JJ off-the-cuff JJ off-the-record JJ off-the-shelf JJ off-white JJ off-year JJ offal NN offbeat JJ offcourse JJ offences NNS offend VB offended VBN offender NN offenders NNS offending VBG offends VBZ offense NN offenses NNS offensive JJ offensively RB offensives NNS offer NN offered VBN offering NN offering-price JJ offerings NNS offers VBZ offersey NNS offhand JJ offhandedly RB offi NNS offical JJ officals NNS office NN office-equipment NN office-furniture JJ office-product NN office-products NNS office-supplies NNS office-supply JJ office-systems NNS office\/dept. NN officeholders NNS officer NN officered VBN officers NNS offices NNS official NN officialdom NN officially RB officials NNS officials-cum-drug-traffickers NNS officiate VB officiated VBD officiating VBG officio FW officious JJ offing NN offocus NN offputting JJ offsaddled VBD offset VB offsets VBZ offsetting VBG offshoot NN offshoots NNS offshore JJ offshore-rig NN offside NN offspring NN offstage RB oft RB oft-quoted JJ oft-repeated JJ often RB often-criticized JJ often-disparaged JJ often-fatal JJ often-heard JJ often-ignored JJ often-repeated JJ oftener RBR oftentimes RB ogled VBD ogles VBZ ogling VBG ogress NN oh UH ohmic JJ oil NN oil-and-gas JJ oil-based JJ oil-bath NN oil-bearing JJ oil-consuming JJ oil-covered JJ oil-depletion JJ oil-driller NN oil-drilling NN oil-exporting NN oil-field NN oil-finding JJ oil-futures NNS oil-industry NN oil-lease JJ oil-leasing NN oil-patch JJ oil-poor JJ oil-price NN oil-producing JJ oil-production NN oil-recycling NN oil-rig NN oil-service NN oil-services JJ oil-slicked JJ oil-spill NN oil-tanker NN oil-trading NN oil-transport JJ oil-well NN oilcloth NN oiled JJ oiler NN oilfield NN oilfields NNS oilheating NN oilman NN oilman-rancher NN oils NNS oilseed NN oilseeds NNS oilworkers NNS oily JJ oink UH ointment NN oiticica NN ok UH okay JJ oks VBZ ol JJ old JJ old-age JJ old-boy NN old-fashioned JJ old-grad-type NN old-growth JJ old-guard JJ old-line JJ old-maid NN old-model JJ old-name JJ old-style JJ old-time JJ old-timer NN old-timers NNS old-world JJ olden JJ older JJR older-skewing JJR oldest JJS oldies NNS oldline NN olds NNS oldsters NNS ole JJ oleanders NNS olefins NNS oleomargarine NN oleophilic JJ oleophobic JJ olestra NN olfactory JJ oligarchs NNS oligopoly NN olim FW olive JJ olive-flushed JJ olive-green JJ olivefaced JJ olives NNS ologies NNS ombudsman NN omelet NN omelets NNS omelette NN omen NN omens NNS omeprazole NN omg UH ominous JJ ominously RB omission NN omissions NNS omit VB omits VBZ omitted VBN omitting VBG ommission NN omnia FW omnibus JJ omnipotence NN omnipresence NN omnipresent JJ omniscient JJ on IN on'frontier NN on-again JJ on-again-off-again JJ on-air JJ on-and-off JJ on-board JJ on-budget JJ on-campus JJ on-level NN on-line JJ on-ramps NNS on-set JJ on-site JJ on-stage JJ on-sure JJ on-the-go JJ on-the-job JJ on-the-scene JJ on-the-spot JJ on-time JJ onboard NN once RB once-a-day JJ once-a-month JJ once-absolute JJ once-balkanized JJ once-bloated JJ once-bustling JJ once-closed JJ once-cozy JJ once-desirable JJ once-devoted JJ once-distinct JJ once-downtrodden JJ once-dry JJ once-dull JJ once-exploding JJ once-faltering JJ once-fashionable JJ once-grumpy JJ once-high-flying JJ once-in-a-lifetime JJ once-indomitable JJ once-loyal JJ once-lucrative JJ once-mighty JJ once-moribund JJ once-over NN once-over-lightly NN once-popular JJ once-powerful JJ once-prestigious JJ once-prevailing JJ once-private JJ once-profitable JJ once-promising JJ once-proud JJ once-rich JJ once-sacred JJ once-scandalous JJ once-sleepy JJ once-spare JJ once-sporadic JJ once-staid JJ once-stately JJ once-stodgy JJ once-strong JJ once-troubled JJ once-unprofitable JJ once-unthinkable JJ once-vast JJ oncogene NN oncogenes NNS oncologist NN oncology NN oncoming JJ onct IN one CD one-act JJ one-act-play JJ one-acter JJ one-acters NNS one-arm JJ one-branch JJ one-by-one JJ one-color JJ one-company JJ one-country JJ one-day JJ one-digit JJ one-dimensional JJ one-drug JJ one-dumbbell JJ one-eighth NN one-family JJ one-fifth NN one-for-one JJ one-for-two JJ one-fourth NN one-gee JJ one-half NN one-half-point JJ one-horse JJ one-hour JJ one-house JJ one-hundredth NN one-in-a-million JJ one-in-four JJ one-inch JJ one-industry JJ one-iron JJ one-issue JJ one-kiloton JJ one-liners NNS one-man JJ one-megabit JJ one-million-letter JJ one-million-plus JJ one-minute JJ one-month JJ one-month-old JJ one-newspaper JJ one-night JJ one-o'clock CD|RB one-of-a-kind JJ one-on-one JJ one-out-of-three JJ one-over-par JJ one-owner JJ one-page JJ one-paragraph JJ one-parent JJ one-party JJ one-penny JJ one-percentage JJ one-percentage-point JJ one-person NN one-plane JJ one-point JJ one-pound-or-so JJ one-product NN one-quarter NN one-quarter-cent JJ one-reel JJ one-restaurant NN one-room JJ one-sentence JJ one-set JJ one-ship JJ one-shot JJ one-sided JJ one-sixteenth NN one-sixth JJ one-size-fits-all JJ one-square-mile JJ one-step JJ one-stooler NN one-stop JJ one-story JJ one-stroke JJ one-tenth JJ one-term JJ one-third NN one-thirty RB one-thousand-zloty JJ one-thousandth NN one-time JJ one-twentieth JJ one-two JJ one-two-three NN one-upmanship NN one-upsmanship NN one-way JJ one-week JJ one-week-old JJ one-woman JJ one-word JJ one-year JJ one-year-old JJ one-yen JJ oneasy NN oneness NN onepage JJ onerous JJ ones NNS oneself PRP onetime JJ oneyear JJ ongoing JJ onion NN onions NNS onleh RB online JJ onlooker NN onlookers NNS only RB onrush NN onrushing JJ onscreen RB onset NN onslaught NN onslaughts NNS onstage NN onto IN ontological JJ ontologically RB onus NN onward RB onward-driving JJ onwards RB onyx NN oodles NN oohs UH oomph NN oops UH ooze NN oozed VBD oozing VBG op NNP op-ed JJ opalescent JJ opaque JJ open JJ open-access NN open-air JJ open-bank JJ open-checkbook NN open-collared JJ open-door NN open-end JJ open-ended JJ open-face JJ open-handed JJ open-interest JJ open-market JJ open-meeting JJ open-minded JJ open-mouthed JJ open-necked JJ open-shelf JJ open-skies JJ open-top JJ open-work JJ open-year JJ opened VBD openended VBN opener NN openers NNS opening NN opening-day NN opening-hour JJ openings NNS openly RB openness NN opens VBZ opera NN operable JJ operagoers NNS operalet NN operand NN operands NNS operas NNS operate VB operated VBN operates VBZ operatic JJ operating VBG operating-cost JJ operating-room NN operating-system JJ operation NN operational JJ operationally RB operations NNS operations... : operations\ NNP operative JJ operatives NNS operator NN operator-assisted JJ operator-services NNS operators NNS operatorship NN operetta NN operina NN ophthalmic JJ ophthalmologists NNS opiates NNS opines VBZ opining VBG opinion NN opinion-makers NNS opinionated JJ opinionmakers NNS opinions NNS opium NN opponent NN opponents NNS opportune JJ opportuning NN opportunism NN opportunist NN opportunistic JJ opportunists NNS opportunities NNS opportunity NN oppose VB opposed VBN opposes VBZ opposing VBG opposite JJ opposition NN opposition-party JJ oppposes VBZ oppressed JJ oppresses VBZ oppression NN oppressive JJ oppressors NNS opprobrium NN opt VB opted VBD optic JJ optical JJ optical-disk JJ optical-fiber JJ optical-products NNS optical-scanning JJ optical-storage JJ optically RB opticians NNS optics NNS optimal JJ optimality NN optimism NN optimist NN optimistic JJ optimistically RB optimists NNS optimization NN optimize VB optimizing VBG optimo FW optimum JJ opting VBG option NN option-based JJ option-related JJ optional JJ optioned VBN options NNS options-related JJ options-trading JJ opto-electronic JJ optronics NN opts VBZ opulence NN opulent JJ opus NN or CC or'dizzy JJ or'fortress NN or'junk NN or'you're NN or... : oracle NN oracles NNS oral JJ oral-care JJ orally RB orange JJ orange-and-blue JJ orange-and-white JJ orange-flavored JJ orange-juice NN oranges NNS orate VB oratio FW oration NN orations NNS orator NN oratorical JJ oratorio NN orators NNS oratory NN orb NN orbit NN orbital JJ orbited VBD orbiting VBG orbits NNS orchard NN orchard... : orchardists NNS orchards NNS orchestra NN orchestral JJ orchestras NNS orchestrate VB orchestrated VBD orchestrating VBG orchestration NN orchestrations NNS orchid-strewn JJ orchids NNS ordain VB ordained VBN ordeal NN order NN order-delivery JJ order-entry JJ order-imbalance NN order-matching NNS order-processing JJ order-taker NN order-taking NN order-to-ship JJ ordere VBN ordered VBD ordering VBG orderings NNS orderliness NN orderly JJ orders NNS orders-related JJ ordinance NN ordinances NNS ordinarily RB ordinarius NN ordinary JJ ordinates NNS ordination NN ordnance NN ordo FW ore NN ores NNS organ NN organ-transplant JJ organdy NN organic JJ organically RB organics NNS organification NN organised VBD organism NN organismic JJ organisms NNS organist NN organization NN organization-position JJ organizational JJ organizationally RB organizations NNS organize VB organized VBN organized-crime NN organizer NN organizers NNS organizes VBZ organizing VBG organs NNS orgasm NN orgasms NNS orgiastic JJ orgies NNS orginally RB orginate VB orgone NN orgy NN oriental JJ orientation NN orientations NNS oriented VBN oriented-polypropylene JJ orienting VBG orifices NNS origin NN origin... : original JJ original-equipment JJ original-instrument JJ original-issue JJ originality NN originally RB originals NNS originate VB originated VBD originates VBZ originating VBG origination NN originations NNS originator NN originators NNS origins NNS ornament NN ornamental JJ ornamentation NN ornamented VBN ornaments NNS ornate JJ ornately RB ornery JJ orney JJ ornithological JJ ornithologist NN ornithology NN ornraier RBR orphan JJ orphanage NN orphaned VBN orphans NNS orthicon NN orthodontic JJ orthodontics NNS orthodontist NN orthodontists NNS orthodox JJ orthodoxy NN orthographic JJ orthographies NNS orthography NN orthopedic JJ orthopedics NNS orthophosphate NN orthophosphates NNS orthorhombic JJ orzae NNS os NN oscillated VBD oscillating VBG oscillation NN oscillator NN osf IN osmium NN osmotic JJ osseous JJ ossification NN ossify VB ostensible JJ ostensibly RB ostentation NN ostentatious JJ ostentatiously RB osteoarthritis NN osteoporosis NN ostinato NN ostinatos NNS ostracism NN ostracized VBN ostrich JJ othe JJ other JJ other-directed JJ other-nation JJ other. NN others NNS otherwise RB otherworldliness NN otherworldly JJ otter NN otters NNS oud NN ought MD oughta MD oui FW ould JJ ounce NN ounces NNS our PRP$ ours PRP ourselves PRP oust VB ousted VBN ouster NN ousting VBG out IN out'n IN out-and-out JJ out-compete VB out-dated JJ out-group NN out-migrants NNS out-migration NN out-moded JJ out-of-alignment NN out-of-bounds JJ out-of-court JJ out-of-date JJ out-of-door NN out-of-doors NNS out-of-favor JJ out-of-kilter JJ out-of-mind JJ out-of-pocket JJ out-of-repair NN out-of-school JJ out-of-sight JJ out-of-state JJ out-of-staters NNS out-of-step JJ out-of-synch JJ out-of-the-way JJ out-of-touch JJ out-of-town JJ out-plunging JJ out-reaching JJ out-smart VB out-trade VB out... : outage NN outages NNS outback NN outbid VB outbidding VBG outboard JJ outboards NNS outbound JJ outbreak NN outbreaks NNS outburst NN outbursts NNS outcast NN outcasts NNS outclass VBP outclassed VBN outcome NN outcomes NNS outcrops NNS outcry NN outcuss VBZ outdated JJ outdid VBD outdistanced VBD outdistancing VBG outdo VB outdone VBN outdoor JJ outdoor-maintenance NN outdoors RB outdoorsman NN outdoorsman\ NN outdrew VBD outer JJ outer-space NN outface VB outfield NN outfielder NN outfielders NNS outfit NN outfits NN outfitted VBD outfitting VBG outflank VB outflow NN outflows NNS outfly VB outfought NN outfox VB outgained VBD outgeneraled VBN outgoing JJ outgrew VBD outgrip VB outgrow VB outgrown VBN outgrowth NN outguess VB outguessing VBG outhouse NN outing NN outings NNS outlanders NNS outlandish JJ outlandishly RB outlast VB outlasted VBD outlaw VB outlawed VBN outlawing VBG outlawry NN outlaws NNS outlay NN outlays NNS outleaped VBD outlet NN outlets NNS outline NN outlined VBN outlines NNS outlining VBG outlive VB outlived VBN outlook NN outlooks NNS outlying JJ outmaneuver VB outmaneuvered VBN outmatched VBD outmoded JJ outnumber VBP outnumbered VBD outpace VB outpaced VBD outpaces VBZ outpacing VBG outpatient NN outperform VB outperformed VBD outperforming VBG outperforms VBZ outplacement NN outplayed VBD outpost NN outposts NNS outpouring NN output NN output-axis NN output-restricting JJ outputs NNS outputting VBG outrage NN outraged VBN outrageous JJ outrageously RB outrages NNS outrank VBP outranks VBZ outreach NN outrigger NN outriggers NNS outright JJ outrun VB outs NNS outscored VBD outscoring VBG outsell VB outselling VBG outsells VBZ outset NN outshine VB outshines VBZ outshone NN outside IN outsider NN outsiders NNS outsized JJ outskirt NN outskirts NNS outslugged VBN outsmarted VBD outsold VBD outspend VBP outspends VBZ outspoken JJ outspread VBN outstanding JJ outstandingly RB outstate JJ outstretched VBN outstrip VB outstripped NN outstripping VBG outstrips VBZ outta IN outward RB outward-looking JJ outward-projecting JJ outwardly RB outweigh VBP outweighed VBD outweighs VBZ outwit VB outworn JJ ova NN oval JJ ovals NNS ovarian JJ ovata NN ovation NN oven NN ovens NNS over IN over-40 JJ over-50 JJ over-50s NNS over-achievement NN over-achievers NNS over-all JJ over-allotment JJ over-allotments NNS over-ambition NN over-arching JJ over-arranged JJ over-broad JJ over-capacity NN over-committed JJ over-corrected VBD over-emphasize JJ over-emphasized VBN over-hand JJ over-hired VBD over-land JJ over-large JJ over-leveraged JJ over-magazined VBN over-night JJ over-occupied JJ over-optimistic JJ over-populated JJ over-pretended JJ over-price VB over-produce VB over-regulation NN over-rewarding JJ over-simple JJ over-simplification NN over-spent JJ over-stitched JJ over-stored JJ over-stress VB over-subscribed JJ over-the-air JJ over-the-counter JJ over-the-road JJ overactive JJ overage JJ overaggressive JJ overall JJ overallotment NN|JJ overallotments NNS overalls NNS overambition NN overarching VBG overarming VBG overbearing JJ overbid VBD overbilled VBD overbilling VBG overbillings NNS overblown JJ overboard RB overborrowing VBG overbought VBN overbreadth NN overbroad JJ overbuilding NN overbuilt JJ overburden VB overburdened VBN overcame VBD overcapacity NN overcast NN overcerebral JJ overcharge NN overcharged VBN overcharges NNS overcharging VBG overcoat NN overcoats NNS overcollateralized VBN overcollected JJ overcollection NN overcome VB overcomes VBZ overcoming VBG overcoming... : overcommitted VBN overconfident JJ overcooked VBN overcooks VBZ overcooled JJ overcrowded JJ overcrowding NN overcurious JJ overdependence NN overdeveloped JJ overdoing VBG overdone VBN overdose NN overdosed VBN overdoses NNS overdosing VBG overdraft NN overdraw VB overdrawn JJ overdressed JJ overdrive NN overdriving VBG overdue JJ overeager JJ overeat VBP overeating NN overemphasis NN overemphasize VB overemphasized VBN overenforced VBN overestimate VB overestimated VBD overestimates VBZ overestimation NN overexcited VBN overexercised VBN overexpansion NN overexploitation NN overexploited JJ overexpose VB overextend VBP overextended VBN overfeed VB overfill VB overflights NNS overflow NN overflowed VBD overflowing VBG overflows NNS overfunded VBN overfunding NN overgeneralization NN overgenerous JJ overgrazing NN overgrown VBN overhand JJ overhang NN overhanging VBG overhangs NNS overharvesting NN overhaul NN overhauled VBN overhauling VBG overhauls NNS overhead JJ overhear VB overheard VBN overhearing VBG overhears VBZ overheat VB overheated VBN overheating VBG overhyped JJ overinclusion NN overindebtedness NN overindulged VBD overinsistent JJ overinvested VBN overjoyed JJ overkill NN overlaid VBN overland RB overlap NN overlapped VBN overlapping VBG overlaps VBZ overlay NN overlays VBZ overleveraged JJ overleveraging VBG overload NN overloaded VBN overlong JJ overlook VB overlooked VBN overlooking VBG overlooks VBZ overloud JJ overly RB overlying JJ overmedicated VBN overnight JJ overnighters NNS overpaid VBN overpass NN overpay VB overpaying VBG overpayment NN overpayments NNS overplanted VBN overplayed VBD overpopulated VBN overpopulation NN overpower VB overpowered VBN overpowering JJ overpowers VBZ overpressure NN overpriced VBN overproduce VB overproducers NNS overproduction NN overprotected VBN overprotection NN overprotective JJ overpurchase VB overran VBD overrated VBN overreach VB overreached VBD overreaches VBZ overreact VB overreacted VBN overreacting VBG overreaction NN overregulated JJ overregulation NN overrendered VBN overridden VBN override VB overrides VBZ overriding VBG overrode VBD overrule VB overruled VBD overrules VBZ overruling VBG overrun VBN overruns NNS oversaturating VBG oversaw VBD overseas JJ oversee VB overseeing VBG overseen VBN overseer NN overseers NNS oversees VBZ overshadow VBP overshadowed VBN overshadowing VBG overshadows VBZ overshoes NNS overshoots VBZ overshot VBD oversight NN oversimplification NN oversimplified VBN oversize JJ oversized JJ oversoft JJ oversoftness NN oversold VBN overspending NN overstaff VB overstaffed JJ overstate VB overstated VBN overstatement NN overstates VBZ overstating VBG overstaying VBG overstepping VBG overstored JJ overstrained VBN overstraining NN overstretch VB oversubscribed VBN oversupplied JJ oversupply NN overt JJ overtake VB overtaken VBN overtakin VBG overtaking VBG overtaxed JJ overthrow VB overthrowing VBG overthrown VBN overtime NN overtly RB overtones NNS overtook VBD overture NN overtures NNS overturn VB overturned VBN overturning VBG overturns VBZ overuse NN overused VBN overvalued VBN overvaulting JJ overview NN overweening JJ overweight JJ overweighted VBN overwhelm VB overwhelmed VBN overwhelming JJ overwhelmingly RB overworked VBN overworking VBG overwritten JJ overwrought JJ overzealous JJ overzealousness NN oviform JJ ovulation NN owe VBP owed VBN owes VBZ owing JJ owl NN owl-shaped JJ owls NNS own JJ owne JJ owned VBN owner NN owner-bred JJ owners NNS ownership NN ownership... : ownerships NNS owning VBG owns VBZ ownself PRP ox NN oxalate NN oxaloacetic JJ oxcart NN oxen NNS oxidation NN oxide NN oxides NNS oxidised VBN oxidized JJ oxidizer NN oxygen NN oxygens NNS oxyhydroxides NNS oxytetracycline NN oyabun NN oystchers NNS oyster NN oysters NNS oz NN oz. NN ozone NN ozone-cancer JJ ozone-damaging JJ ozone-depleting JJ ozone-destroying JJ ozone-exposed JJ ozone-forming JJ ozone-safe JJ ozonedepletion NN p NN p'lite NN p-aminobenzoic JJ p. NN p.a. NN p.m RB p.m. NN p.m.-conclusion NN p.m.-midnight NNP p53 NN pH NNP pa NN pace NN pace-setter NN paced VBD pacem FW pacemaker NN pacemakers NNS pacer NN pacers NNS paces NNS pachinko NN pacific JJ pacified VBD pacifier NN pacifies VBZ pacifism NN pacifist NN pacifistic JJ pacify VB pacing VBG pack NN package NN package-delivery JJ package-design NN package-holiday JJ package-sort JJ package-sorting NN package-tracing NN packaged VBN packaged-goods NNS packages NNS packaging NN packed VBN packers NNS packet NN packets NNS packing VBG packs NNS pact NN pacts NNS pad NN padded JJ paddies NNS padding NN paddle NN paddleball NN paddles NNS paddock NN padlock NN padlocked VBD pads NNS paean NN paeans NNS pagan JJ paganism NN page NN page-composition NN page-long JJ page-one JJ pageant NN pageantry NN pageants NNS pager NN pagers NNS pages NNS paginated VBN paging NN pagoda NN pagodas NNS paid VBN paid-for IN paid-in JJ paid-up JJ paide VBN paie VB pail NN pails NNS pain NN pain-bringing JJ pain-relief NN pained JJ painful JJ painfully RB painkiller NN painkillers NNS painless JJ painlessly RB pains NNS pains-taking JJ painstaking JJ painstakingly RB paint NN paint-recycling JJ paintbrush NN painted VBN painted-in NN painter NN painteresque JJ painters NNS painting NN paintings NNS paints NNS pair NN paired VBN pairing NN pairings NNS pairs NNS pajama NN pajama-clad JJ pajamas NNS pal NN palace NN palaces NNS palamedes NN palatability NN palatable JJ palate NN palates NNS palatial JJ palazzi NNS palazzo NN palazzos NNS pale JJ pale-blue JJ paled VBD palely RB paleness NN paleo NN paleocortical JJ paleoexplosion NN paleontologically RB paleontologists NNS pales VBZ palest JJS palette NN palindromes NNS paling VBG palisades NNS pall NN palladium NN pallet NN palletized VBN pallets NNS palliative JJ pallid JJ pallor NN palm NN palm-fringed JJ palm-lined JJ palm-studded JJ palm-tree NN palmed VBD palms NNS palmtop NN palmtops NNS palpable JJ palpably RB palpitations NNS pals NNS palsy NN paltry JJ pampas NNS pamper VB pampered JJ pampering VBG pampers VBZ pamphlet NN pamphleteer NN pamphlets NNS pan NN pan-European JJ pan-national JJ pan-nationalism NN pan-tribal JJ panacea NN panaceas NNS panache NN pancake NN pancakes NNS pancreas NN pancreatitis NN pandanus NN pandemic NN pandemonium NN pandering VBG panders NNS pane NN panel NN panelboard NN paneled JJ paneling NN panelists NNS panelization NN panelized VBN panels NNS panes NNS pangs NNS panhandle NN panhandler NN panic NN panic-driven JJ panic-stricken JJ panicked VBD panicking VBG panicky JJ panics NNS panjandrum NN panjandrums NNS panky NN panned VBN panning VBG panoply NN panorama NN panoramas NNS panoramic JJ pans NNS pansies NNS pansy NN pant NN pant-legs NNS pantaloons NNS panted VBD pantheist NN pantheon NN panthers NNS panties NNS panting VBG pantomime NN pantomimed VBD pantomimic JJ pantry NN pants NNS pants-legs NN pany NN panzers NNS paot NN pap NN papal JJ paper NN paper-and-crayon JJ paper-clip NN paper-company JJ paper-goods NNS paper-littered JJ paper-making JJ paper-manufacturing JJ paper-products NNS paper-pushing JJ paper-shuffling NN paper-work NN paperback NN paperbacks NNS paperboard NN paperboy NN paperclip NN papering VBG paperless JJ papers NNS paperwads NNS paperwork NN papery JJ papier-mache NN papiers FW papillary JJ paprika NN papyrus NN par NN par-3 NN par-5 JJ parable NN parables NNS parachute NN parachutes NNS parachuting VBG parade NN paraded VBN parades NNS paradigm NN paradigmatic JJ paradigms NNS parading VBG paradise NN paradises NNS paradox NN paradoxical JJ paradoxically RB paragon NN paragraph NN paragraphing NN paragraphs NNS parakeet NN parakeets NNS paralanguage NN paralegal NN paralegals NNS paralinguistic JJ parallel JJ parallel-computing JJ paralleled VBN paralleling VBG parallelism NN parallels NNS paralysis NN paralyze VB paralyzed VBN paralyzes VBZ paralyzing VBG paramagnet NN paramagnetic JJ parameter NN parameters NNS parametric JJ paramilitary JJ paramount JJ paranoia NN paranoiac NN paranoid JJ paranormal JJ paraoxon NN parapet NN parapets NNS paraphernalia NNS paraphrase NN paraphrases NNS paraphrasing VBG parapsychology NN paraquat NN parasite NN parasites NNS parasitic JJ parasol NN parasols NNS parastatals NNS parasympathetic JJ paratroopers NNS paratroops NNS paraxial JJ parboiled VBD parcel NN parceled VBN parceling NN parcels NNS parched VBN parchment NN pardon VB pardonable JJ pardoned VBN pardons NNS pare VB pared VBN pared-down JJ paredon NN parenchyma NN parent NN parent-child JJ parent-company JJ parent-teacher JJ parentage NN parental JJ parental-consent JJ parental-leave JJ parentheses NNS parenthetically RB parenthood NN parenting NN parentis FW parents NNS pari-mutuel JJ pariah NN pariahs NNS parimutuels NNS paring VBG parings NNS parish NN parishes NNS parishioners NNS parisology NN parities NNS parity NN park NN parked VBN parking NN parkish JJ parklike JJ parks NNS parkway NN parlance NN parlayed VBD parley NN parliament NN parliamentarian NN parliamentarians NNS parliamentary JJ parliaments NNS parlor NN parlors NNS parochial JJ parodied VBD parodies NNS parody NN parole NN parolees NNS paroxysmal JJ parquet NN parried VBD parrot-like JJ parroting VBG parrots NNS parry VB pars NNS parses VBZ parsimonious JJ parsimony NN parsing VBG parsley NN parson NN parsonage NN parsympathetic JJ part NN part-owner NN part-time JJ part-timers NNS partake VB partaker VB partakes VBZ partaking VBG parte NN parted VBD partial JJ partially RB participant NN participants NNS participate VB participated VBD participates VBZ participating VBG participation NN participations NNS participative JJ participatory JJ particle NN particle-board NN particles NNS particular JJ particularistic JJ particularistic-seeming JJ particularity NN particularly RB particulars NNS particulate JJ particulates NNS parties NNS parting NN partings NNS partisan JJ partisans NNS partisanship NN partition NN partitioned VBN partly RB partner NN partner-in-charge NN partner-notification NN partnered VBN partners NNS partnership NN partnerships NNS partook VBP parts NNS parts-engineering JJ parts-suppliers NNS party NN party-giving NN party-line JJ partying VBG parvenus NNS pas FW pasha NN pashas NNS paso NN pass VB pass-through JJ passable JJ passably RB passage NN passages NNS passageway NN passbook NN passbooks NNS passe JJ passed VBN passel NN passenger NN passenger-car NN passenger-kilometers NNS passenger-loading JJ passenger-mile NN passenger-miles NNS passenger-reservation NN passenger-restraint NN passenger-tire JJ passenger-transportation JJ passengers NNS passer-by NN passerby NN passers-by NNS passes VBZ passing VBG passion NN passionate JJ passionately RB passions NNS passive JJ passive-loss JJ passively RB passiveness NN passivity NN passport NN passports NNS passthrough JJ passwords NNS past JJ past-due JJ past-fantasy JJ past-oriented JJ past. NN pasta NN pastdue JJ paste NN pasted VBN pasted-in JJ pastel JJ pastel-like JJ pastels NNS pastes NNS pasteurization NN pasteurized VBN pastilles NNS pastime NN pastimes NNS pasting VBG pastness NN pastor NN pastoral JJ pastoris NN pastors NNS pastrami NNS pastries NNS pastry NN pastry-lined JJ pasture NN pastures NNS pasty JJ pat JJ patch NN patched VBN patches NNS patchwork NN pate NN patent NN patent-infringement NN patent-law NN patent-sharing JJ patented VBN patenting NN patently RB patents NNS pater NN paternal JJ paternalism NN paternalist JJ paternalistic JJ paternally RB paternity NN paterollers NNS path NN pathetic JJ pathfinder NN pathless JJ pathlogy NN pathogenesis NN pathogenic JJ pathologic JJ pathological JJ pathologically RB pathologist NN pathology NN pathos NN paths NNS pathway NN pathways NNS patience NN patient NN patient-advocacy NN patient-care JJ patient-interview JJ patient-physician JJ patienthood NN patiently RB patients NNS patina NN patinas NNS patio NN patisseries NNS patria FW patriarch NN patriarchal JJ patriarchate NN patriarchy NN patrician JJ patrimony NN patriot NN patriotic JJ patriotism NN patriots NNS patristic JJ patrol NN patrolled VBN patrolling VBG patrolman NN patrolmen NNS patrols NNS patron NN patronage NN patronage-free JJ patroness NN patronize VB patronized VBN patronizing VBG patronne NN patrons NNS patrons... : pats NNS patsies NNS patsy NN patted VBD patter NN pattered VBD pattern NN patterned VBN patterns NNS patties NNS patting VBG patty-cake JJ paucity NN paunch NN paunchy JJ pauper NN pause NN paused VBD pauses VBZ pausing VBG pavane NN pave VB paved JJ pavement NN pavement-performance NN pavements NNS paves VBZ pavian FW pavilion NN pavilions NNS paving VBG paving-equipment NN paw NN pawed VBN pawing VBG pawn NN pawning VBG pawns NNS pawnshop NN paws NNS pax FW pax-ordo NN paxam NN pay VB pay-TV NN pay-and-benefit JJ pay-as-you-go JJ pay-back JJ pay-cable JJ pay-down JJ pay-for-performance JJ pay-hike JJ pay-in-kind JJ pay-later JJ pay-movie JJ pay-out NN pay-per-view JJ pay-television NN payable JJ payables NNS payback NN paycheck NN paychecks NNS payday NN paydirt NN paydown NN payer NN payers NNS paying VBG payloads NNS paymaster NN payment NN payment-in-kind JJ payment-system NN payment... : payments NNS payoff NN payoffif NN payoffs NNS payola NN payout NN payout-bylaws NNS payouts NNS payroll NN payroll-paring JJ payroll-reduction NN payroll-tax NN payrolls NNS pays VBZ pea NN pea-green JJ peace NN peace-keeping NN peace-loving JJ peace-treaty NN peaceable JJ peaceful JJ peacefully RB peacekeeping JJ peacemaker NN peacemakers NNS peacemaking NN peacetime NN peach NN peaches NNS peacock NN peacocks NNS peak NN peaked VBD peaking VBG peaks NNS peaky JJ peal NN pealing VBG peals NNS peanut NN peanut-butter NN peanuts NNS pear NN pear-shaped JJ pearl NN pearl-gray JJ pearl-handled JJ pearls NNS pearly JJ pears NNS peas NNS peasant NN peasanthood NN peasants NNS pebble NN pebbles NNS pecan NN pecans NNS peccadilloes NNS peccavi FW peck VBP pecked VBD pecks NNS pecs NNS pectoral-front JJ pectoral-ribcage NN pectoralis NN pectorals NNS peculiar JJ peculiarities NNS peculiarity NN peculiarly RB pecuniary JJ pedagogical JJ pedagogue NN pedal VB pedaled VBN pedaling VBG pedals NNS pedantic JJ peddle VB peddled VBN peddler NN peddlers NNS peddles VBZ peddling VBG pedestal NN pedestals NNS pedestrian JJ pedestrians NNS pediatric JJ pediatrician NN pediatrics NN pedigree NN pedigreed VBN pedimented VBN pee-wee JJ peed VBN peek NN peeked VBD peeking VBG peel VB peel-off JJ peelback JJ peeled VBN peeling VBG peels VBZ peep NN peeping VBG peer NN peer-group JJ peered VBD peering VBG peerless JJ peers NNS peeved VBN peeves NNS peg VBP pegboard NN pegboards NNS pegged VBN pegged-down JJ peggin NN pegging VBG pegs NNS pejorative JJ pell-mell NN pellagra NN pellets NNS pelting JJ peltry NN pelts NNS pelvic JJ pelvis NN pemmican NN pen NN pen-and-ink JJ pen-and-pencil JJ penal JJ penalize VB penalized VBN penalizes VBZ penalizing VBG penalties NNS penalty NN penalty-free JJ penalty-lending JJ penance NN pence NN penchant NN pencil NN pencil-and-sepia JJ pencil-pusher NN penciled VBN pencils NNS pendant NN pending VBG pendulum NN penetrate VB penetrated VBN penetrates VBZ penetrating JJ penetration NN penetrations NNS penicillin NN peninsula NN penises NNS penitentiary NN penknife NN penman NN pennant NN pennants NNS penned VBN pennies NNS penniless JJ penning VBG penny NN penny-ante JJ penny-brokerage JJ penny-pinching JJ penny-stock JJ penny-stockbroker NN penny-stocks NN penny-wise JJ pennystock NN pens NNS pension NN pension-fund NN pension-industry JJ pension-insurance JJ pension-minded JJ pension-plan NN pension-tax NN pensioner NN pensioners NNS pensions NNS pent-up JJ pentagon NN pentameter NN pentamidine NN penthouse NN penultimate JJ penurious JJ penury NN peonies NNS people NNS people-oriented JJ people... : peopled VBN peoples NNS pep NN pepper NN pepper-coated JJ peppered VBD peppering VBG peppermint NN peppermints NNS pepperoni NNS peppers NNS peppery JJ pepping VBG peppy JJ peptidases NNS peptide NN peptides NNS peptizing VBG per IN per-ad JJ per-capita JJ per-day JJ per-game JJ per-passenger NN per-pupil JJ per-sale JJ per-share JJ per-store JJ per-subscriber NN per-ton JJ per-year JJ perceive VB perceived VBN perceives VBZ perceiving VBG percent NN percentage NN percentage-point JJ percentages NNS percenter NN perceptible JJ perception NN perceptions NNS perceptive JJ perceptiveness NN perceptual JJ perch NN perchance RB perched VBN perchlorate NN percolator NN percussion NN percussionist NN percussive JJ peremptory JJ perennial JJ perennially RB perennials NNS perestroika FW perestrokia NN perfect JJ perfect-attendance NN perfectability NN perfected VBN perfectibility NN perfecting VBG perfection NN perfectionism NN perfectionists NNS perfectly RB perfidious JJ perfidy NN perforated JJ perforations NNS perforce RB perform VB performance NN performance-based JJ performance-capacity NN performance-oriented JJ performance-related JJ performance-sharing JJ performances NNS performed VBN performer NN performers NNS performing VBG performing-arts NNS performs VBZ perfume NN perfumed JJ perfumery NN perfumes NNS perfunctorily RB perfunctory JJ perfuses VBZ perfusion NN perhaps RB perhaps-decisive JJ peridontal JJ peril NN perilla NN perilous JJ perilously RB perils NNS perimeter NN perinatally RB period NN periodic JJ periodical NN periodically RB periodicals NNS periodicity NN periodontal JJ periods NNS peripheral JJ peripherally RB peripherals NNS periphery NN periphrastic JJ periscopes NNS perish VB perishable JJ perishables NNS perished VBD perishes VBZ perishing VBG peritoneal JJ periwinkles NNS perjury NN perk JJ perked VBD perking VBG perks NNS perky JJ permanant JJ permanence NN permanent JJ permanent-insurance JJ permanent-looking JJ permanently RB permeable JJ permeate VB permeated VBN permeates VBZ permeating VBG permissibility NN permissible JJ permission NN permissive JJ permit VB permits VBZ permitted VBN permitting VBG pernicious JJ peroxide NN perpendicular JJ perpendicularly RB perpetrate VB perpetrated VBN perpetration NN perpetrator NN perpetrators NNS perpetual JJ perpetually RB perpetuate VB perpetuated VBN perpetuates VBZ perpetuating VBG perpetuation NN perpetuity NN perplex VBP perplexed JJ perplexing JJ perplexity NN perquisites NNS persecute VBP persecuted VBN persecuting VBG persecution NN persecutors NNS persecutory JJ perseverance NN persevere VB persevered VBD perseveres VBZ pershare JJ persiflage NN persimmons NNS persist VB persisted VBD persistence NN persistency NN persistent JJ persistently RB persisting VBG persists VBZ person NN person-to-person JJ persona NN personae NNS personage NN personages NNS personal JJ personal-care JJ personal-computer NN personal-income JJ personal-income-tax JJ personal-injury JJ personal-property NN personal-spending NN personalities NNS personality NN personalize VB personalized VBN personally RB personally-owned JJ personification NN personified VBN personifies VBZ personifying VBG personnel NNS persons NNS perspective NN perspectives NNS perspiration NN perspired VBD perspiring JJ persuade VB persuaded VBN persuaders NNS persuades VBZ persuading VBG persuasion NN persuasions NNS persuasive JJ persuasively RB persuasiveness NN pert JJ pertain VBP pertained VBP pertaining VBG pertains VBZ pertinence NN pertinent JJ perturbation NN perturbations NNS perturbed JJ pertussis NN perusal NN peruse VB perusing VBG pervade VBP pervaded VBD pervades VBZ pervading VBG pervaporation NN pervasive JJ pervasively RB pervasiveness NN perverse JJ perversely RB perversion NN perversions NNS perversities NNS pervert NN perverted VBN pesatas NNS peseta NN pesetas NNS peso NN pesos NNS pessimism NN pessimist NN pessimistic JJ pessimists NNS pest NN pest-control JJ pester VB pestering VBG pesticide NN pesticide-free JJ pesticide-reform NN pesticides NNS pesticides.`` `` pestilence NN pestilent JJ pests NNS pet NN pet-rabbit-raising JJ petals NNS peter VB petered VBN petit FW petite JJ petition NN petitioned VBD petitioner NN petitions NNS petits FW petrified JJ petro-dollar JJ petrochemical NN petrochemicals NNS petroleum NN petroleum-exploration JJ petroleum-products NNS petroleum-related JJ petroleumproducts NNS pets NNS petted VBN pettiness NN pettinesses NNS petting NN petty JJ petulance NN petulant JJ pew NN pews NNS pewter NN peyote NN pfennig NN pfennigs NNS pfffted VBD phagocytes NNS phalanx NN phantasy NN phantom JJ pharamaceuticals NNS pharaohs NNS pharmaceutical JJ pharmaceuticals NNS pharmacies NNS pharmacist NN pharmacists NNS pharmacological JJ pharmacology NN pharmacuetical JJ pharmacy NN phase NN phase-in NN phase-one JJ phase-out NN phase-two JJ phased VBN phases NNS phasing VBG phasing-out NN pheasant NN pheasants NNS phenolic NN phenomena NNS phenomenal JJ phenomenally RB phenomenological JJ phenomenon NN phenonenon NN phenothiazine NN philandering VBG philanthropic JJ philanthropies NNS philanthropist NN philanthropists NNS philanthropy NN philantrophy NN philantropists NNS philharmonic NN philodendron NN philological JJ philologists NNS philology NN philosopher NN philosophers NNS philosophic JJ philosophical JJ philosophically RB philosophies NNS philosophized VBD philosophizing VBG philosophy NN phis NNS phlegm NN phloem NN phobia NN phobias NNS phobic-like JJ phoenix NN phone NN phone-company NN phonebook NN phoned VBD phonemes NNS phonemic JJ phonemics NNS phones NNS phonetic JJ phonetics NNS phoney JJ phonic JJ phonies NNS phoning VBG phonograph NN phonographs NNS phonologic JJ phonology NN phony JJ phosgene NN phosphate NN phosphate-buffered NN phosphates NNS phosphide NN phosphine NN phosphines NNS phosphor NN phosphor-screen NN phosphorescent JJ phosphorous JJ phosphors NNS phosphorus NN phosphorus-bridged JJ photo NN photo-montage JJ photo-offset JJ photocathode NN photocathodes NNS photochemical JJ photocopiers NNS photocopy VB photocopying VBG photoelectronic JJ photoelectrons NNS photofinishers NNS photofinishing NN photofloodlights NNS photogenic JJ photograph NN photographed VBN photographer NN photographers NNS photographic JJ photographic-paper NN photographic-products JJ photographically RB photographing VBG photographs NNS photography NN photojournalism NN photoluminescence NN photomicrograph NN photomicrography NN photon-counting JJ photorealism NN photos NNS photosensitive JJ photosynthesis NN phrase NN phrase'coffee NN phrased VBN phrasemaking NN phraseology NN phrases NNS phrasing NN phrasings NNS phthalate NN phyla NN physical JJ physical-chemical JJ physically RB physicalness NN physicals NNS physician NN physician-executive JJ physician-owned JJ physician-patient JJ physician-reimbursement JJ physicians NNS physicist NN physicists NNS physics NN physiochemical JJ physiognomy NN physiologic JJ physiological JJ physiology NN physiotherapist NN physique NN pi NN pianism NN pianissimos NNS pianist NN pianist-comedian NN pianist\/bassoonist\/composer NN pianistic JJ pianists NNS piano NN pianos NNS piasters NNS piazza NN piazzas NNS pic NN picayune JJ pick VB pick-up JJ pickaxe NN picked VBD picker NN pickers NNS picket NN picketed VBD picketers NNS picketing NN pickets NNS pickier JJR pickiest JJS picking VBG pickings NNS pickins NNS pickle NN pickled JJ pickles NNS pickoff NN pickoffs NNS pickpocket NN picks VBZ pickup NN pickup-bed NN pickups NNS picky JJ picnic NN picnicked VBD picnickers NNS picnics NNS pico NN picocassette NN pics NNS pictorial JJ pictorially RB picture NN picture-images NNS picture-palace NN picture-postcard NN picture-taking NN picture-tube JJ pictured VBN pictures NNS picturesque JJ picturesquely RB picturing VBG piddling JJ pidgin NN pie NN pie-in-the-sky JJ piece NN piece-by-piece JJ pieced VBN piecemeal RB pieces NNS piecewise RB pied-a-terre FW pier NN pier-table NN pierce VB pierced VBN piercing VBG piers NNS pies NNS piety NN piezoelectric JJ piezoelectricity NN pig NN pig-drunk JJ pig-infested JJ pigen NN pigeon NN pigeon-holed JJ pigeonhole NN pigeonholing NN pigeons NNS piggyback NN piggybacking VBG piglet NN piglets NNS pigment NN pigmented VBN pigments NNS pigpens NNS pigs NNS pigskin NN pigsty NN pike NN piker NN pile NN piled VBD piles NNS pileup NN pileups NNS pilferers NNS pilfering VBG pilgrim NN pilgrimage NN pilgrimages NNS pilgrims NNS piling VBG pilings NNS pill NN pill-factory JJ pillage VB pillaged VBD pillar NN pillared JJ pillars NNS pilloried VBN pillorying VBG pillow NN pillowcases NNS pillows NNS pills NNS pilot NN pilot-dominated JJ pilot-management JJ pilot-seniority NN pilot-training JJ pilot-union JJ pilote FW piloting NN pilots NNS pimp NN pimpled JJ pimples NNS pimplike JJ pimps NNS pin NN pin-curl JJ pin-point JJ pin-pointed VBN pinafores NNS pinball NN pinball-parlor NN pinch NN pinch-hit VB pinch-hitter NN pinch-hitters NNS pinched VBN pinches NNS pinching VBG pine NN pine-knot JJ pineapple NN pines NNS ping NN ping-pong NN pinging VBG pinhead NN pinheaded JJ pinholes NNS pinioned VBN pink JJ pink-cheeked JJ pink-petticoated JJ pink-sheet JJ pinkish-white JJ pinkly RB pinks NNS pinnacle NN pinnacles NNS pinned VBN pinning VBG pinnings NNS pinochle NN pinpoint VB pinpointed VBN pinpointing VBG pinpoints NNS pins NNS pinstripe-suited JJ pint NN pint-sized JJ pinto NN pints NNS pioneer NN pioneered VBD pioneering VBG pioneers NNS pious JJ piously RB pip UH pipe NN piped VBD pipedreams NNS pipeline NN pipelines NNS piper NN pipers NNS pipes NNS piping NN pipsqueak NN piquant JJ pique JJ piqued VBN piracy NN piranha NN pirate NN pirated VBN pirates NNS piroghi NNS pirogues NNS pirouette NN piss VB pissed VBN pistachio JJ pistils NNS pistol NN pistol-packing JJ pistol-whipped VBD pistoleers NNS pistols NNS piston NN piston-brake NN pistons NNS pit NN pit-run JJ pitch NN pitched VBD pitcher NN pitcher-coach NN pitchers NNS pitches NNS pitchfork NN pitching VBG pitchmen NNS piteous JJ pitfall NN pitfalls NNS pith NN pithiest JJS pithy JJ pitiable JJ pitied VBD pitiful JJ pitifully RB pitiless JJ pitilessly RB pitons NNS pits NNS pittance NN pitted VBN pitting VBG pituitary JJ pituitary-gland NN pity NN pityingly RB pivot JJ pivotal JJ pivoting VBG pixie-like JJ pixies NNS pizazz NN pizza NN pizza-eating JJ pizzas NNS pizzas-with-everything NNS pizzazz NN pizzeria NN pizzerias NNS pizzicato NN pl. NNP placard NN placard-carrying JJ placards NNS placate VB placated VBN placating VBG place NN place-kicker NN place-kicking NN place-name JJ place-names NN placebo NN placed VBN placeless JJ placement NN placements NNS places NNS placid JJ placing VBG plagiarism NN plagiarize VB plagiarized VBN plagiarizers NNS plague NN plague-sized JJ plagued VBN plagues VBZ plaguing VBG plaid JJ plaid-floored JJ plaids NNS plain JJ plain-clothes JJ plain-clothesmen NNS plain-out RB plain-spoken JJ plain-vanilla NN plainclothes NNS plainer JJR plainest JJS plainly RB plains NNS plaintiff NN plaintiffs NNS plaintive JJ plaintively RB plan NN planar JJ plane NN plane-building NN planed VBN planeload NN planer NN planes NNS planet NN planetarium NN planetary JJ planetary-science JJ planetoid NN planetoids NNS planets NNS plank NN planking NN planks NNS planned VBN planner NN planners NNS planning NN planoconcave JJ plans NNS plant NN plant-and-equipment JJ plant-closing JJ plant-expansion JJ plant-location JJ plant-modernization JJ plant-science NN plant-sciences JJ plant-vaccine JJ plant-wide JJ plantain NN plantation NN plantations NNS planted VBN planter NN planters NNS planting VBG plantings NNS plants NNS plaque NN plaques NNS plasm NN plasma NN plasmodium NN plaster NN plaster-of-Paris NN plastered VBN plasterer NN plastering NN plasters NNS plastic NN plastic-bodied JJ plastic-body JJ plastic-coated JJ plastic-covered JJ plastic-pipe JJ plastic-products NNS plastic-timber NN plastically RB plasticity NN plastics NNS plastics-industry NN plastisols NNS plate NN plateau NN plated VBN plateful JJ plates NNS platform NN platform-controller NN platforms NNS platinum NN platitudes NNS platitudinous JJ platoon NN platoons NNS platted VBN platter JJ platters NNS plaudits NNS plausibility NN plausible JJ plausibly RB play VB play-acting NN play-by-play JJ play-girl NN play-it-safe JJ play-off NN playable JJ playback NN playbacks NNS playboy NN played VBD played-out JJ player NN players NNS playful JJ playfully RB playfulness NN playground NN playgrounds NNS playhouse NN playin VBG playing VBG playland NN playmate NN playmates NNS playoff NN playoffs NNS playpen NN playroom NN plays VBZ playthings NNS playtime NN playwright NN playwright-director NN playwrights NNS playwriting NN plaza NN plazas NNS plea NN plea-bargain JJ plead VB pleaded VBD pleader NN pleading VBG pleadingly RB pleadings NNS pleads VBZ pleas NNS pleasance NN pleasant JJ pleasantly RB pleasantness NN pleasantries NNS please VB pleased VBN pleases VBZ pleasin VBG pleasing JJ pleasingly RB pleasurable JJ pleasure NN pleasure-boat NN pleasure-seeking NN pleasure\ CC pleasures NNS pleated JJ pleats NNS plebeian JJ pledge NN pledged VBD pledges NNS pledging VBG plenary JJ plenipotentiary NN plenitude NN plentiful JJ plenty NN plenum NN plethora NN pleura NNS pleural JJ pliable JJ pliant JJ plied VBD pliers NNS plies VBZ plight NN plights NNS plinking JJ plod VB plodded VBD plodding VBG plods VBZ plopped VBD plot NN plots NNS plotted VBN plotters NNS plotting VBG plough VB plow NN plowed VBN plowing VBG plows NNS plowshares NNS ploy NN ploys NNS pluck VB plucked VBD plucking VBG plucky JJ plug NN plug-in JJ plugged VBN plugging VBG plugs NNS plugugly JJ plum NN plumage NN plumb RB plumbed VBD plumber NN plumbers NNS plumbing NN plume NN plumed JJ plumes NNS plummet VB plummeted VBD plummeting VBG plummetted VBD plump JJ plumped VBD plumpness NN plumps VBZ plunder NN plundered VBN plunderers NNS plundering NN plunge NN plunged VBD plunges NNS plunging VBG plunked VBD plunkers NNS plunking VBG pluralism NN pluralist NN pluralistic JJ plurality NN pluri-party JJ plus CC plus-one JJ pluses NNS plush JJ plutocratic JJ plutocrats NNS plutonium NN plutonium-based JJ plutonium-handling NN plutonium-powered JJ plutonium-recovery JJ ply VBP plying VBG plywood NN pm NN pneumatic JJ pneumocystis NN pneumonia NN po'k NN poachers NNS poaches VBZ poaching VBG poark NN pocket NN pocket-size JJ pocketbook NN pocketbooks NNS pocketed VBD pocketful NN pocketing VBG pockets NNS pockmarked JJ pod NN podiatric JJ podiatrist NN podium NN podiums NNS pods NNS poem NN poems NNS poems-in-drawing-and-type JJ poeple NN poet NN poet-painter NN poetic JJ poetically RB poetizing VBG poetry NN poetry-and-jazz NN poetry-writing JJ poets NNS pogroms NNS poignancy NN poignant JJ poignantly RB point NN point-blank JJ point-of-sale JJ point-spread JJ pointe FW pointed VBD pointedly RB pointer NN pointers NNS pointing VBG pointless JJ points NNS pointy JJ poise NN poised VBN poised... : poises NNS poison NN poison-pill JJ poisoned VBN poisoner NN poisoning NN poisonous JJ poisons NNS poivre FW poke NN poked VBD pokeneu FW poker NN pokerfaced JJ pokes VBZ pokey JJ poking VBG pol NN polar JJ polarities NNS polarity NN polarization NN polarize VB polarized VBN polarizing VBG pole NN polecat NN polemic JJ polemical JJ polemics NNS poles NNS police NN police-community JJ police-dodging NN policed VBN policeman NN policeman-murderer NN policemen NNS polices NNS policewoman NN policies NNS policing VBG policy NN policy-coordination NN policy-makers NNS policy-making JJ policy-oriented JJ policy-research NN policy-setting JJ policyholder NN policyholders NNS policymaker NN policymakers NNS policymaking JJ poling VBG polio NN polis NN polish VB polished VBN polishes NNS polishing VBG polite JJ politely RB politeness NN politic JJ political JJ political-action JJ political-corruption NN political-reform JJ politically RB politician NN politicians NNS politicize VB politicized VBN politicizing VBG politicking NN politico NN politico-plaintiffs NNS politico-sociological JJ politicos NNS politics NNS polities NNS politique FW polity NN polivinylchloride NN polka NN polka-dotted JJ poll NN poll-taker NN poll-takers NNS polled VBN pollen NN pollen-and-nectar NN pollen-inhibiting JJ pollen-producing VBG pollinate VB pollinated VBN pollinating VBG pollination NN polling NN pollings NNS polls NNS pollster NN pollsters NNS pollutant NN pollutants NNS pollute VB polluted JJ polluter NN polluters NNS polluting VBG pollution NN pollution-causing JJ pollution-control JJ pollution-free JJ pollution-reduction NN polo NN polonaise NN pols NNS poltergeists NNS poltically RB poly-unsaturated JJ polybutene NN polybutenes NNS polycrystalline JJ polyelectrolytes NNS polyester NN polyesters NNS polyether NN polyether-type JJ polyethers NNS polyethylene NN polygynous JJ polyisobutylene NN polyisocyanate NN polyisocyanates NNS polymer NN polymerase NN polymeric JJ polymerization NN polymerizations NNS polymers NNS polymyositis NN polynomial NN polynomials NNS polyols NNS polyphosphate NN polyphosphates NNS polyproplene NN polypropylene NN polyps NNS polyrhythms NNS polysilicon NN polysiloxanes NNS polystyrene NN polytonal JJ polyunsaturated JJ polyurethane NN polyvinyl NN pomaded VBN pomological JJ pomologist NN pomp NN pomp-filled JJ pompons NNS pompous JJ pompously RB pompousness NN poncho NN pond NN ponder VB pondered VBD pondering VBG ponderous JJ ponderousness NN ponders VBZ ponds NNS pong NN ponied VBD ponies NNS pontiff NN pontifical JJ pontificate VB pontificates VBZ pony NN pony-tailed JJ ponying VBG ponytails NNS pooch NN pooched VBD poodle NN poodles NNS poof NN pooh-poohed VB poohbah NN pool NN pool-care JJ pool-equipment NN pool-equipped JJ pool-owners NNS pool-side JJ pool-table NN pool... : pooled VBN pooling VBG pooling-of-interest JJ pooling-of-interests JJ pools NNS poolside NN poor JJ poor-mouth JJ poor-performing JJ poor-quality JJ poor-white-trash JJ poorer JJR poorer-quality JJR poorest JJS poorly RB pop NN pop'lar JJ pop-music NN pop-out JJ popcorn NN pope NN poplar NN poplin NN popped VBD poppies NNS popping VBG poppy NN poppyseed NN pops VBZ populace NN popular JJ popular-priced JJ popularity NN popularize VB popularized VBN popularizing VBG popularly RB populate VB populated VBN populating VBG population NN population-control JJ population... : populations NNS populism NN populist JJ populists NNS populous JJ porcelain NN porcelains NNS porch NN porches NNS porcupine NN porcupines NNS pore NN pored VBD pores NNS poring JJ pork NN pork-barrel JJ pork-barrelers NNS pork-barreling NN porno-inspired JJ pornographer NN pornographic JJ pornography NN porosity NN porous JJ porpoise NN porpoises NNS porridge NN port NN port-of-call NN port-shopping NN port-side JJ portability NN portable JJ portables NNS portal NN portant FW portend VBP portended VBD portends VBZ portent NN portentous JJ portents NNS porter NN portering NN porters NNS portfolio NN portfolio-maker NN portfolio... : portfolios NNS portico NN porticoes NNS portion NN portions NNS portly JJ portrait NN portraits NNS portraiture NN portray VB portrayal NN portrayals NNS portrayed VBN portraying VBG portrays VBZ ports NNS portwatchers NNS pose VB posed VBN poses VBZ poseur NN poseurs NNS posh JJ poshest JJS posing VBG position NN position-building NN position-squaring NN position... : positional JJ positioned VBN positioning VBG positions NNS positionsthat NN positive JJ positively RB positivism NN positivist NN positivists NNS posse NN posseman NN possemen NNS possess VBP possessed VBD possesses VBZ possessing VBG possession NN possessions NNS possessive JJ possessor NN possibilities NNS possibility NN possible JJ possiblities NNS possiblity NN possibly RB possum NN possum-hunting NN post NN post-1979 JJ post-1987 JJ post-1992 CD post-1997 JJ post-Barre JJ post-Black JJ post-Civil NNP post-Deng JJ post-Hugo JJ post-Inaugural JJ post-June JJ post-Oct NNP post-Revolutionary JJ post-Vietnam JJ post-Watergate JJ post-World NNP post-attack JJ post-bankruptcy JJ post-bellum FW post-census NN post-chemotherapy JJ post-colonial JJ post-colonialism NN post-conviction JJ post-crash JJ post-earthquake JJ post-electoral JJ post-fray RB post-game JJ post-graduate JJ post-hearing JJ post-hurricane JJ post-independence JJ post-merger JJ post-midnight JJ post-minimalist JJ post-modern JJ post-modernism NN post-mortal JJ post-mortem JJ post-nuptial JJ post-operative JJ post-production NN post-quake JJ post-reapportionment JJ post-retirement JJ post-revolutionary JJ post-sale JJ post-season NN post-secondary JJ post-split JJ post-surgery JJ post-surgical JJ post-trial JJ post-war JJ postage NN postage-prepaid JJ postage-stamp NN postal JJ postal-business JJ postcard NN postcards NNS postdoctoral JJ posted VBD poster NN poster-sized JJ posterior JJ posterity NN posters NNS postgraduate JJ posthumous JJ posting VBG postings NNS postition NN postman NN postmark NN postmarked VBN postmarks NNS postmaster NN postmasters NNS postmen NNS postponable JJ postpone VB postponed VBN postponement NN postponements NNS postponing VBG postride JJ posts NNS postscript NN postulate VB postulated VBN postulates NNS posture NN postured VBD postures NNS posturing NN postwar JJ pot NN potable JJ potash NN potassium NN potato NN potato-like JJ potato-supplier NN potatoes NNS potboiler NN potboilers NNS potency NN potent JJ potentates NNS potential JJ potentialities NNS potentiality NN potentially RB potentials NNS potentiometer NN pothole NN potholes NNS pothos NN potion NN potions NNS potpourri NN pots NNS pottage NN potted JJ potter NN potters NNS pottery NN potting VBG potty NN pouch NN pouches NNS poultice NN poultices NNS poultry NN poultry-loving JJ pounce VB pounced VBD pouncing VBG pound NN pound-DM JJ pound-deutsche JJ pound-foolish JJ pound-of-flesh JJ pounded VBD pounding VBG pounds NNS pour VB poured VBD poured-in-place VBN pouring VBG pours VBZ pout NN pouted VBD pouty-looking JJ poverty NN poverty-stricken JJ powder NN powdered JJ powderpuff NN powders NNS powdery JJ power NN power-buying JJ power-company NN power-driven JJ power-generation NN power-grid NN power-hitter NN power-hungry JJ power-plant NN power-sharing JJ power-starved JJ power-steering NN power-surge NN power-switching JJ power-tool JJ power-train NN power-transmission JJ powerboat NN powered VBN powerful JJ powerfully RB powerfulness NN powerhouse NN powerhouses NNS powering VBG powerless JJ powerlessness NN powerplants NNS powers NNS powers-that-be NN powertrain NN powpow NN powwow NN pox NN pp. NNS ppl NN pr NN practicability NN practicable JJ practical JJ practicality NN practically RB practice NN practiced VBN practices NNS practicing VBG practised JJ practising VBG practitioner NN practitioners NNS pragmatic JJ pragmatism NN pragmatist NN pragmatists NNS prai VBP prairie NN prairies NNS praise NN praised VBD praises VBZ praiseworthy JJ praising VBG pram NN prams NNS prancing NN pranha NN prank NN pranks NNS pranksters NNS pratakku FW pratfalls NNS prattle NN prawns NNS pray VB pray-for-growth-later JJ prayed VBD prayer NN prayer-requests NN prayer-time NN prayerbooks NNS prayerful JJ prayerfully RB prayers NNS prayin NN praying VBG prays VBZ pre-18th-century JJ pre-1917 JJ pre-1933 JJ pre-1950s JJ pre-1960 JJ pre-1967 JJ pre-1975 CD pre-1986 JJ pre-Anglo-Saxon JJ pre-Christmas JJ pre-Civil NNP pre-Communist JJ pre-Easter JJ pre-Fair JJ pre-French JJ pre-Freudian JJ pre-Gorbachev JJ pre-Han NNP pre-Hugo JJ pre-May JJ pre-Punic JJ pre-Reagan JJ pre-Revolutionary JJ pre-Sterling JJ pre-Vatican NNP pre-World NNP pre-World-War JJ pre-`` `` pre-academic JJ pre-approved JJ pre-arranged JJ pre-assault JJ pre-bankruptcy NN pre-cast JJ pre-clinical JJ pre-college JJ pre-colonial NN pre-conditions NNS pre-conscious JJ pre-consumption NN pre-cooked JJ pre-cooled JJ pre-crash JJ pre-date VB pre-dawn JJ pre-determined JJ pre-drilled JJ pre-emancipation NN pre-eminence NN pre-eminent JJ pre-employment JJ pre-empt VB pre-empted VBN pre-empting JJ pre-emption JJ pre-emptive JJ pre-existence JJ pre-existent JJ pre-existing JJ pre-festival JJ pre-financed JJ pre-fund VB pre-game JJ pre-historic JJ pre-history JJ pre-independence NN pre-introduction JJ pre-kidnap JJ pre-kindergarten NN pre-legislative JJ pre-literate JJ pre-maquila JJ pre-margin JJ pre-marital JJ pre-market JJ pre-med JJ pre-merger JJ pre-natal JJ pre-noon NN pre-nuptial JJ pre-packed JJ pre-paid VBD pre-penicillin JJ pre-planning NN pre-primary JJ pre-production JJ pre-publication JJ pre-quake JJ pre-recorded JJ pre-reform JJ pre-refunded JJ pre-register VB pre-registered VBN pre-sale JJ pre-school JJ pre-season JJ pre-selected VBN pre-selling VBG pre-sentencing JJ pre-set JJ pre-signed VBN pre-split JJ pre-strike JJ pre-suspension JJ pre-tax JJ pre-tested VBN pre-trading JJ pre-transfer JJ pre-trial JJ pre-try VB pre-vision JJ pre-war JJ preach VB preached VBD preacher NN preacher-singer NN preachers NNS preaches VBZ preachiness NN preaching NN preachy JJ preadmission NN preamble NN preambles NNS preapproved VBN prearranged VBN precarious JJ precariously RB precaution NN precautionary JJ precautions NNS precede VB preceded VBD precedence NN precedent NN precedent-based JJ precedent-setting JJ precedents NNS precedes VBZ preceding VBG preceeded VBN preceeding VBG precept NN precepts NNS prechlorination NN precinct NN precincts NNS precious JJ precious-metals NNS precipice NN precipice-walled JJ precipices NNS precipitate VB precipitated VBD precipitating VBG precipitin NN precipitous JJ precipitously RB precise JJ precise-sounding JJ precisely RB precision NN precision-materials NNS precision-timing NN preclearance NN preclinical JJ preclude VB precluded VBD precludes VBZ precocious JJ precociously RB precocity NN precompetitive JJ preconceived JJ preconceptions NNS precondition NN preconditioned VBD preconditions NNS preconference JJ preconscious JJ precooked VBN precrash JJ precursor NN precursors NNS precursory JJ precut JJ predates VBZ predator NN predators NNS predatory JJ predawn JJ predecessor NN predecessors NNS predestined VBN predetermined VBN predicament NN predicated VBN predicates NNS predicator NN predict VBP predict\ VBP predictability NN predictable JJ predictably RB predicted VBD predicting VBG predicting-machines NNS prediction NN predictions NNS predictive JJ predictor NN predictors NNS predicts VBZ predigested VBN predilection NN predilections NNS predispose VB predisposed VBN predisposing VBG predisposition NN predispositions NNS prednisone NN predominance NN predominant JJ predominantly RB predominate VBP predominated VBD predominately RB predominates VBZ predominating VBG predomination NN preemployment NN preempt VB preemptive JJ preening VBG prefab JJ prefabricated VBN preface NN prefaced VBD prefectural JJ prefecture NN prefectures NNS prefer VBP preferable JJ preferably RB preference NN preferences NNS preferential JJ preferentially RB preferment NN preferrance NN preferred JJ preferred-dividend JJ preferred-share JJ preferred-stock JJ preferring VBG prefers VBZ prefixes NNS preflight NN prefuh VB prefund VB pregnancies NNS pregnancy NN pregnant JJ prehistoric JJ preisolated VBN prejudged VBN prejudging VBG prejudice NN prejudiced VBN prejudices NNS prejudicial JJ prelate NN preliminaries NNS preliminarily RB preliminary JJ preliterate JJ prelude NN premarital JJ premature JJ prematurely RB premediated JJ premeditated JJ premier NN premiere NN premiered VBD premieres NNS premiering VBG premise NN premises NNS premium NN premium-beer NN premium-brand JJ premium-food NN premium-priced JJ premiums NNS premix NN premonition NN premonitions NNS premonitory JJ prenatal JJ preoccupation NN preoccupations NNS preoccupied VBN preoccupies VBZ preoccupy VBP preordained VBN preordainment NN prep JJ prepackaged VBN prepaid JJ prepaid-tuition JJ preparation NN preparations NNS preparative JJ preparatives NNS preparatory JJ prepare VB prepared VBN preparedness NN preparer NN preparers NNS prepares VBZ preparing VBG prepay VB prepaying VBG prepayment NN prepayment-protected JJ prepayments NNS prepolymer NN preponderance NN preponderantly RB preponderating JJ preposition NN prepositional JJ prepositioning JJ preposterous JJ preppie NN prepping VBG preppy JJ prepreg NN preprepared VBN preprinting NN preprivatization NN prepubescent JJ prepublication NN prepupal JJ prepurchase JJ preradiation NN prerecorded VBN preregistration NN prerequisite NN prerequisites NNS prerogative NN prerogatives NNS presage VB presaged VBD presages VBZ presaging VBG presale JJ preschool JJ preschooler NN preschoolers NNS prescient JJ prescribe VB prescribed VBN prescriber NN prescribers NNS prescribes VBZ prescribing VBG prescription NN prescription-drug NN prescriptions NNS prescriptive JJ presence NN presences NNS present JJ present-day JJ present-time JJ presentable JJ presentation NN presentational JJ presentations NNS presente JJ presented VBN presenter NN presenters NNS presenting VBG presently RB presentlye NN presentments NNS presentness NN presents VBZ preservation NN preservative JJ preserve VB preserved VBN preserves VBZ preserving VBG preset JJ preside VB presided VBD presidency NN president NN president-U.S. NN president-elect NN president-engineering NN|NN president-finance NN president-international NN president-marketing JJ president\/chief NN president\/finance NN president\/national-government NN president\/product NN president\/public JJ presidential JJ presidential-primary NN presidents NNS presides VBZ presiding VBG presorting NN press NN press-forge NN press-freedom NN press-ganged JJ press-release NN pressed VBN pressed-paper JJ presser NN presses NNS pressing VBG pressman NN pressure NN pressure-cooker NN pressure-formed JJ pressure-measurement NN pressure-measuring JJ pressure-sensing JJ pressure-volume-temperature NN pressure... : pressured VBN pressures NNS pressuring VBG pressurized VBN prestidigitation NN prestidigitator NN prestige NN prestige-sentitive JJ prestigious JJ presto RB presumably RB presume VB presumed VBN presumes VBZ presuming VBG presumption NN presumptions NNS presumptuous JJ presuppose VBP presupposes VBZ presupposition NN presuppositions NNS pretax JJ pretence NN pretend VB pretended VBD pretending VBG pretends VBZ pretense NN pretenses NNS pretensions NNS pretentious JJ pretest NN pretext NN pretexts NNS pretreatment NN|JJ pretrial JJ prettier JJR prettiest JJS prettily RB prettiness NN pretty RB pretty-good-rated JJ pretty-much JJ prevail VB prevaile VB prevailed VBD prevailin NN prevailing VBG prevails VBZ prevalance NN prevalence NN prevalent JJ prevayle VB prevent VB preventable JJ preventative JJ preventatives NNS prevented VBN preventing VBG prevention NN preventive JJ prevents VBZ preview NN previewing VBG previews NNS previous JJ previous-month JJ previous-year JJ previously RB prevision NN previsions NNS prewar JJ prey NN preying VBG price NN price'tres NN price-adjusted JJ price-and-seasonally RB price-based JJ price-competitive JJ price-conscious JJ price-consciousness NN price-corroding JJ price-cutting NN price-depressing JJ price-determination JJ price-driven JJ price-earnings JJ price-fixing NN price-gouging NN price-growth JJ price-increase NN price-jarring JJ price-jolting JJ price-level JJ price-moving JJ price-reform JJ price-reporting NN price-sensitive JJ price-setting NN price-skirmishing JJ price-slashing JJ price-stability NN price-stabilized JJ price-stabilizing JJ price-support JJ price-supporting JJ price-to-book JJ price-to-earnings JJ price-valuation NN price-value JJ price-weakening NN price-wise JJ price\/earnings NNS pricecutting NN priced VBN priceless JJ prices NNS prices... : pricetags NNS pricey JJ pricier JJR priciest JJS pricing NN pricings NNS prick NN pricked VBN pricking VBG prickly JJ pricks NNS pride NN prided VBD prides VBZ prie-dieu FW pries VBZ priest NN priestly JJ priests NNS prim JJ prima NN prima-facie FW primacy NN primal JJ primaries NNS primarily RB primarly RB primary JJ primary-color JJ primary-election NN primates NNS prime JJ prime-1 NN prime-3 NN prime-time JJ primed VBN primers NNS primes NNS primetime NN primeval JJ priming VBG primitive JJ primitive-eclogue JJ primitives NNS primitivism NN primly RB primordial JJ primping VBG prince NN princely JJ princes NNS princess NN princess-in-a-carriage NN princesse JJ principal JJ principal-only JJ principally RB principals NNS principle NN principled JJ principles NNS princpal NN print NN print-developing JJ print-out JJ print-shop NN printable JJ printed VBN printer NN printers NNS printing NN printing-equipment NN printing-ink JJ printing-press NN printing-systems NNS printmaking NN printout NN printouts NNS prints NNS prior RB prior-approval JJ prior-day JJ prior-notice JJ prior-review JJ prior-year JJ priori FW priorities NNS priority NN prison NN prisoner NN prisoner-made JJ prisoners NNS prisoners. NNS prisons NNS pristine JJ privacy NN private JJ private-bank JJ private-banking JJ private-detective NN private-eye NN private-insurance NN private-label JJ private-line JJ private-management NN private-placement JJ private-school JJ private-sector JJ privately RB privately-owned JJ privation NN privations NNS privatization NN privatization-consulting JJ privatizations NNS privatize VB privatized VBN privatizing VBG privet NN privies NNS privilege NN privileged JJ privileges NNS privileging VBG privvy JJ privy JJ prize NN prize-fight JJ prize-fighter NN prize-winning JJ prized VBN prizes NNS pro FW pro-ALPA JJ pro-Castro JJ pro-Communist JJ pro-Europe JJ pro-Gorbachev JJ pro-Hearst JJ pro-Iranian JJ pro-NATO JJ pro-Noriega JJ pro-Reagan JJ pro-Republican JJ pro-Socialist JJ pro-Soviet JJ pro-Trujillo JJ pro-U.N.F.P. JJ pro-Western JJ pro-Yankee NN pro-abortion JJ pro-active JJ pro-ball NN pro-business JJ pro-choice JJ pro-consumer JJ pro-consumption NN pro-cut JJ pro-democracy JJ pro-enterprise JJ pro-environment NN pro-environmental JJ pro-family NN pro-forma FW pro-growth JJ pro-independence JJ pro-investment JJ pro-labor JJ pro-life JJ pro-mark JJ pro-market JJ pro-neutralist JJ pro-rata JJ pro-rated JJ pro-reform JJ pro-repeal JJ pro-sealed-records JJ pro-selected JJ pro-shareholder NN pro-student JJ pro-tem JJ pro-union JJ probabilistic JJ probabilities NNS probability NN probable JJ probably RB probaby NN probate NN probation NN probe NN probe-based JJ probed VBD probes NNS probing VBG probings NNS probity NN probl'y RB problem NN problem-solving JJ problem-the JJ problematic JJ problematical JJ problematics NNS problems NNS probly RB proboscis NN procedural JJ procedurally RB procedure NN procedures NNS proceed VB proceeded VBD proceeding NN proceedings NNS proceeds NNS process NN process-control NN process-server NN processed VBN processed-foods JJ processed-meat JJ processed-meats NNS processes NNS processing NN procession NN processional NN processor NN processors NNS prochoice NN proclaim VB proclaimed VBD proclaiming VBG proclaims VBZ proclamation NN proclamations NNS proclivities NNS procrastinate VB procrastinated VBD procrastination NN procreate VB procreation NN procreative JJ procreativity NN proctor NN proctors NNS procure VB procured VBN procurement NN procurer NN prod VB prodded VBN prodding VBG prodigal JJ prodigally RB prodigies NNS prodigious JJ prodigiously RB prodigy NN prods VBZ produce VB produced VBN producer NN producer-consumer JJ producer-hubby NN producer-price JJ producer\/director NN producers NNS produces VBZ producin VBG producing VBG product NN product-design JJ product-development NN product-inspection JJ product-launch NN product-liability JJ product-line NN product-marketing NN product-monoclonal JJ product-registration NN product-related JJ product-swap NN product-testing NN production NN production-ceiling NN production-cost NN production-rate JJ production-sharing JJ productions NNS productive JJ productivity NN productivity-based JJ productivity-share NN products NNS products... : proessional NN prof NN profane JJ profanity NN profess VBP professed VBD professedly RB professes VBZ professeur NN professing VBG profession NN professional JJ professional-design JJ professional-level JJ professional\/executive JJ professionalism NN professionally RB professionals NNS professions NNS professor NN professorial JJ professoriate NN professors NNS professorship NN professorships NNS profet NN proffer VB proffered VBD profferred VBN proficiency NN proficient JJ profile NN profiled VBN profiles NNS profiling VBG profit NN profit-driven CD profit-eating JJ profit-making JJ profit-margin NN profit-maximizing JJ profit-motivated JJ profit-oriented JJ profit-seeking JJ profit-sharing NN profit-staggering JJ profit-taking NN profitability NN profitable JJ profitably RB profited VBD profiteering VBG profiteers NNS profiting VBG profits NNS profits-optimism JJ profittaking NN profitting VBG profligacy NN profligate JJ profound JJ profoundest JJS profoundity NN profoundly RB profs NNS profundity NN profuse JJ profusely RB profusion NN progandist NN progenitors NNS progeny NN progess NN prognoses NNS prognosis NN prognostication NN prognostications NNS prognosticator NN prognosticators NNS program NN program-bashing JJ program-dominated JJ program-driven JJ program-maker NN program-related JJ program-selling JJ program-trade JJ program-trading JJ programed VBN programing NN programmable JJ programmatic JJ programmed VBN programmer NN programmers NNS programmes NNS programming NN programs NNS progress NN progressed VBD progresses VBZ progressing VBG progression NN progressions NNS progressive JJ progressively RB progressives NNS progressivism NN progressivity NN prohibit VB prohibited VBN prohibiting VBG prohibition NN prohibitions NNS prohibitive JJ prohibitively RB prohibiton NN prohibits VBZ project NN projected VBN projectile NN projectiles NNS projecting VBG projection NN projections NNS projective JJ projector NN projectors NNS projects NNS proletarian JJ proletariat NN proliferate VBP proliferated VBN proliferating VBG proliferation NN prolific JJ prolixity NN prolong VB prolongation NN prolonged VBN prolonging VBG prolongs VBZ prolusion NN prolusions NNS prom NN promenade NN promenades NNS prominant JJ prominence NN prominent JJ prominently RB promiscuous JJ promise NN promise... : promised VBD promises VBZ promising JJ promissory JJ promote VB promoted VBN promoter NN promoters NNS promotes VBZ promoting VBG promotion NN promotional JJ promotions NNS prompt VB prompted VBD prompting VBG promptings NNS promptly RB prompts VBZ promulgated VBN promulgating VBG promulgators NNS prone JJ proneness NN prongs NNS pronoun NN pronounce VB pronounced VBN pronouncement NN pronouncements NNS pronounces VBZ pronouncing JJ pronouns NNS pronto RB pronunciation NN proof NN proof-of-purchases NNS proofread VBD proofreading VBG prop VB propaganda NN propagandist NN propagandistic JJ propagandists NNS propagandize VB propagandizes VBZ propagate VB propagated VBN propagation NN propane NN propects NNS propel VB propellant NN propellants NNS propelled VBN propeller NN propeller-driven JJ propellers NNS propelling VBG propels VBZ propensity NN proper JJ properly RB properties NNS properties.`` `` property NN property-and-casualty JJ property-casualty JJ property-claim NN property-claims-service NN property-investment NN property-liability NN property-loan JJ property-management NN property-poor JJ property-price JJ property-related JJ property-rich JJ property-sector NN property-tax JJ property-tax-cutting JJ property\ JJ property\/casualty NN propfan NN propfans NNS prophecies NNS prophecy NN prophesied VBD prophesies VBZ prophesized VBD prophesying VBG prophet NN prophetic JJ prophetically RB prophets NNS propionate NN propitiate VB propitious JJ proponent NN proponents NNS proportion NN proportional JJ proportionality NN proportionally RB proportionate JJ proportionately RB proportioned JJ proportions NNS proposal NN proposals NNS propose VB proposed VBN proposed... : proposes VBZ proposing VBG proposition NN proposition... : propositioned VBD propositions NNS propounded VBD propped VBN propping VBG proprietary JJ proprieter NN proprieties NNS proprietor NN proprietors NNS proprietorship NN proprietorships NNS proprietory JJ propriety NN props NNS propsed VBN propulsion NN propulsions NNS propulsive JJ propylene NN propylthiouracil NN prorata FW prorate VB prorated VBN proration NN pros NNS prosaic JJ prosceniums NNS proscribe VBP proscribed VBN proscribes VBZ proscription NN proscriptive JJ prose NN prosecute VB prosecuted VBN prosecuting VBG prosecution NN prosecutions NNS prosecutor NN prosecutorial JJ prosecutors NNS proselytizing VBG prosodic JJ prosodies NNS prosoma NN prospect NN prospective JJ prospectively RB prospector NN prospects NNS prospectus NN prospectuses NNS prosper VB prospered VBN prospering VBG prosperity NN prosperous JJ prospers VBZ prossed FW prostaglandin NN prostate NN prostitute NN prostitutes NNS prostitution NN prostitution.. NN prostrate JJ prosy JJ protagonist NN protagonists NNS protease NN proteases NNS protect VB protected VBN protecting VBG protection NN protectionism NN protectionist JJ protectionists NNS protections NNS protective JJ protectively RB protector NN protectors NNS protects VBZ protege NN proteges NNS protein NN protein-1 NN protein-bound JJ protein-making JJ protein-restricted JJ proteins NNS proteolysis NN proteolytic JJ protest NN protestations NNS protested VBD protester NN protesters NNS protesting VBG protestors NNS protests NNS proto-Athabascan NN proto-Yokuts NNS proto-oncogenes NN proto-senility NN protocol NN protocols NNS proton NN protons NNS protoplasm NN protoplasmic JJ prototype NN prototyped VBN prototypes NNS prototypical JJ protozoa NNS protozoan JJ protracted JJ protrude VB protruded VBD protruding VBG protrusion NN protuberance NN proud JJ prouder RBR proudest JJS proudly RB provdied VBD prove VB proved VBD proven VBN provenance NN proverb NN proverbial JJ proverbs NNS proverty NN proves VBZ provide VB provided VBN providence NN providential JJ provider NN providers NNS provides VBZ providing VBG province NN province-wide JJ provinces NNS provincial JJ provincialism NN provincially RB proving VBG provision NN provisional JJ provisionally RB provisioned VBN provisioning VBG provisions NNS proviso NN provisons NNS provocateurs NNS provocation NN provocative JJ provocatively RB provoke VB provoked VBD provokes VBZ provoking VBG provost NN prow NN prowazwki NN prowess NN prowl NN prowled VBD prowlers NNS prowling VBG prowls VBZ proxies NNS proximal JJ proximate JJ proximity NN proxy NN proxy-solicitation JJ prude NN prudence NN prudent JJ prudent-man JJ prudential JJ prudentially RB prudently RB prune NN pruned VBN prunes NNS pruning VBG prurient JJ pruta NN pry VB prying JJ psalm NN psalmist NN pseudo JJ pseudo-Kennedyism NN pseudo-anthropological JJ pseudo-capitalism NN pseudo-emotion NN pseudo-feeling NN pseudo-glamorous JJ pseudo-government NN pseudo-happiness NN pseudo-history NN pseudo-lobbyists NNS pseudo-patriotism NN pseudo-profundities NNS pseudo-questions NNS pseudo-scientific JJ pseudo-sophistication NN pseudo-symmetric JJ pseudo-thinking NN pseudo-willing NN pseudoephedrine NN pseudonym NN pseudonymous JJ pseudophloem NN pseudosocialism NN pseudynom NN psi NNS psoriasis NN psyche NN psyches NNS psychiatric JJ psychiatrist NN psychiatrists NNS psychiatry NN psychic JJ psychical JJ psychically RB psychically-blind JJ psychics NNS psycho-physiology NN psychoactive JJ psychoanalysis NN psychoanalyst NN psychoanalytic JJ psychobiology NN psychological JJ psychological-intellectual JJ psychologically RB psychologist NN psychologists NNS psychology NN psychopath NN psychopathic JJ psychopharmacological JJ psychopomp NN psychosocial JJ psychosomatic JJ psychotherapeutic JJ psychotherapist NN psychotherapists NNS psychotherapy NN psychotic JJ psyllium NN psyllium-fortified JJ pterygia NN pub NN puberty NN pubescent JJ public JJ public-TV NN public-accommodation NN public-address JJ public-affairs NNS public-asset JJ public-audit JJ public-employee NN public-fund JJ public-health JJ public-housing JJ public-information JJ public-interest JJ public-land JJ public-limit JJ public-opinion JJ public-owned JJ public-policy NN public-relations NNS public-school JJ public-sector NN public-service JJ public-spirited JJ public-stock NN public-television NN public-transit JJ public-works NNS public... : publically RB publication NN publications NNS publicist NN publicists NNS publicity NN publicity-conscious JJ publicity-seeking JJ publicity-shy JJ publicize VB publicized VBN publicizing VBG publicly RB publicly-held JJ publicly-traded JJ publicsector JJ publish VB publishable JJ published VBN publisher NN publishers NNS publishes VBZ publishing NN publishing-group JJ pubs NNS puckered VBN puckering VBG puckish JJ pudding NN pudding-faced JJ puddings NNS puddle NN puddles NNS puerile JJ puff NN puffed VBN puffed-up JJ puffers NNS puffery NN puffing VBG puffs VBZ puffy JJ pug-nosed JJ pugh JJ pugnacious JJ puissant JJ puke NN pulchritude NN pull VB pull-backs NNS pull-down JJ pull-out NN pullback NN pullbacks NNS pulled VBD pullet-roofed JJ pulley NN pulleys NNS pulling VBG pullout NN pullouts NNS pulls VBZ pulmonary JJ pulp NN pulping VBG pulpit NN pulpits NNS pulpwood NN pulsated VBD pulsating VBG pulsation NN pulsations NNS pulse NN pulse-jet NN pulse-timing JJ pulsed VBN pulses NNS pulsing VBG pulverize VB pulverized VBN pulverizing VBG pumas NNS pummel VB pummeled VBD pummeling NN pump VB pump-action JJ pump-priming NN pumped VBN pumped-up JJ pumping VBG pumpkin NN pumps NNS pun NN punch NN punchbowl NN punched VBD punched-card JJ puncher NN punchers NNS punches NNS punching VBG punchy JJ punctuality NN punctually RB punctuated VBN punctuation NN punctured JJ puncturing VBG punditry NN pundits NNS pungency NN pungent JJ pungently RB punish VB punishable JJ punished VBN punishes VBZ punishing VBG punishment NN punishments NNS punitive JJ punk NN punks NNS punky JJ punning VBG punnished VBD puns NNS punster NN punt NN punted VBD punters NNS punts NNS puny JJ pup NN pupated VBN pupates VBZ pupil NN pupils NNS puppet NN puppeteers NNS puppets NNS puppies NNS puppy NN puppyish JJ pups NNS pur-poises NNS purchase NN purchase-and-lease JJ purchased VBN purchaser NN purchasers NNS purchases NNS purchasing VBG pure JJ pure-meat NN pure-voiced JJ purely RB purest JJS purgation NN purgatory NN purge NN purged VBN purges VBZ purging VBG purhasing NN purification NN purified VBN purifier NN purifiers NNS purify VB purifying VBG purism NN purists NNS puritan JJ puritanical JJ purity NN purled VBD purling VBG purloined VBN purple JJ purple-black JJ purpling VBG purport VBP purported JJ purportedly RB purporting VBG purports VBZ purpose NN purpose... : purposed VBN purposeful JJ purposefully RB purposeless JJ purposely RB purposes NNS purposive JJ purposively RB purring VBG purrs VBZ purse NN purse-snatchings NNS pursed VBD purses NNS pursuant JJ pursue VB pursued VBN pursuer NN pursuers NNS pursues VBZ pursuing VBG pursuit NN pursuits NNS purtiest JJS purveyor NN purveyors NNS purview NN push VB push-button JJ push-offs NNS push-up NN push-ups NNS pushed VBD pushers NNS pushes VBZ pushin NN pushing VBG pushover NN pushups NNS pushy JJ pusillanimity NN pussy NN pussy-willow NN pussycat NN put VB put-option NN put-upon JJ putains FW putative JJ putout NN puts VBZ putt NN puttable JJ putted VBD putter NN puttered VBD puttering VBG putting VBG putty NN putty-like JJ puzzle NN puzzled VBN puzzlement NN puzzler NN puzzles NNS puzzling JJ pvt NN pygmies NNS pyknotic JJ pylons NNS pynte NN pyocanea NN pyorrhea NN pyramid NN pyramid-shaped JJ pyramidal JJ pyramiding VBG pyramids NNS pyre NN pyrometer NN pyrometers NNS pyrophosphate NN pyrotechnic JJ pyschiatrist NN python NN pythons NNS qua FW quack NN quacked VBD quackery NN quacks NNS quadratic JJ quadrennial JJ quadric NN quadriceps NNS quadrillion CD quadrillionth NN quadripartite JJ quadrupeds NNS quadruple VB quadrupled VBN quadruples VBZ quadrupling VBG quagmire NN quailing VBG quaint JJ quaintly RB quake NN quake-displaced JJ quake-hit JJ quake-inflicted JJ quake-prone JJ quake-related JJ quake-relief JJ quake-shocked JJ quake-torn JJ quakes NNS quaking VBG qualification NN qualifications NNS qualified VBN qualifies VBZ qualify VB qualifying VBG qualitative JJ qualitatively RB qualities NNS quality NN quality-adjusted JJ quality-conscious JJ quality-control NN quality-improvement NN qualms NNS quam FW quandary NN quantification NN quantified VBN quantify VB quantitative JJ quantitatively RB quantities NNS quantitive JJ quantity NN quantity-based JJ quantum NN quarantine VB quarrel NN quarreled VBD quarreling VBG quarrels NNS quarrelsome JJ quarry NN quarrymen NNS quart NN quarter NN quarter-by-quarter JJ quarter-century NN quarter-century-old JJ quarter-inch JJ quarter-mile NN quarter-million-dollar JJ quarter-moon NN quarter-of-a-century JJ quarter-point NN quarter-to-quarter JJ quarterback NN quarterbacks NNS quarterly JJ quarters NNS quartet NN quartets NNS quarts NNS quartz NN quartzite-quarrying NN quash VB quashed VBD quashing VBG quasi-federal JJ quasi-folk JJ quasi-governmental JJ quasi-mechanistic JJ quasi-monopolistic JJ quasi-parliamentary\/judicial JJ quasi-performer NN quasi-private JJ quasi-public JJ quasi-recitative JJ quasi-religious JJ quasi-tax JJ quasi-xenophobic JJ quasisports NNS quatrain NN quaver NN quavered VBD quavering VBG que FW queasily RB queasiness NN queen NN queens NNS queenside NN queer JJ queerer JJR queerest JJS queers NNS quell VB quelling NN quench VB quenching NN queried VBN queries NNS querulous JJ querulously RB query NN querying VBG quest NN question NN question-and-answer JJ question... : questionable JJ questionably RB questionaire NN questioned VBD questioner NN questioners NNS questioning VBG questioningly RB questionnaire NN questionnaires NNS questions NNS quests NNS quetzal NN queue NN queued JJ queues NNS queuing VBG qui FW quibble VB quibbling VBG quibs NNS quibusdam FW quick JJ quick-drying JJ quick-fired VBN quick-fix JJ quick-frozen VBN quick-handling JJ quick-kill JJ quick-service JJ quick-tempered JJ quick-to-prepare JJ quicken VB quickened VBD quickening VBG quicker JJR quickest JJS quickie NN quickly RB quickness NN quicksand NN quicksilver JJ quickstep NN quickwitted JJ quid FW quid-pro-quo JJ quiescent JJ quiet JJ quiet-spoken JJ quieted VBD quieter JJR quieting VBG quietly RB quietness NN quill NN quill-pen JJ quilt NN quilted JJ quince NN quinine NN quinolone NN quintessential JJ quintet NN quintets NNS quintillion CD quintuple RB quip NN quipped VBD quipping VBG quips VBZ quirk NN quirking VBG quirks NNS quirky JJ quirt NN quisling NN quit VB quite RB quite-comfortable JJ quite-literal JJ quits VBZ quitting VBG quivered VBD quivering VBG quivers NNS quixotic JJ quiz NN quizzed VBD quizzical JJ quo FW quok FW quorum NN quota NN quota-breakers NNS quota-cheaters NNS quota-increase JJ quota-trained JJ quotas NNS quotation NN quotations NNS quote VB quoted VBN quotes NNS quoting VBG r NN r-Revised VBN r.p.m. NN rabbi NN rabbinical JJ rabbit NN rabbit-test JJ rabbits NNS rabble NN rabid JJ raccoon NN raccoon-skin JJ raccoons NNS race NN race-based JJ race-car NN race-driver NN race-drivers NNS race... : raced VBD racehorse NN racehorses NNS racers NNS races NNS racetrack NN racetracks NNS raceway NN racial JJ racial-minority JJ racial-preference NN racially RB racing VBG racism NN racist JJ racists NNS rack NN racked VBN racket NN racketeer NN racketeering NN racketeers NNS rackets NNS rackety JJ racking VBG racks NNS racoons NNS racy JJ radar NN radar-controlled JJ radar-eluding VBG radar-threat JJ radar-type JJ radar. NN radars NNS raddled VBN radial JJ radiance NN radiant JJ radiate VB radiated VBD radiates VBZ radiating VBG radiation NN radiation-produced JJ radiation-protection JJ radiations NNS radiator NN radiators NNS radical JJ radical-moderate JJ radicalism NN radicalized VBN radically RB radicals NNS radii NNS radio NN radio-TV JJ radio-cassette NN radio-controlled JJ radio-location NN radio-pharmaceutical JJ radio-show JJ radio-station NN radioactive JJ radioactivity NN radiocarbon NN radiochlorine NN radioclast NN radioed JJ radiography NN radioing VBG radiomen NNS radionic JJ radiopasteurization NN radiopharmaceutical JJ radiophonic JJ radios NNS radiosterilization NN radiosterilized VBN radish NN radius NN radon NN rads NNS raffish JJ raft NN raftered VBN rafters NNS rafts NNS rag NN rage NN raged VBD rages VBZ ragged JJ raggedness NN ragging VBG raging VBG rags NNS ragtime NN raid NN raided VBN raider NN raiders NNS raiding VBG raids NNS rail NN rail-car NN rail-equipment JJ rail-mobile JJ rail-passenger NN rail-traffic JJ railbed NN railbike NN railbiker NN railbikers NNS railbikes NNS railbiking NN railbirds NNS railcar NN railcars NNS railed VBD railhead NN railing NN railings NNS raillery NN railroad NN railroad-holding JJ railroader NN railroading VBG railroads NNS rails NNS railway NN railway-based JJ railways NNS raiment NN rain NN rain-slick JJ rainbow NN rainbow-hued JJ rainbows NNS raincoats NNS raindrops NNS rained VBD rainfall NN rainier JJR raining VBG rainless JJ rainout NN rains NNS rainstorm NN rainwater NN rainy JJ raise VB raised VBN raiser NN raisers NNS raises VBZ raisin NN raising VBG raison FW raj NN rajah NN rake NN raked VBD raking VBG rakish JJ rakishly RB raku NN rallied VBD rallies NNS rally NN rallying VBG ram VB ramble VB rambled VBD rambles VBZ rambling NN ramblings NNS rambunctious JJ ramification NN ramifications NNS rammed VBD ramming VBG ramp NN rampage NN rampancy NN rampant JJ rampart NN ramparts NNS ramps NNS ramrod-stiff JJ ramrod-straight JJ ramshackle JJ ran VBD ranch NN rancher NN ranchers NNS ranches NNS rancho NN rancid JJ rancidity NN rancor NN rancorous JJ rand NN random JJ random-access JJ random-storage JJ random-walk JJ randomization NN randomly RB randomness NN rang VBD range NN ranged VBD rangelands NNS ranger NN rangers NNS ranges NNS ranging VBG rangy JJ rank NN rank-and-file JJ ranked VBD rankest JJS ranking JJ rankings NNS rankled VBN rankles VBZ ranks NNS ransack VB ransacked VBN ransacking VBG ransom NN rant VBP ranted VBD rap NN rapacious JJ rape NN rape-and-incest JJ raped VBN rapers NNS rapes NNS rapeseed NN rapeseeds NNS rapid JJ rapid-fire JJ rapid-transit JJ rapidement FW rapidity NN rapidly RB rapidly-diminishing JJ rapier NN raping VBG rapist NN rapists NNS rapped VBD rapping NN rapport NN rapprochement NN rapt JJ raptor NN raptors NNS rapture NN raptures NNS rare JJ rarefied VBN rarely RB rarer JJR rarest JJS rarified JJ raring JJ rarities NNS rarity NN rasa NN rascal NN rascals NNS rash NN rasp NN raspberry JJ rasped VBD rasping JJ rasps NNS raspy NN rat NN rat-a-tat-tat JJ rat-a-tat-tatty JJ rat-holes NNS rata FW ratable JJ ratchet VB ratcheting VBG|NN rate NN rate-IRA NN rate-increase JJ rate-making JJ rate-mortgages NNS rate-of-return JJ rate-sensitive JJ rate-slashing JJ rate-tightening JJ rate-watchers NNS rate... : rateable JJ rated VBN ratepayers NNS rates NNS rather RB ratification NN ratified VBD ratifiers NNS ratifies VBZ ratify VB ratifying VBG rating NN ratings NNS ratings-getter NN ratio NN ratiocinating JJ ration NN rational JJ rationale NN rationalism NN rationalist JJ rationalistic JJ rationality NN rationalization NN rationalizations NNS rationalize VB rationalized JJ rationalizing VBG rationally RB rationed VBN rationing NN rations NNS ratios NNS rator NN rats NNS rattail NN rattle NN rattled VBN rattler NN rattlers NNS rattles VBZ rattlesnake NN rattlesnakes NNS rattling VBG ratty JJ raucous JJ raucously RB ravaged VBN ravages NNS ravaging VBG rave VBP raved VBD ravenous JJ raves VBZ ravines NNS raving VBG ravings NNS raw JJ raw-material NN raw-materials NNS raw-sugar JJ rawboned JJ rawhide NN ray NN rayon NN rays NNS razed VBN razing VBG razor NN razor-edged JJ razor-sharp JJ razor-thin JJ razorback NN razors NNS rbi NNS re NN re-acquire VB re-activate VB re-adopt NN re-animated JJ re-animates VBZ re-arguing VBG re-assumed VBN re-creactions NNS re-create VB re-created JJ re-creates VBZ re-creating NN re-creation NN re-creations NNS re-declared VBD re-echo VB re-edited VBN re-educate VB re-education NN re-elected VBN re-election NN re-emerge VB re-emerged VBD re-emergence NN re-emphasis NN re-emphasise VB re-emphasize VB re-emphasizing VBG re-enact VB re-enacted VBN re-enacting VBG re-enactment NN re-enactments NNS re-energized JJ re-enforces VBZ re-engineered VBD re-enter VB re-entered VBD re-entering VBG re-entry NN re-establish VB re-established VBD re-establishing VBG re-establishment NN re-evaluate VB re-evaluating JJ re-evaluation NN re-examination NN re-examine VB re-examined VBD re-examines VBZ re-examining VBG re-explore VB re-export NN re-exports NNS re-incorporated VBN re-incorporation NN re-injecting JJ re-instated VBN re-insure VB re-introduction NN re-invested JJ re-investment NN re-legalization VB re-living NN re-marketing NN re-moralizing VBG re-open VB re-opening VBG re-order JJ re-oriented VBN re-paid VBD re-rated VBN re-regulation NN re-rescue VB re-run VBN re-runs NNS re-scheduled VBN re-set VB re-sharpening NN re-supplied VBN re-thinking VBG re-thought JJ re-use VB re-used VBN re-vision NN reaccelerate VB reaccelerating VBG reacceleration NN reach VB reached VBN reaches VBZ reaching VBG reacquainted VBN reacquire VB reacquired VBN reacquisition NN react VB reactants NNS reacted VBD reacting VBG reaction NN reactionaries NNS reactionary JJ reactions NNS reactivated VBN reactivity NN reactor NN reactors NNS reacts VBZ read VB read-my-lips JJ read-only JJ readable JJ readapting VBG reader NN reader-friendly JJ readers NNS readership NN readied VBN readily RB readiness NN reading NN reading-rooms NNS readings NNS readjust VB readjusted VBN readjustment NN readjustments NNS readmit VB readmitted VBN reads VBZ ready JJ ready-made JJ ready-to-eat JJ ready-to-wear JJ readying VBG reaffirm VB reaffirmation NN reaffirmed VBD reaffirming VBG reaffirms VBZ reagent NN reagents NNS real JJ real-analytic JJ real-estate NN real-estate-asset JJ real-estate-investment NN real-estate-related JJ real-life JJ real-time JJ real-world JJ realer JJR realest JJS realestate NN realign VB realign... : realigned VBD realigning VBG realignment NN realignments NNS realism NN realismo FW realist NN realistic JJ realistically RB realists NNS realities NNS reality NN reality-based JJ realization NN realize VB realized VBD realizes VBZ realizing VBG reallocate VB reallocated VBN reallocating VBG really RB realm NN realms NNS realness NN realtor NN realtors NNS realty NN reams NNS reap VB reaped VBN reaper NN reaping VBG reappear VBP reappearance NN reappeared VBD reappearing VBG reappears VBZ reappointed VBN reapportion VBP reapportioned VBN reapportionment NN reappraisal NN reappraisals NNS reappraise VB reappraised VBD reappraising VBG reaps VBZ rear JJ rear-guard JJ rear-looking JJ rear-seat NN reared VBD rearguard NN rearing VBG rearm VB rearmed JJ rearrange VB rearranged VBD rearrangement NN rearrangements NNS rearranges VBZ rearranging VBG rears VBZ rearview NN reasearch NN reason NN reasonable JJ reasonably RB reasoned VBD reasoning NN reasons NNS reassemble VB reassembled VBN reassert VB reasserting VBG reasserts VBZ reassess VB reassessed VBD reassessing VBG reassessment NN reassign VB reassigned VBN reassignment NN reassignments NNS reassume VB reassumed VBN reassurance NN reassurances NNS reassure VB reassured VBN reassuring VBG reassuringly RB reattached VBN reauthorization NN reauthorize VB reauthorized VBN reawaken VB reawakening VBG rebalance VB rebalanced VBN rebalancing VBG rebate NN rebated VBN rebates NNS rebel NN rebelled VBD rebelling VBG rebellion NN rebellions NNS rebellious JJ rebelliously RB rebels NNS rebirth NN reborn VBN rebound NN rebounded VBD rebounding VBG rebounds VBZ rebuff NN rebuffed VBN rebuffing VBG rebuild VB rebuilder NN rebuilding VBG rebuilds VBZ rebuilt VBN rebuke VB rebuked VBD rebut VB rebuts VBZ rebuttal NN rebuttals NNS rebutted VBN rec NN recalcitrant JJ recalculated VBD recalculating VBG recalculation NN recalculations NNS recall VB recalled VBD recalling VBG recalls VBZ recantation NN recanted VBD recapitalization NN recapitalizations NNS recapitalize VB recapitalized VBN recapitalizing VBG recapitulate VB recapitulation NN recaptilization NN recapture VB recaptured VBN recapturing VBG recast VB recede VBP receded VBD receding VBG receipt NN receipts NNS receivable JJ receivables NN receive VB received VBD receiver NN receivers NNS receivership NN receives VBZ receiving VBG recent JJ recently RB recently-announced JJ recently-filed JJ recently-passed JJ recentralized VBN recentralizing VBG receptacle NN reception NN receptionist NN receptionists NNS receptions NNS receptive JJ receptivity NN receptor NN receptors NNS recess NN recessed VBN recession NN recession-free JJ recession-inspired JJ recession-oriented JJ recession-plagued JJ recession-proof JJ recession-resistant JJ recession-sensitive JJ recession-wary JJ recessionary JJ recessions NNS recharge NN rechargeable JJ recharged VBN recharging VBG rechartering VBG recheck VBP rechristening VBG rechristens VBZ recipe NN recipes NNS recipient JJ recipients NNS reciprocal JJ reciprocate VB reciprocates VBZ reciprocity NN recit FW recital NN recitals NNS recitation NN recitations NNS recitative NN recite VB recited VBD recites VBZ reciting VBG reckless JJ reckless-endangerment NN recklessly RB recklessness NN reckon VBP reckoned VBN reckoning NN reckonings NNS reckons VBZ reclaim VB reclaimed VBN reclaiming VBG reclaims VBZ reclamation NN reclassification NN reclassified VBD recliner NN reclining VBG recluse NN reclusive JJ recoated VBN recognised VBD recognition NN recognitions NNS recognizable JJ recognizably RB recognizance NN recognize VB recognized VBN recognizes VBZ recognizing VBG recoil NN recoiled VBD recoilless JJ recollect VBP recollected VBD recollection NN recollections NNS recollectivization NN recombinant JJ recombinant-DNA NN recombination NN recommence VB recommend VB recommendation NN recommendations NNS recommendatons NNS recommended VBD recommending VBG recommends VBZ recompence NN recompense NN reconceptualization NN reconcilable JJ reconcile VB reconciled VBN reconciles VBZ reconciliation NN reconciliations NNS reconciling VBG recond VBD recondite JJ reconditioning VBG reconfiguration NN reconfigure NN reconfirm VB reconfirmation NN reconfirming VBG reconnaissanace NN reconnaissance NN reconnect VB reconnoiter VBP reconsider VB reconsideration NN reconsidered VBN reconsidering VBG reconstitute VB reconstituting VBG reconstruct VB reconstructed JJ reconstructing VBG reconstruction NN reconstructions NNS reconstructs VBZ recontamination NN reconvened VBN reconvenes VBZ reconvention NN reconverting VBG recooned VBD recopied VBN record NN record-breaking JJ record-high JJ record-keeping NN record-tying JJ recorded VBN recorded-music JJ recorder NN recorders NNS recorders. NNS recording NN recording-company NN recordings NNS recordkeeping NN records NNS recork VB recount VB recounted VBD recounting VBG recounts VBZ recoup VB recouped VBD recouping VBG recourse NN recover VB recoverability NN recoverable JJ recovered VBD recoveries NNS recovering VBG recovers VBZ recovery NN recovery-program NN recraft VB recreate VB recreated VBN recreates VBZ recreating VBG recreation NN recreational JJ recreational-vehicle NN recrimination NN recriminations NNS recruit VB recruited VBN recruiter NN recruiting VBG recruitment NN recruits NNS rectangle NN rectangles NNS rectangular JJ rectification NN rectified VBN rectifier NN rectify VB rectifying VBG rectilinear JJ rectitude NN rectlinearly RB rector NN rectum NN recumbent JJ recuperate VB recuperating VBG recuperation NN recur VB recurred VBD recurrence NN recurrences NNS recurrent JJ recurrently RB recurring VBG recursive JJ recusant NN recused VBN recut JJ recyclability NN recyclable JJ recycle VB recycled VBN recycler NN recycles VBZ recycling NN red JJ red-and-white JJ red-and-yellow JJ red-bellied JJ red-blood JJ red-blooded JJ red-brick JJ red-carpet JJ red-cheeked JJ red-clay NN red-faced JJ red-figured JJ red-flag VB red-frocked JJ red-haired JJ red-handed JJ red-light JJ red-necked JJ red-rimmed JJ red-tailed JJ red-tape NN red-tile JJ red-tipped JJ red-turbaned JJ red-visored JJ red-white-and-blue JJ redactions NNS redactor NN redcoat NN redcoats NNS reddened VBD redder JJR reddish JJ redecorated VBN redecorating VBG redecoration NN rededicate VB rededicating VBG redeem VB redeemable JJ redeemded VBN redeemed VBN redeemin VBG redeeming VBG redeems VBZ redefine VB redefined VBD redefining VBG redefinition NN redelivered VBN redemption NN redemptions NNS redemptive JJ redeploy VB redeployment NN redeposition NN redesign NN redesignation NN redesigned VBN redesigning VBG redevelop VB redevelopers NNS redevelopment NN redfish NN redhead NN redheaded JJ redheader NN redheads NNS redial VB redirect VB redirected VBN redirecting VBG redirection NN rediscover VB rediscovered VBN rediscovering VBG rediscovery NN redistribute VB redistributed VBN redistributes VBZ redistributing VBG redistribution NN redistributionism NN redistributionist NN redistributive JJ redistricting VBG redlining VBG redneck NN rednecks NNS redo VB redoing VBG redone JJ redouble VB redoubled VBN redoubling VBG redoubt NN redound VB redounds VBZ redraw VB redrawn JJ redress VB redressed VBN reds NNS reduce VB reduced VBN reduced-fat JJ reduced-instruction NN reduced-instruction-set-computer JJ reducer NN reduces VBZ reducing VBG reduction NN reductions NNS redundancies NNS redundancy NN redundant JJ redwood NN redwoods NNS reedbuck NN reeds NNS reedy JJ reef NN reefs NNS reek VBP reeked VBD reeking VBG reel NN reelected VBN reelection NN reeled VBD reeling VBG reemerged VBD reemphasizes VBZ reenact VB reentered VBD reestablish VB reevaluation NN reexamination NN reexamine VB reexamining VBG refashion NN refashioning VBG refectories NNS refer VB referee NN referees NNS reference NN reference-points NNS references NNS referenda NN referendum NN referent NN referral NN referrals NNS referred VBN referrin VBG referring VBG refers VBZ refight VB refile VB refill NN refillable JJ refilled VBN refinance VB refinanced VBN refinancing NN refinancings NNS refine VB refined JJ refined-petroleum-products JJ refinement NN refinements NNS refiner NN refineries NNS refiners NNS refinery NN refining NN refitting VBG reflect VB reflectance NN reflectance-measuring JJ reflected VBD reflecting VBG reflection NN reflections NNS reflective JJ reflector NN reflectors NNS reflects VBZ reflex NN reflexes NNS reflexively RB reflexly RB refocus VB refocused VBD refocuses VBZ refocusing NN refolded VBD reforestation NN reform NN reform-minded JJ reformation NN reformatory NN reformed VBN reformer JJ reformers NNS reforming VBG reformism NN reformist NN reformists NNS reforms NNS reformulated VBN reformulation NN refracted VBD refraction NN refractive JJ refractories NNS refractory JJ refrain VB refrained VBD refraining VBG refresh VBP refreshed JJ refresher NN refreshing JJ refreshingly RB refreshment NN refreshments NNS refrigerant NN refrigerated VBN refrigeration NN refrigerator NN refrigerators NNS refuel VB refueling NN refuge NN refugee NN refugee-assistance NN refugees NNS refund NN refundable JJ refunded VBN refunding VBG refunds NNS refurbish VB refurbished VBN refurbishing VBG refurbishment NN refurnished VBN refusal NN refuse VB refuse-littered JJ refused VBD refusers NNS refuses VBZ refusing VBG refute VB refuted VBD regain VB regained VBD regaining VBG regains VBZ regal JJ regaled VBD regalia NNS regard NN regarded VBN regarding VBG regardless RB regards VBZ regattas NNS regenerate VB regenerates VBZ regenerating VBG regeneration NN regents NNS reggae NN reggae-and-rock JJ regi FW regime NN regimen NN regiment NN regimentation NN regimented VBN regiments NNS regimes NNS region NN region-by-region JJ regional JJ regionalism JJ regionally RB regionals NNS regions NNS register VB registered VBN registering VBG registers NNS registrant NN registrants NNS registrar NN registration NN registrations NNS registries NNS registry NN regress VB regression NN regressive JJ regret VBP regrets VBZ regrettable JJ regrettably RB regretted VBD reground JJ regroup VB regrouped VBD regrouping NN regular JJ regular-featured JJ regular-season JJ regularity NN regularly RB regulars NNS regulate VB regulated VBN regulates VBZ regulating VBG regulation NN regulation-writing JJ regulation\/deregulation NN regulations NNS regulative JJ regulator NN regulators NNS regulatory JJ reguli NNS regulus NN regummed VBD regurgitated VBD regurgitating VBG rehabilitate VB rehabilitated VBN rehabilitating VBG rehabilitation NN rehabilitations NNS reharmonization NN rehash NN rehashed VBD rehashing VBG rehear VB rehearing NN rehearsal NN rehearsals NNS rehearse VB rehearsed VBN rehearsing VBG reign NN reigned VBD reigning VBG reignite VB reignited VBD reigniting VBG reigns VBZ reimburse VB reimburseable JJ reimbursed VBN reimbursement NN reimbursements NNS reimburses VBZ reimbursing VBG reimpose VB rein VB reinbursement NN reincarcerated VBN reincarnated VBD reincorporated VBN reincorporating VBG reindicting VBG reined VBD reinforce VB reinforced VBN reinforced-fiberglass JJ reinforcement NN reinforcements NNS reinforces VBZ reinforcing VBG reining VBG reinman NN reins NNS reinstall VB reinstalled VBN reinstate VB reinstated VBD reinstatement NN reinstating VBG reinstituting VBG reinstitution NN reinsurance NN reinsure VB reinsured VBN reinsurer JJR reinsurers NNS reinsuring VBG reintegrated VBN reinterpret VB reinterpretation NN reinterpreted VBN reinterpreting VBG reintroduce VBP reintroduced VBN reintroduces VBZ reintroducing VBG reinvent VB reinvented VBD reinvest VB reinvested VBN reinvestigating VBG reinvestigation NN reinvesting VBG reinvestment NN reinvigorate VB reinvigorated VBN reinvigorating VBG reinvigoration NN reipublicae FW reissue NN reiterate VB reiterated VBD reiterates VBZ reiterating VBG reiteration NN reject VB rejected VBD rejecting VBG rejection NN rejections NNS rejects VBZ rejiggering VBG rejoice VBP rejoiced VBD rejoices VBZ rejoicing VBG rejoin VB rejoinder NN rejoined VBD rejoining VBG rejoins VBZ rejuvenate VB rejuvenated VBN rejuvenates VBZ rejuvenation NN rekindle VB rekindled VBN rekindles VBZ rekindling VBG relabeling VBG relapse NN relapsed VBD relate VBP related VBN relatedness NN relates VBZ relating VBG relation NN relation-back JJ relational JJ relations NNS relationship NN relationship-building NN relationships NNS relative JJ relative-performance JJ relatively RB relatives NNS relativism NN relativist NN relativistic JJ relativity NN relatonship NN relaunch VB relaunched VBN relax VB relaxation NN relaxed VBN relaxer NN relaxes VBZ relaxing VBG relay VB relayed VBD relaying VBG relearns VBZ release NN released VBN releases NNS releasing VBG relegated VBN relegating VBG relent VBP relented VBD relenting VBG relentless JJ relentlessly RB relentlessness NN relevance NN relevancy NN relevant JJ reliability NN reliable JJ reliables NNS reliably RB reliance NN reliant JJ relic NN relicensing NN relics NNS relict NN relied VBN relief NN reliefs NNS relies VBZ relieve VB relieved VBN reliever NN relieves VBZ relieving VBG religion NN religionists NNS religions NNS religiosity NN religious JJ religious-right NN religiously RB religiousness NN relinquish VB relinquished VBD relinquishing VBG relish NN relished VBD relishes VBZ relishing VBG relisting NN relive VBP relives VBZ reliving NN reloaded VBD relocate VB relocated VBD relocating VBG relocation NN relocations NNS reluctance NN reluctant JJ reluctantly RB rely VB relying VBG relyriced VBD remade VBN remain VB remainder NN remained VBD remaining VBG remains VBZ remake VB remakes NNS remanded VBD remanding VBG remark NN remarkable JJ remarkably RB remarked VBD remarketings NNS remarking VBG remarks NNS remarried VBD remarry VB remarrying NN rematch NN rematches NNS remedial JJ remediation NN remedied VBN remedies NNS remedy NN remember VB remembered VBD remembering VBG remembers VBZ remembrance NN remembrances NNS remind VB reminded VBD reminder NN reminders NNS reminding VBG reminds VBZ reminisced VBD reminiscence NN reminiscences NNS reminiscent JJ reminisces VBZ reminiscing VBG remiss JJ remissions NNS remittances NNS remitted VBN remitting VBG remnant NN remnants NNS remodeled VBD remodeling VBG remolding VBG remonstrate VB remonstrated VBD remora NNS remorse NN remorseful JJ remorseless JJ remote JJ remote-control JJ remote-controlled JJ remote-site NN remotely RB remoteness NN remoter JJR remotest JJS remounting VBG removable JJ removal NN remove VB removed VBN removes VBZ removing VBG remuda NN remunerated VBN remuneration NN remunerative JJ renaissance NN renal JJ rename VB renamed VBN renames VBZ renaming VBG renationalize VB renaturation NN rend VB render VB rendered VBN rendering VBG renderings NNS renders VBZ rendezvous NN rendezvoused VBD rendition NN renditions NNS renegade NN renege VB reneged VBD reneging VBG renegotiable JJ renegotiate VB renegotiated VBN renegotiating VBG renegotiation NN renegotiations NNS renew VB renewable JJ renewal NN renewals NNS renewed VBN renewing VBG renews VBZ renounce VB renounced VBD renouncing VBG renovate VB renovated VBN renovating VBG renovation NN renovations NNS renown NN renowned JJ rent NN rent-a-colonel NN rent-control NN rent-controlled JJ rent-free JJ rent-subsidized JJ rent-subsidy JJ rental JJ rental-car NN rentals NNS rented VBN renter NN renters NNS renting VBG rents NNS renunciation NN renunciations NNS reoccupation NN reoffered VBN reoffering VBG reopen VB reopened VBD reopening VBG reopens VBZ reorder VB reordering NN reorganization NN reorganization-plan JJ reorganizations NNS reorganize VB reorganized VBN reorganizes VBZ reorganizing VBG reorient VB reorientation NN reoriented VBN rep NN rep'tation NN repackage VB repackaged VBN repackaging VBG repaid VBN repainted VBN repainting NN repair NN repaired VBN repairing VBG repairman NN repairmen NNS repairs NNS reparation NN reparations NNS repartee NN repassed VBN repatriate VB repatriated VBN repatriating VBG repatriation NN repatriations NNS repay VB repayable JJ repaying VBG repayment NN repayments NNS repeal NN repealed VBN repealing VBG repeals VBZ repeat VB repeated VBN repeatedly RB repeater NN repeaters NNS repeating VBG repeats VBZ repel VB repelled VBN repellent JJ repelling VBG repels VBZ repent VB repentance NN repentant JJ repercussions NNS repertoire NN repertory NN repetition NN repetitions NNS repetitious JJ repetitive JJ rephrase VB rephrased VBN replace VB replaced VBN replacement NN replacement-car NN replacements NNS replaces VBZ replacing VBG replanted VBN replaster VB replay NN replaying VBG replays NNS replenish VB replenished VBN replenishment NN replete JJ replica NN replicate VB replicated VBN replicating VBG replication NN replied VBD replies VBZ reply NN replying VBG repond VB reponsibility NN report NN reportage NN reported VBD reportedly RB reporter NN reporters NNS reporting VBG reportorial JJ reports NNS repose NN reposed VBD reposition VB repositioning NN repositories NNS repository NN repossesed JJ repossess VB repossessed JJ reprehensible JJ represent VB representation NN representational JJ representations NNS representative NN representatives NNS represented VBN representing VBG representives NNS represents VBZ repress VB repressed VBN repressers NNS repressing VBG repression NN repressions NNS repressive JJ reprice VB repriced VBN repricing NN reprieve NN reprimanded VBN reprimanding VBG reprint VB reprinted VBN reprinting VBG reprints NNS reprisal NN reprisals NNS reproach NN reproaches VBZ reprobate NN reprobating VBG reprocess VB reproduce VB reproduced VBN reproduces VBZ reproducibilities NNS reproducibility NN reproducible JJ reproducibly RB reproducing VBG reproduction NN reproductions NNS reproductive JJ reprographic JJ reproof NN reproval NN reprove VB reprovingly RB reps NNS reptile NN reptilian JJ republic NN republican JJ republics NNS repudiate VB repudiated VBN repudiating VBG repudiation NN repugnance NN repugnant JJ repulsed VBN repulsion NN repulsions NNS repulsive JJ repurchase NN repurchased VBN repurchases NNS repurchasing VBG reputable JJ reputation NN reputations NNS repute NN reputed VBN reputedly RB reqion NN requalify VB request NN requested VBD requesters NNS requesting VBG requests NNS require VB required VBN required. VBN requirement NN requirements NNS requires VBZ requiring VBG requisite JJ requisites NNS requisition NN requisitioned VBD requsting VBG reread VB reregulate VB reregulation NN reroofing NN rerouted VBN rerouting VBG rerun NN rerun-sales NNS reruns NNS resale NN resales NNS reschedulable JJ reschedule VB rescheduled VBD rescheduling VBG rescind VB rescinded VBN rescinding VBG rescission NN rescissions NNS rescue NN rescued VBN rescuers NNS rescues NNS rescuing VBG reseachers NNS resealed VBN research NN research-and-development NN research-and-production JJ research-based JJ research-heavy JJ research-staff NN researchable JJ researched VBN researcher NN researchers NNS researches VBZ researching VBG resell VB reseller JJR resellers NNS reselling VBG resells VBZ resemblance NN resemblances NNS resemble VB resembled VBD resembles VBZ resembling VBG resent VBP resented VBD resentful JJ resentment NN resents VBZ reserpine NN reservation NN reservations NNS reserve NN reserve-building NN reserve-draining JJ reserve... : reserved VBN reserves NNS reserving VBG reservists NNS reservoir NN reservoirs NNS reset NN resettable JJ resettle VB resettled VBN resettlement NN resettling VBG resew VB reshape VB reshaped VBN reshapes VBZ reshaping VBG reshuffle NN reshuffled VBD reshuffling VBG reshufflings NNS reside VBP resided VBD residence NN residences NNS residency NN resident NN residential JJ residential-real-estate JJ residentially RB residents NNS resides VBZ residing VBG residual JJ residuals NNS residue NN residues NNS resifted VBN resign VB resignation NN resignations NNS resigned VBD resignedly RB resigning VBG resigns VBZ resilience NN resiliency NN resilient JJ resiliently RB resin NN resin-saturated JJ resinlike JJ resins NNS resiny JJ resist VB resistance NN resistances NNS resistant JJ resisted VBN resisting VBG resistive JJ resistor NN resistors NNS resists VBZ resold VBN resolute JJ resolutely RB resolution NN resolutions NNS resolve VB resolved VBN resolves VBZ resolving VBG resonable JJ resonance NN resonances NNS resonant JJ resonantly RB resonate VB resonated VBD resonates VBZ resorcinol NN resort NN resort-casino NN resorted VBN resorting VBG resorts NNS resounding JJ resounds VBZ resource NN resource-intensive JJ resource-use NN resource-wasting JJ resourceful JJ resourcefully RB resourcefulness NN resources NNS respect NN respectability NN respectable JJ respected VBN respectful JJ respectfully RB respecting VBG respective JJ respectively RB respects NNS respiration NN respiration... : respirators NNS respiratory JJ respite NN resplendent JJ respond VB responded VBD respondent NN respondents NNS responding VBG responds VBZ response NN responses NNS responsibilities NNS responsibility NN responsible JJ responsiblilty NN responsibly RB responsive JJ responsively RB responsiveness NN rest NN rest-room NN restaffed VBD restaged VBN restaging VBG restart VB restarted VBN restarters NNS restarting VBG restate VB restated VBN restatement NN restates VBZ restating VBG restaurant NN restaurant-development NN restaurant-industry JJ restaurants NNS restaurateur NN restaurateurs NNS rested VBD restful JJ resting VBG restitution NN restive JJ restively RB restless JJ restlessly RB restlessness NN restock VB restorability NN restoration NN restorative JJ restore VB restored VBN restorer NN restorers NNS restores VBZ restoring VBG restrain VB restrained VBN restraining VBG restrains VBZ restraint NN restraints NNS restrict VB restricted VBN restricted-entry JJ restricting VBG restriction NN restrictions NNS restrictive JJ restricts VBZ restroom NN restructure VB restructured VBN restructures VBZ restructuring NN restructurings NNS rests VBZ restuarant JJ restudy NN restyled VBN resublimed VBN resubmit VB resubmitted VBD result NN resultant JJ resultants NNS resulted VBD resulted... : resulting VBG results NNS results-oriented JJ resume VB resumed VBD resumes VBZ resuming VBG resumption NN resurfaced VBD resurgence NN resurgent JJ resurging VBG resurrect VB resurrected VBN resurrecting VBG resurrection NN resurrects VBZ resuscitate VB resuscitated VBN resuscitating VBG resuscitation NN resuspended VBN resuspension NN retablos FW retail JJ retail-banking JJ retail-based JJ retail-brokerage JJ retail-distribution NN retail-sales JJ retail-sized JJ retail-volume NN retailed VBN retailer NN retailer-sales JJ retailers NNS retailing NN retails VBZ retain VB retained VBN retainer NN retainers NNS retaining VBG retains VBZ retake VB retaking VBG retaliate VB retaliated VBD retaliating VBG retaliation NN retaliatory JJ retard VB retardant NN retardants NNS retardation NN retarded JJ retarding VBG retargeting VBG retch NN retching VBG retell VBP retelling NN retention NN retentive JJ retentiveness NN rethink VB rethinking VBG rethought JJ reticence NN reticent JJ reticulate JJ retied VBD retina NN retinal JJ retinoblastoma NN retinue NN retire VB retired VBN retiree NN retirees NNS retirement NN retirement-savings JJ retirement-system JJ retirements NNS retires VBZ retiring VBG retold VBD retooled VBN retooling VBG retools VBZ retort NN retorted VBD retorts NNS retouching NN retrace VB retraced VBD retracing VBG retract VB retractable JJ retracted VBN retracting VBG retraction NN retrain VB retrained VBN retraining NN retranslated VBN retread NN retreat NN retreated VBD retreating VBG retreats NNS retrench VBP retrenching NN retrenchment NN retrial NN retrial... : retribution NN retried VBN retrievable JJ retrieval NN retrieve VB retrieved VBN retriever NN retro JJ retroactive JJ retroactively RB retroactivity NN retrofit VB retrofitted VBN retrofitting NN retrogradations NNS retrograde JJ retrogressive JJ retrospect NN retrospective NN retroviral JJ retrovirus NN retroviruses NNS retrovision NN retry VB return NN return-on-savings JJ return-preparer NN return-printing JJ return. NN returned VBD returning VBG returns NNS retweet NN reunifed VBN reunification NN reunion NN reunion-Halloween JJ reunions NNS reunite VB reunited VBN reuniting VBG reupholstering VBG reusable JJ reuse VB reused VBN reusing VBG rev'rend NN revaluation NN revalued VBN revaluing NN revamp VB revamped VBN revamping VBG revamps VBZ reveal VB revealed VBD revealing VBG reveals VBZ reveille NN revel VB revelation NN revelations NNS revelatory JJ reveled VBD revelers NNS reveling VBG revellers NNS revelling VBG revellings NNS revelry NN revels NNS revenge NN revenge-seeking JJ revenue NN revenue-desperate JJ revenue-generating JJ revenue-law JJ revenue-losing JJ revenue-neutral JJ revenue-producing JJ revenue-raisers NNS revenue-raising JJ revenue-sharing JJ revenuers NNS revenues NNS reverberate VB reverberated VBN reverberating VBG reverberation NN reverberations NNS revered VBN reverence NN reverent JJ reverential JJ reverie NN reversal NN reversals NNS reverse VB reverse-engineering NN reverse-reverse JJ reverse-surface JJ reversed VBD reverses VBZ reversibility NN reversible JJ reversing VBG revert VB reverted VBD reverting VBG reverts VBZ revery NN revetments NNS review NN reviewed VBN reviewed\/designed VBN reviewer NN reviewers NNS reviewing VBG reviews NNS reviled VBN revise VB revised VBN revises VBZ revising VBG revision NN revisionist JJ revisionists NNS revisions NNS revisit VB revisited VBD revisits VBZ revitalization NN revitalize VB revitalized VBD revitalizing VBG revival NN revivalism NN revivals NNS revive VB revived VBN revives VBZ revivified VBN reviving VBG revocable JJ revocation NN revoke VB revoked VBN revoking VBG revolt NN revolted VBD revolting JJ revoltingly RB revolts NNS revolution NN revolutionaries NNS revolutionary JJ revolutionists NNS revolutionize VB revolutionized VBD revolutionizing VBG revolutions NNS revolve VB revolved VBD revolver NN revolves VBZ revolving VBG revs VBZ revulsion NN revved VBD reward NN rewarded VBN rewarding JJ rewards NNS reweave VB reworked VBD reworking NN rewrapped NN rewrite VB rewrites VBZ rewriting VBG rewritten VBN rewrote VBD rewt NN rf NN rhapsodic JJ rhapsodize VBP rhapsodizing VBG rhapsody NN rhenium NN rhetoric NN rhetorical JJ rhetoricians NNS rheum NN rheumatic JJ rheumatism NN rheumatoid JJ rhinestones NNS rhino NN rhinoceros NN rhinos NNS rhinotracheitis NN rhinovirus-receptors NNS rhododendron NN rhu-beb NN rhubarb-like JJ rhyme NN rhymed VBD rhymes VBZ rhyming VBG rhythm NN rhythm-and-blues NN rhythmic JJ rhythmical JJ rhythmically RB rhythms NNS rib NN ribald JJ ribbed JJ ribbies NNS ribbing NN ribbon NN ribbons NNS ribcage NN riboflavin NN ribonucleic JJ ribosomal JJ ribozyme NN ribozymes NNS ribs NNS rice NN rice-processing JJ rich JJ riche JJ richer JJR riches NNS richest JJS richissimos NNS richly RB richness NN rickety JJ ricocheted VBD rid JJ riddance NN ridden VBN ridding VBG riddle NN riddled VBN riddles NNS riddling VBG ride VB rider NN rider-fashion JJ riders NNS ridership NN rides NNS ridge NN ridges NNS ridicule NN ridiculed VBN ridicules VBZ ridiculing VBG ridiculous JJ ridiculously RB riding VBG ridings NNS rife JJ riff NN riffing VBG riffle VB riffs NNS rifle NN rifle-shotgun NN rifled JJ rifleman NN riflemen NNS riflemen-rangers NNS rifles NNS rifling NN rift NN rifts NNS rig NN rigatoni NN rigged VBN rigger NN riggers NNS rigging NN right NN right-angle NN right-angled JJ right-angling NN right-field NN right-hand JJ right-handed JJ right-hander NN right-of-entry NN right-to-counsel JJ right-to-life JJ right-to-lifers NNS right-to-privacy JJ right-to-work JJ right-wing JJ right-wingers NNS righted VBN righteous JJ righteousness NN rightfield NN rightful JJ rightfully RB righthander NN rightist JJ rightly RB rightness NN rights NNS rights-of-way JJ rightward JJ rigid JJ rigidities NNS rigidity NN rigidly RB rigids NNS rigor NN rigorous JJ rigorously RB rigors NNS rigs NNS rigueur FW rile VBP riled VBN riles VBZ rill NN rim NN rim-fire JJ rim-fires NNS rime NN rimless JJ rimmed JJ rims NNS rinds NNS ring NN ring-around-a-rosy NN ring-around-the-rosie NN ring-labeled JJ ringed JJ ringer NN ringers NNS ringing VBG ringings NNS ringleader NN ringlets NNS rings NNS ringside NN ringsiders NNS rink NN rinse NN rinses NNS rinsing NN riot NN rioted VBD rioters NNS rioting NN riotous JJ riots NNS rip VB rip-off NN rip-roaring JJ ripe JJ ripen VBP ripened VBD ripening VBG ripens VBZ ripoff NN ripoffs NNS ripped VBD ripping VBG ripple NN rippled VBD ripples NNS rippling VBG rise NN rise-perhaps RB risen VBN rises VBZ risible JJ rising VBG risk NN risk-analysis NN risk-averse JJ risk-benefited NN risk-capital JJ risk-fraught JJ risk-free JJ risk-management NN risk-takers NNS risk-taking NN risked VBD riskier JJR riskiest JJS riskiness NN risking VBG risks NNS risky JJ rite NN rites NNS ritiuality NN ritorno FW ritual NN ritualized VBN rituals NNS ritzy JJ rival JJ rival-bashing JJ rivaled VBD rivaling VBG rivalled VBD rivalries NNS rivalry NN rivals NNS riven VBN river NN riverbank NN riverbanks NNS riverboat NN riverfront NN rivers NNS riverside NN riveted VBN riveting VBG rivets VBZ rivulets NNS roach NN road NN road-building JJ road-circuit NN road-construction JJ road-crossing NN road-map NN road-show NN road-shy JJ roadbed NN roadblock NN roadblocks NNS roadbuilding NN roadhouse NN roadrunner NN roads NNS roadside NN roadster NN roadway NN roadways NNS roam VB roamed VBD roaming VBG roams VBZ roar NN roared VBD roaring VBG roaringest JJS roars VBZ roast NN roasted VBN roasters NNS roasts NNS rob VB robbed VBN robber NN robberies NNS robbers NNS robbery NN robbing VBG robe NN robed VBN robes NNS robin NN robing NN robot NN robotic JJ robotics NNS robotism NN robots NNS robs VBZ robust JJ robustly RB robustness NN rock NN rock'n NN rock'n'roll NN rock-and-roll NN rock-carved JJ rock-hard JJ rock-like JJ rock-ribbed JJ rock-scored JJ rock-steady NN rock-strewn NN rockbound JJ rocked VBD rocker NN rockers NNS rocket NN rocket-bomb NN rocket-bombs NNS rocket-fuel NN rocket-like JJ rocket-motor NN rocket-propelled JJ rocket-propulsion NN rocketed VBD rocketing VBG rockets NNS rockin JJ rocking NN rocklike JJ rocks NNS rockstrewn NN rocky JJ rococo JJ rod NN rodder NN rodders NNS rodding NN rode VBD rodent NN rodents NNS rodeo NN rodeos NNS rods NNS roemer NN rogue JJ rogues NNS roi FW roil VB roiled VBN roiling VBG role NN role-experiment NN role-experimentation NN role-playing NN roleplayed VBN roleplaying NN roles NNS roll NN roll-call JJ roll-out NN rollback NN rollbacks NNS rolled VBD rolled-up JJ roller NN roller-coaster NN rollercoaster NN rollers NNS rollicking JJ rollickingly RB rolling VBG rolling-steel NN rollout NN rollover NN rollovers NNS rolls NNS rollup NN roly-poly JJ romance NN romancers NNS romances NNS romancing VBG romantic JJ romantically RB romanticism NN romanticize VB romanticized VBN romanticizing NN romantick JJ romantics NNS romp NN romped VBD romping VBG romps NNS roof NN roof-crush JJ roofed VBN roofer NN roofers NNS roofing NN roofs NNS rooftop NN rooftops NNS rooftree NN rook NN rookie NN rookie-of-the-year NN rookies NNS room NN room-rate JJ roomed VBD roomette NN roomful NN roomier JJR roominess NN rooming VBG rooming-house NN roommate NN roommates NNS rooms NNS roomy JJ roost VB rooster NN rooster-comb NN roosters NNS roosting VBG root NN root-canal NN rooted VBN rooters NNS rooting VBG rootless JJ roots NNS rope NN rope-sight NN roped VBD ropers NNS ropes NNS rosarians NNS rosaries NNS rose VBD rose-gold NN rose-of-Sharon NN rose-pink JJ rose-tea NN rosebuds NNS rosebush NN roses NNS rosettes NNS rosier JJR rosiest JJS rosins NNS roster NN rosters NNS rostrum NN rosy JJ rosy-fingered JJ rot NN rotary JJ rotate VB rotated VBN rotates VBZ rotating VBG rotation NN rotational JJ rotationally RB rotations NNS rote NN rotenone NN rotogravures NNS rotor NN rots VBZ rotted VBN rotten JJ rotting VBG rotund JJ rotunda NN rotundity NN rouge FW rough JJ rough-and-ready-sounding JJ rough-and-tumble JJ rough-cut JJ rough-hewn JJ rough-housing NN rough-sanded JJ rough-tough JJ roughcast NN roughed VBD roughened VBN rougher JJR roughest JJS roughhewn JJ roughish JJ roughly RB roughneck NN roughnecks NNS roughness NN roughshod JJ roulette NN round NN round-bottom JJ round-eyed JJ round-faced JJ round-table JJ round-the-clock JJ round-the-world JJ round-tipped JJ round-trip JJ round-tripping NN roundabout JJ rounded VBN rounder JJR roundhead NN roundhouse NN rounding VBG roundly RB roundness NN rounds NNS roundtable JJ roundtrip NN roundup NN roundups NNS rouse VB roused VBD rousing JJ roustabout NN roustabouts NNS rout NN route NN routed VBN routes NNS routine JJ routinely RB routines NNS routing VBG routings NNS rove VB roved VBD roving VBG rovings NNS row NN rowdiness NN rowdy JJ rowed VBD rowing NN rows NNS royal JJ royalties NNS royalty NN royalty-free JJ rpm NN rub NN rubbed VBD rubber NN rubber-like JJ rubber-necking VBG rubber-stamp VB rubber-stamped JJ rubberized VBN rubberstamp NN rubbery JJ rubbin VBG rubbing VBG rubbish NN rubble NN rubdowns NNS rubfests NNS rubicund JJ rubies NNS ruble NN ruble\/gold JJ rubles NNS rubout NN rubric NN rubs NNS ruckus NN rudder NN rudderless JJ ruddiness NN ruddy JJ rude JJ rudely RB rudeness NN rudimentary JJ rudiments NNS rue NN rueful JJ ruefully RB ruefulness NN ruffian NN ruffians NNS ruffle VB ruffled VBN ruffles VBZ rug NN rugged JJ ruggedly RB rugs NNS ruh FW ruin NN ruined VBN ruining VBG ruinous JJ ruins NNS rule NN rule-making JJ rule. NN rule`` `` ruled VBD ruler NN rulers NNS rules NNS ruling NN ruling-class JJ ruling-party NN rulings NNS rum NN rum-tum-tum JJ rumble NN rumbled VBD rumbles VBZ rumbling VBG rumblings NNS rumdum NN rumen NN ruminants NNS ruminate VB ruminated VBD rumination NN ruminations NNS rummage VB rummaged VBD rummaging JJ rummy NN rumor NN rumor-driven JJ rumor-fraught JJ rumor-happy JJ rumored VBN rumors NNS rump NN rumpled JJ rumpus NN run VB run-down JJ run-from-above JJ run-ins NNS run-of-the-mill JJ run-of-the-mine JJ run-on NN run-scoring JJ run-up NN run-ups NNS runabout NN runaway JJ rundown NN runes NNS rung VBN runing VBG runner NN runner-up NN runners NNS runners-up NNS runnin VBG running VBG runny JJ runoff NN runs VBZ runt NN runup NN runups NNS runway NN runways NNS rupee NN rupees NNS rupiah NN rupture NN ruptured VBN rupturing VBG rural JJ rural-care JJ ruse NN rush NN rush-hour JJ rushed VBD rushes VBZ rushing VBG russe NN russet JJ russet-colored JJ rust NN rusted JJ rustic JJ rusticated VBN rusting JJ rustle NN rustled VBN rustler NN rustler-hunter NN rustlers NNS rustlin NN rustling NN rustlings NNS rusty JJ rut NN rutabaga NN rutabagas NNS ruthenium NN ruthless JJ ruthlessly RB ruthlessness NN ruts NNS rutted JJ rye NN s PRP s'accuse FW s'excuse FW s'posin VBG s-values NNS s.r.l. NNP sabbatical NN saber NN saber-rattling NN saber-toothed JJ sabers-along IN sable NN sables NNS sabotage NN sabre NN sabre-rattling NN sac NN sacadolares FW saccharin NN sachems NNS sack NN sacked VBD sacker NN sackes NNS sacking VBG sackings NNS sackless JJ sacks NNS sacral JJ sacrament NN sacraments NNS sacred JJ sacredness NN sacrifice NN sacrificed VBN sacrifices NNS sacrificial JJ sacrificing VBG sacrificium FW sacrilege NN sacrilegious JJ sacrosanct JJ sad JJ saddened JJ sadder JJR saddle NN saddlebags NNS saddled VBN saddles NNS saddling VBG sadism NN sadist NN sadistic JJ sadly RB sadness NN safari NN safaris NNS safe JJ safe-conduct NN safe-cracking JJ safe-deposit JJ safe-driving JJ safe-sounding JJ safeguard VB safeguarded VBN safeguarding VBG safeguards NNS safekeep VB safekeeping NN safely RB safer JJR safest JJS safeties NNS safety NN safety-first JJ safety-related JJ safety-seat NN safety-sensitive JJ saffron NN sag VB saga NN saga-like JJ sage NN sagebrush NN sages NNS sagged VBD sagging VBG saggy JJ sago NN sags NNS sahibs NNS said VBD said'let's NNS said.`` `` said:`` `` sail VB sailboat NN sailboats NNS sailed VBD sailing NN sailor NN sailorly RB sailors NNS sails NNS saint NN sainthood NN saintliness NN saintly JJ saints NNS saith VBZ sake NN salable JJ salacious JJ salad NN salads NNS salamander NN salami NNS salaried JJ salaries NNS salary NN salary-pool NN salarymen NNS sale NN sale-lease-back JJ sale-leaseback NN sale-purchase NN sale-purchases NNS sale\/leaseback NN sales NNS sales-building JJ sales-conscious JJ sales-incentive JJ sales-loss JJ sales-moving JJ sales-of IN sales-tax NN sales. NNS sales... : salesgirl NN saleslady NN salesman NN salesmanship NN salesmen NNS salesparson NN salespeople NN salesperson NN saleswomen NNS salicylate NN salicylates NNS salicylic JJ salient JJ saline NN salinity NN saliva NN salivary JJ salivate VB sallies NNS sallow JJ sally VB sallying VBG salmon NN salmon-colored JJ salmonella NN salon NN salons NNS saloon NN saloonkeeper NN saloons NNS salsa NN salt NN salt-crusted JJ salt-edged JJ salt-fractionation NN saltbush NN salted VBN saltier JJR salting VBG salts NNS saltwater NN salty JJ salubrious JJ salutaris FW salutary JJ salutation NN salute NN saluted VBD salutes NNS saluting VBG salvage VB salvaged VBN salvages VBZ salvaging VBG salvation NN salve NN salves NNS salvo NN salvos NNS sambuca NN sambur NN same JJ same-store JJ sameness NN samovar FW samovars NNS sample NN sampled VBN sampler NN samplers NNS samples NNS sampling NN samplings NNS samurai FW sana FW sanatorium NN sanctified JJ sanctify VB sanctimonious JJ sanction NN sanctioned VBN sanctioning VBG sanctions NNS sanctity NN sanctorum FW sanctuary NN sanctum FW sanctums NNS sand NN sand-mining NN sandals NNS sandalwood NN sandbars NNS sandbox NN sander NN sanding NN sandpaper NN sands NNS sandwich NN sandwich-type JJ sandwiched VBN sandwiches NNS sandy JJ sandy-haired JJ sane JJ saner JJR sanest JJS sang VBD sang-froid FW sangaree NN sangiovanni NNS sanguine JJ sanguineous JJ sanguineum NN sanhedrin NN sanipractor NN sanitaire FW sanitarium NN sanitary JJ sanitation NN sanitation-control JJ sanitationists NNS sanitize VBP sanitized VBN sanitizing NN sanity NN sank VBD santos FW sap VB sapiens JJ sapling NN saponins NNS sapped VBN sapping VBG sappy JJ saps VBZ sarakin FW sarcasm NN sarcasms NNS sarcastic JJ sarcastically RB sarcolemmal JJ sarcoma NN sardines NNS sardonic JJ sardonically RB sari NN sarsaparilla NN sash NN sashay NN sashayed VBD sassafras NN sassing NN sassy JJ sat VBD satellite NN satellite-TV JJ satellite-assembly NN satellite-delivered JJ satellite-dish NN satellite-launch JJ satellite-launching JJ satellite-linked JJ satellite-transmission NN satellites NNS satiate VB satiety NN satin NN satin-covered JJ satire NN satiric JJ satirical JJ satirically RB satirist NN satirizes VBZ satisfaction NN satisfactions NNS satisfactorily RB satisfactory JJ satisfied VBN satisfies VBZ satisfy VB satisfying JJ saturate VB saturated VBN saturation NN sauce NN saucepan NN saucer NN saucers NNS sauces NNS saucy JJ sauerkraut NN sauna NN saunas NNS saunter NN sausage NN sausage-grinder NN sausage-meat NN sausages NNS saute VB sauterne JJ savage JJ savaged VBD savagely RB savagery NN savages NNS save VB save-the-earth JJ save-the-universe JJ save-the-wildlife JJ saved VBN saver NN savers NNS savers\/investors NNS saves VBZ saving VBG savings NNS savings-and-loan JJ savings-and-loans JJ savings-deposit JJ savings-type JJ savior NN saviour NN savor VB savored VBD savoring VBG savors NNS savory JJ savvier JJR savviest JJS savvy JJ saw VBD saw-horse NN sawdust NN sawed-off JJ sawing NN sawmill NN saws NNS sawtimber NN sax NN saxophone NN saxophones NNS saxophonist NN saxophonists NNS say VBP say'direct VB say'well VB say'wow VB say,'you're VBP say-because IN say-great JJ say-so NN say-speak NN say... : say:'none NN sayed VBD sayin NN saying VBG sayings NNS sayonara FW says VBZ says. VBZ scab NN scabbard NN scabbed VBN scabrous JJ scabs NNS scads NNS scaffold NN scaffolding NN scaffoldings NNS scairt VBN scalar JJ scalawags NNS scald VB scalded VBN scalding VBG scale NN scale-down JJ scaled VBN scaled-back JJ scaled-backed JJ scaled-down JJ scales NNS scaling VBG scalloped JJ scallops NNS scalp NN scalpels NNS scalps NNS scam NN scammed VBD scammers NNS scamper VBP scampering VBG scams NNS scan NN scandal NN scandal-plagued JJ scandal-ridden JJ scandal-stench NN scandal-tossed JJ scandal-tripped JJ scandal-wracked JJ scandalized VBD scandalizes VBZ scandalizing JJ scandalous JJ scandals NNS scanned VBD scanner NN scanners NNS scanning NN scans NNS scant JJ scants VBZ scanty JJ scape VB scapegoat NN scapegoating NN scapegoats NNS scapulars NNS scar NN scarce JJ scarcely RB scarcely-tapped JJ scarcer JJR scarcest JJS scarcity NN scare VB scare-tactic NN scarecrowish JJ scared VBN scares NNS scarf NN scarfing VBG scarify VB scaring VBG scarlet JJ scarred JJ scars NNS scarves NN scary JJ scathing JJ scathingly RB scatter NN scatterbrained JJ scattered VBN scattergun NN scattering VBG scatters VBZ scattershot JJ scavanged VBN scavenger NN scavengers NNS scavenging VBG scedule NN scenario NN scenarios NNS scene NN sceneries NNS scenery NN scenes NNS scenic JJ scenics NNS scent NN scented JJ scents NNS sceptical JJ scepticism NN schedule NN scheduled VBN schedules NNS scheduling NN schema NN schemata NN schematic JJ schematically RB scheme NN schemers NNS schemes NNS scheming JJ scherzo NN schillings NNS schism NN schizoid JJ schizophrenia NN schizophrenic JJ schmoozing NN schmumpered VBD schnapps NN schnooks NNS scholar NN scholar-businessman NN scholar-in-residence NN scholarly JJ scholars NNS scholarship NN scholarships NNS scholastic JJ scholastically RB scholastics NNS school NN school-age JJ school-based JJ school-board NN school-bus NN school-desegregation NN school-district JJ school-financing JJ school-improvement JJ school-leaving JJ school-lunch NN school-research JJ school-sponsored JJ schoolbooks NNS schoolboy NN schoolboys NNS schoolchildren NN schooldays NNS schooled VBN schoolers NNS schoolgirl NN schoolgirlish JJ schoolgirls NNS schoolhouse NN schooling NN schoolmaster NN schoolmate NN schoolmates NNS schoolroom NN schools NNS schoolteacher NN schoolteachers NNS schoolwork NN schooner NN sci-fi JJ sciatica NN science NN science-education NN science-fiction NN science-watchers NNS sciences NNS scientific JJ scientifically RB scientifically-trained JJ scientist NN scientist-consultant NN scientist\/traders NNS scientists NNS scimitar NN scimitar-wielding JJ scimitars NNS scintillating JJ scion NN scions NNS scissoring VBG scissors NNS sclerosis NN sclerotic JJ scoff VBP scoffed VBD scoffer NN scoffing NN scofflaws NNS scoffs VBZ scold VB scolded VBN scolding VBG scolds NNS scoop NN scooped VBD scooping VBG scoops VBZ scooted VBD scooter NN scooting VBG scop NN scope NN scoped NN scopes NNS scops NNS scorched JJ scorcher NN score NN score-wise JJ scoreboard NN scoreboards NNS scorecard NN scored VBD scorekeepers NNS scorekeeping NN scoreless JJ scorer NN scorers NNS scores NNS scoring VBG scorn NN scorned VBN scornful JJ scornfully RB scot-free JJ scotch NN scotched VBD scotches NNS scoundrel NN scoundrels NNS scour VBP scoured VBN scourge NN scourges NNS scouring VBG scours NNS scout NN scouted VBD scouting VBG scouts NNS scowl VBP scowled VBD scowling NN scowls VBZ scraggly JJ scramble NN scrambled VBD scrambles NNS scrambling VBG scrap NN scrapbook NN scrape NN scraped VBD scrapes NNS scraping VBG scrapped VBN scrapping VBG scrappy JJ scraps NNS scratch NN scratched VBD scratches NNS scratchiness NN scratching VBG scratchy JJ scrawl NN scrawled VBD scrawny JJ scream VB screamed VBD screaming VBG screams NNS screech NN screeched VBD screeches NNS screeching VBG screechy JJ screed NN screen NN screened VBN screening NN screenings NNS screenland NN screenplay NN screens NNS screenwriters NNS screw NN screw-loose JJ screwball JJ screwdriver NN screwed VBN screws NNS scribble VB scribbled VBD scribblers NNS scribbles VBZ scribbling VBG scribe NN scribes NNS scribing NN scrim NN scrimmage NN scrimmaged VBD scrimp VB scrimped VBD scrimping VBG script NN scripts NNS scriptural JJ scripture NN scriptures NNS scriptwriter NN scriptwriters NNS scrivener NN scroll NN scrolls NNS scrounge VBP scrounged VBD scrounging VBG scrub VB scrubbed VBN scrubbers NNS scrubbing NN scruff NN scrumptious JJ scrupulosity NN scrupulous JJ scrupulously RB scrutin FW scrutinize VB scrutinized VBN scrutinizes VBZ scrutinizing VBG scrutiny NN scuba NN scudding VBG scuff VB scuffle NN sculpted VBN sculptor NN sculptors NNS sculpts VBZ sculptural JJ sculpture NN sculptured VBN sculptures NNS scurried VBD scurries NNS scurrilous JJ scurry NN scurrying VBG scurvy NN scuttle VB scuttled VBD scuttling VBG se FW sea NN sea-beach NN sea-blessed JJ sea-damp JJ sea-food NN sea-horses NNS sea-launched JJ sea-transport JJ sea-turtle-saving JJ sea-village NN seaboard NN seaborne JJ seacoast NN seafarers NNS seafaring JJ seafood NN seagulls NNS seahorse NN seal NN sealants NNS sealed VBN sealift NN sealing NN seals NNS seam NN seaman NN seamanship NN seamen NNS seamier JJR seamless JJ seamlessly RB seams NNS seamstress NN seamy JJ seances NNS seaport NN seaports NNS seaquake NN sear VB search NN search-and-examination JJ search-and-seizure JJ searched VBD searcher NN searchers NNS searches NNS searching VBG searchingly RB searchings NNS searchlight NN searchlights NNS searing VBG seas NNS seashore NN seashores NNS seaside JJ season NN seasonal JJ seasonality NN seasonally RB seasoned JJ seasoning NN seasonings NNS seasons NNS seat NN seat-back JJ seat-belt NN seat-for-the-secretary JJ seat-sale JJ seatbelt NN seated VBN seating NN seatrout NN seats NNS seawall NN seawater NN seaweed NN sec. NN secant NN secants NNS secco NN secede VB seceded VBN seceding VBG secession NN secessionist NN secessionists NNS seclude VB secluded VBN seclusion NN second JJ second-biggest JJ second-by-second JJ second-class JJ second-consecutive JJ second-deadliest JJ second-degree JJ second-echelon JJ second-floor JJ second-grader NN second-guess VB second-guessed VBN second-guessing NN second-half JJ second-hand JJ second-highest JJ second-in-command NN second-largest JJ second-leading JJ second-level JJ second-look JJ second-most-conservative JJ second-order JJ second-place JJ second-quarter JJ second-rate JJ second-round JJ second-stage JJ second-story JJ second-tier JJ second-time JJ second-to-die JJ second-worst JJ second-year JJ secondarily RB secondary JJ secondbiggest JJS secondhand JJ secondly RB seconds NNS secrecy NN secret JJ secretarial JJ secretaries NNS secretary NN secretary-general NN secretary-treasurer NN secreted VBN secretion NN secretions NNS secretive JJ secretively RB secretly RB secrets NNS sect NN sectarian JJ section NN sectional JJ sectionalized JJ sections NNS sector NN sector... : sectorial JJ sectors NNS sects NNS secular JJ secularism NN secularist NN secularists NNS secularized VBN secure VB secured VBN securely RB securing VBG securites NNS securities NNS securities'fraud NN securities-based JJ securities-firm NN securities-fraud NN securities-industry NN securities-investment JJ securities-law NN securities-laws NNS securities-price JJ securities-trading JJ securities-turnover JJ securitiess NN securitization NN security NN security-services NN security-type JJ sed VBD sedan NN sedans NNS sedate JJ sedately RB sedative NN sedentary JJ sediment NN sedimentary JJ sedimentation NN sediments NNS sedition NN seditious JJ seduce VB seduced VBN seducer NN seduces VBZ seducing VBG seduction NN seductive JJ sedulously RB seduzione FW see VB see-lective JJ see-through JJ seed NN seed-bearing JJ seed-capital JJ seed-pods NNS seedbed NN seedcoat NN seedcoats NNS seeded VBN seedless JJ seedlings NNS seeds NNS seedy JJ seein VBG seeing VBG seek VB seeker NN seekers NNS seekin VBG seeking VBG seekingly RB seeks VBZ seem VB seemed VBD seeming JJ seemingly RB seems VBZ seen VBN seep VB seepage NN seeped VBD seeping VBG seer NN seers NNS seersucker NN sees VBZ seesaw NN seesawing VBG seethe VB seethes VBZ seething VBG segment NN segmental JJ segmentation NN segmented JJ segmenting VBG segments NNS segregate VB segregated VBN segregating VBG segregation NN segregationist NN segregationists NNS seige NN seisho FW seismic JJ seismograph NN seismographic JJ seismographs NNS seismological JJ seize VB seized VBN seized-property JJ seizes VBZ seizin VBG seizing VBG seizure NN seizures NNS seldom RB seldom-stolen JJ select VB selected VBN selecting VBG selection NN selection-rejection JJ selections NNS selective JJ selectively RB selectiveness NN selectivity NN selectors NNS selects VBZ self NN self-absorbed JJ self-acceptance NN self-administration NN self-aggrandisement NN self-aggrandizement NN self-aggrandizing JJ self-analysis NN self-appointed JJ self-assertion NN self-assertive JJ self-assurance NN self-assured JJ self-awareness NN self-betrayal NN self-censorship NN self-centered JJ self-certainty NN self-chosen JJ self-completion NN self-conceited JJ self-confessed JJ self-confidence NN self-confident JJ self-congratulation NN self-congratulatory JJ self-conscious JJ self-consciously RB self-consciousness NN self-consistent JJ self-consuming JJ self-contained JJ self-content JJ self-control NN self-correcting JJ self-crimination NN self-critical JJ self-criticism NN self-deceived JJ self-deceiving JJ self-deception NN self-deceptions NNS self-declared JJ self-defeat NN self-defeating JJ self-defense NN self-definition NN self-deluded JJ self-delusion NN self-deprecating JJ self-deprecation NN self-described JJ self-designated JJ self-destructed VBD self-destruction NN self-destructive JJ self-determination NN self-diagnostic JJ self-dictate NN self-discipline NN self-discovery NN self-dramatization NN self-effacement NN self-effacing JJ self-employed JJ self-employment NN self-enclosed JJ self-energizing JJ self-enforced JJ self-esteem NN self-evident JJ self-examination NN self-exile NN self-experimentation NN self-explanatory JJ self-expression NN self-extinguishing JJ self-financed JJ self-flagellation NN self-fulfilling JJ self-funding NN self-governing JJ self-government NN self-hatred NN self-help NN self-image NN self-images NN self-important JJ self-imposed JJ self-incrimination NN self-indulgence NN self-indulgent JJ self-inflicted JJ self-insurance NN self-insure VBP self-insured JJ self-interest NN self-interested JJ self-involved JJ self-judging JJ self-locking JJ self-managing JJ self-mastery NN self-multilation NN self-observation NN self-ordained JJ self-pacification NN self-perceived JJ self-perpetuating JJ self-pity NN self-pitying JJ self-plagiarisms NNS self-policing JJ self-portrait NN self-portraits NNS self-prescribed JJ self-preservation NN self-proclaimed JJ self-professed JJ self-promotion NN self-protection NN self-published JJ self-realized JJ self-redefinition NN self-referential JJ self-reform NN self-regulating JJ self-regulation NN self-regulator NN self-regulatory JJ self-reinsure VB self-reliance NN self-reliant JJ self-respect NN self-respecting JJ self-restraint NN self-righteous JJ self-righteousness NN self-rule NN self-sacrifice NN self-sacrificing JJ self-satisfaction NN self-screening JJ self-scrutiny NN self-seeking JJ self-serve NN self-served VBD self-serving JJ self-splicing JJ self-starters NNS self-starting JJ self-styled JJ self-sufficiency NN self-sufficient JJ self-supporting JJ self-sustaining JJ self-taught JJ self-tender JJ self-tilth NN self-unloading JJ self-victimized JJ self-will NN self-willed JJ selfdamaging JJ selfeffacing VBG selfish JJ selfishness NN selfless JJ selflessness NN sell VB sell-off NN sell-offs NNS sell-order JJ sell-through NN selle VB seller NN seller-financed JJ sellers NNS sellin NN selling VBG selloff NN selloffs NNS sellout NN sells VBZ selves NNS semantic JJ semantically RB semantics NNS semblance NN semen NN semester NN semesters NNS semi-abstract JJ semi-abstractions NNS semi-ambiguous JJ semi-annual JJ semi-annually RB semi-arid JJ semi-automatic JJ semi-autonomous JJ semi-catatonic JJ semi-celebrities NNS semi-circle NN semi-city JJ semi-conductors NNS semi-conscious JJ semi-controlled JJ semi-finalists NNS semi-finished JJ semi-gelatinous JJ semi-heights NNS semi-independent JJ semi-inflated JJ semi-isolated JJ semi-liquefied JJ semi-literate JJ semi-local JJ semi-major JJ semi-minor JJ semi-nude JJ semi-obscure JJ semi-precious JJ semi-private JJ semi-processed JJ semi-professional JJ semi-professionally RB semi-public JJ semi-retired JJ semi-rigid JJ semi-serious JJ semi-skilled JJ semi-special JJ semi-statist JJ semi-sterile JJ semiannual JJ semiannually RB semiarid JJ semiautomatic JJ semicircular JJ semiconductor NN semiconductor-coating NN semiconductor-depreciation JJ semiconductor-equipment NN semiconductor-manufacturing NN semiconductor-production NN semiconductors NNS semidrying JJ semiempirical JJ semifinalists NNS semifinals NNS semifinished VBN semiliterate JJ semimonthly JJ seminal JJ seminar NN seminarian NN seminarians NNS seminars NNS seminary NN semipublic JJ semiquantitative JJ semisecret JJ semitrance NN semitropical JJ semper FW senate NN senator NN senatorial JJ senators NNS send VB senders NNS sending VBG sends VBZ senile JJ senilis NNS senior JJ senior-debt NN senior-graduate NN senior-level JJ senior-management NN senior-subordinated JJ senioritatis FW seniority NN seniority-list NN seniors NNS senora NN sensation NN sensational JJ sensationalism NN sensationalizing VBG sensations NNS sense NN sensed VBD senseless JJ senselessly RB senses NNS sensibilities NNS sensibility NN sensible JJ sensibly RB sensing VBG sensitive JJ sensitive-area NN sensitively RB sensitives NNS sensitivities NNS sensitivity NN sensitize VB sensitized VBN sensor NN sensors NNS sensory JJ sensual JJ sensuality NN sensuous JJ sent VBD sentence NN sentence-structure JJ sentenced VBN sentences NNS sentencing NN sentencings NNS sentient JJ sentiment NN sentimental JJ sentimentalists NNS sentimentality NN sentimentalize VB sentiments NNS sentinel NN sentinels NNS sentry NN separable JJ separate JJ separated VBN separately RB separateness NN separates VBZ separating VBG separation NN separation-of-powers JJ separations NNS separatist JJ separatists NNS separators NNS sepia JJ sepsis NN septa NNS septation NN septic JJ septillion CD septuagenarian NN septum NN sepulchred VBN seq NN sequel NN sequels NNS sequence NN sequence-tagged JJ sequenced VBN sequences NNS sequester NN sequestered VBN sequestering NN sequestration NN sequined JJ sequins NNS sera NNS seraphim NN serenade NN serenaded VBN serendipity NN serene JJ serenely RB serenity NN serfs NNS serge NN sergeant NN sergeants NNS serial JJ serialized VBN serials NNS series NN series-production NN series. NN serious JJ serious-minded JJ seriously RB seriousness NN serloin NN sermon NN sermons NNS sermons\/From JJ serological JJ serotonin NN serpent NN serpentine JJ serpents NNS serratus NN serum NN servant NN servants NNS serve VB serve-the-world JJ served VBN server NN servers NNS serves VBZ service NN service-center NN service-connected JJ service-industry JJ service-oriented JJ service-sector JJ service-type JJ serviceable JJ serviced VBN servicemen NNS servicers NNS services NNS services-repair NN servicing NN serviettes NNS servile JJ serving VBG servings NNS servitors NNS servitude NN servo NN sesame NN session NN sessions NNS set VBN set-aside JJ set-asides NNS set-up NN setback NN setbacks NNS sets NNS setters NNS setting VBG settings NNS settle VB settled VBD settlement NN settlements NNS settler NN settlers NNS settles VBZ settling VBG setup NN setups NNS seven CD seven-bedroom JJ seven-concert JJ seven-course JJ seven-day JJ seven-digit JJ seven-eighths NNS seven-figure JJ seven-fold JJ seven-hit JJ seven-inch JJ seven-inning JJ seven-iron NN seven-member JJ seven-million-ton JJ seven-month JJ seven-month-old JJ seven-o'clock RB seven-point JJ seven-session JJ seven-shot JJ seven-stories JJ seven-story JJ seven-tenths NNS seven-thirty RB seven-unit JJ seven-volume JJ seven-week JJ seven-week-old JJ seven-word JJ seven-year JJ seven-year-old JJ seven-yen JJ sevenday JJ sevenfold RB seventeen CD seventeen-inch JJ seventeen-year-old JJ seventeenth JJ seventeenth-century JJ seventh JJ seventh-biggest JJ seventh-consecutive JJ seventh-inning JJ seventh-largest JJ seventh-most-admired JJ seventies NNS seventy CD seventy-eight JJ seventy-fifth JJ seventy-five CD seventy-five-foot JJ seventy-foot JJ seventy-four CD seventy-odd JJ seventy-six JJ seventy-two JJ sever VB severable JJ several JJ several-year JJ severally RB severalty NN severance NN severe JJ severe-looking JJ severed VBN severely RB severest JJS severing VBG severity NN severly RB sevices NNS sew VB sewage NN sewage-polluted JJ sewage-treatment NN sewed VBD sewer NN sewer-repair JJ sewerage NN sewers NNS sewing NN sewing-machine NN sewn VBN sews VBZ sex NN sex-change JJ sex-discrimination NN sex-education NN sex-for-hire JJ sex-manuals NNS sexes NNS sexism NN sexist JJ sexologist NN sexology NN sexpot NN sextet NN sextillion CD sexton NN sexual JJ sexuality NN sexualized JJ sexually RB sexy JJ sforzando NN sh-ts NN sha MD shabbily RB shabby JJ shack NN shack-up JJ shacked VBN shackle VB shackled VBN shackles NNS shacks NNS shad NN shade NN shade-darkened JJ shaded VBN shades NNS shadier JJR shading NN shadings NNS shadow NN shadowed VBN shadowing NN shadows NNS shadowy JJ shady JJ shaft NN shafts NNS shag JJ shaggy JJ shags VBZ shah NN shake VB shake-up NN shaken VBN shakeout NN shaker NN shakers NNS shakes VBZ shakeup NN shakily RB shaking VBG shaky JJ shall MD shallow JJ shallow-water NN shallower JJR shallowness NN shalt VB sham NN shamanistic JJ shambled VBD shambles NN shambling VBG shame NN shamed VBN shamefacedly RB shameful JJ shameless JJ shamelessly RB shames NNS shampoo NN shampooed VBN shamrock NN shamrocks NNS shams NNS shanties NNS shantung-like JJ shanty NN shantytown NN shantytowns NNS shape NN shape-up JJ shaped VBN shapeless JJ shapely JJ shapes NNS shaping VBG shards NNS share NN share-buying NN share-holders NNS share-price JJ share-purchase NN share-repurchase JJ share-trading NN share... : sharecrop NN sharecropper NN sharecroppers NNS shared VBN shareholder NN shareholder-owned JJ shareholder-payout JJ shareholder-rights JJ shareholder\ JJ shareholder\/management NN shareholders NNS shareholding NN shareholdings NNS shareowners NNS sharers NNS shares NNS sharing VBG shark NN shark-infested JJ sharks NNS sharkskin NN sharp JJ sharp-focus JJ sharp-jawed JJ sharp-leafed JJ sharp-limbed JJ sharp-rising JJ sharpen VB sharpened VBN sharpener NN sharpening VBG sharpens VBZ sharper JJR sharpest JJS sharply RB sharpness NN sharpshooter NN sharpshooters NNS shashlik NN shatter VB shattered VBN shattering VBG shatteringly RB shatterproof JJ shatters NNS shave VB shaved VBN shaven JJ shaver NN shavers NNS shaves VBZ shaving NN shavings NNS shawl NN shawls NNS she PRP she's VBZ shea NN sheaf NN shear NN sheared JJ shearing NN sheath NN sheathing NN sheaths NNS shed VB shedding VBG sheds VBZ sheen NN sheep NN sheep-like JJ sheep-lined JJ sheepe NNS sheepish JJ sheepskin NN sheer JJ sheered VBD sheet NN sheet-fed JJ sheet-metal JJ sheet-rolling VBG sheeted JJ sheeting NN sheetrock NN sheets NNS sheik NN sheiks NNS shelf NN shelf-life NN shelf-registered JJ shelf-stable JJ shell NN shell-psychology NN shell-shocked JJ shelled VBD shellfire NN shellfish NN shelling VBG shells NNS shellshocked VBN shelter NN shelter. NN sheltered VBN sheltering VBG shelters NNS shelve VB shelved VBD shelves NNS shelving NN shenanigans NNS shepherd NN shepherded VBD shepherding VBG shepherds NNS sherbet NN sherbet-colored JJ sheriff NN sheriffs NNS sherry NN shewe NN shibboleth NN shibboleths NNS shied VBD shield NN shielded VBN shielding NN shields NNS shies VBZ shift NN shifted VBD shifters NNS shifting VBG shiftless JJ shifts NNS shifty JJ shill NN shillings NNS shills NNS shim VB shimmer NN shimmered VBD shimmering VBG shimming NN shimmy VB shims NNS shin NN shinbone NN shine NN shines VBZ shingle NN shingles NNS shining VBG shiningly RB shins NNS shiny JJ ship NN ship-to-surface NN shipboard NN shipboard-weapons NNS shipbuilder NN shipbuilders NNS shipbuilding NN shipload NN shipmate NN shipmates NNS shipment NN shipments NNS shipowners NNS shipped VBN shipper NN shippers NNS shipping VBG shipping-rate JJ ships NNS shipsets NNS shipshape JJ shipwreck NN shipwrecked JJ shipyard NN shipyards NNS shirk VB shirked VBN shirkers NNS shirking VBG shirt NN shirt-pocket NN shirt-sleeved JJ shirtfront NN shirtless JJ shirts NNS shirtsleeve NN shirtwaist NN shish NN shit NN shit-sick JJ shitt NN shiver NN shivered VBD shivering VBG shivers NNS shivery JJ shmaltzy NN sho UH shoals NNS shock NN shock-damping JJ shocked VBN shocker NN shocking JJ shockingly RB shockproof JJ shocks NNS shockwave NN shod JJ shoddy JJ shoe NN shoe-horn VB shoe-horned VBN shoe-string NN shoehorned VBN shoelace NN shoelaces NNS shoemaker NN shoemaking VBG shoes NNS shoestring NN shoestrings NNS shoji FW shone VBD shoo-in NN shooed VBN shooing VBG shook VBD shoot VB shoot-'em-up NN shoot-down NN shoot-out NN shooter NN shooters NNS shootin VBG shooting NN shootings NNS shootout NN shootouts NNS shoots VBZ shop NN shop-by-catalog JJ shop-till-you-drop JJ shopkeeper NN shopkeepers NNS shoplifters NNS shoplifting NN shopped VBN shopper NN shoppers NNS shopping NN shopping-center NN shopping-mall NN|JJ shops NNS shopworn JJ shore NN shored VBN shoreline NN shorelines NNS shores NNS shoring VBG shorn VB short JJ short-barrel NN short-changing JJ short-circuited VBD short-contact JJ short-covering NN short-cut JJ short-cutting JJ short-dated JJ short-dollar JJ short-haul JJ short-lived JJ short-of-war JJ short-range JJ short-run JJ short-sale JJ short-sell VB short-seller NN short-sellers NNS short-selling NN short-skirted JJ short-staffed JJ short-story NN short-term JJ short-time JJ short-to-medium JJ short-to-medium-range JJ short-wave JJ shortage NN shortages NNS shortcake NN shortchanged VBN shortchanging VBG shortcoming NN shortcomings NNS shortcovering NN shortcut NN shortcuts NNS shorted VBN shorten VB shortened VBN shortening VBG shorter JJR shorter-tenure JJ shorter-term JJ shortest JJS shortfall NN shortfalls NNS shorthand NN shorthanded JJ shorting VBG shortlived JJ shortly RB shortner NN shortness NN shorts NNS shortsighted JJ shortsightedness NN shortstop NN shortterm JJ shortwings NNS shot NN shot-up JJ shotgun NN shotguns NNS shots NNS shotshells NNS shouders NNS should MD should-be JJ should... : shouldda MD|VB shoulder NN shoulder-high JJ shoulder-to-shoulder JJ shouldered VBD shouldering VBG shoulders NNS shouldn't MD shout VB shouted VBD shouting VBG shouts VBZ shove VB shoved VBD shovel NN shoveled VBD shoveling VBG shovels NNS shoves VBZ shoving VBG show NN show-biz NN show-down NN show-offy JJ show-piece JJ show-stoppers NNS show\ NN showcase NN showcases NNS showcasing VBG showdown NN showed VBD shower NN showered VBN showerhead NN showering VBG showers NNS showgirls NNS showgrounds NNS showin NN showing VBG showings NNS showman NN showmanship NN showmen NNS shown VBN showpiece NN showroom NN showrooms NNS shows VBZ showy JJ shrank VBD shrapnel NN shred NN shredded JJ shredder NN shredding VBG shreds NNS shrewd JJ shrewder JJR shrewdest JJS shrewdly RB shrewish JJ shriek NN shrieked VBD shrieking NN shrieks NNS shrift NN shrill JJ shrilled VBD shrilling VBG shrillness NN shrilly RB shrimp NN shrimpers NNS shrimping NN shrine NN shrines NNS shrink VB shrinkage NN shrinking VBG shrinks VBZ shrivel VB shriveled VBN shroud VBP shrouded VBN shrouding VBG shrouds VBZ shrub NN shrub-covered JJ shrubbery NN shrubbery-lined JJ shrubs NNS shrug VB shrugged VBD shrugging VBG shrugs VBZ shrunk VBN shrunken JJ shtik NN shuck VB shucks UH shudder VB shuddered VBD shuddering VBG shudders NNS shuddery NN shuffle NN shuffled VBD shuffling VBG shuld MD shulde MD shun VB shunned VBD shunning VBG shuns VBZ shunt NN shunts NNS shut VBN shut-in JJ shut-off JJ shutdown NN shutdowns NNS shute VB shutoff NN shutout NN shuts VBZ shutter NN shuttered JJ shuttering VBG shutters NNS shutting VBG shuttle NN shuttle-busing NN shuttled VBD shuttles NNS shuttling VBG shvartze NN shy JJ shying VBG shyly RB sibilant JJ sibling NN siblings NNS sic RB sick JJ sick-building JJ sickened VBN sickening JJ sicker JJR sickish JJ sickle JJ sickliest JJS sickly JJ sickly-tolerant JJ sickness NN sickroom NN side NN side-arm NN side-by-side RB side-conclusions NNS side-crash JJ side-effects NNS side-looking JJ side-rack NN side-step VBP side-stepped VBD side-stepping JJ sidearms NNS sideboard NN sideboards NNS sidechairs NNS sided VBD sidekick NN sidelight NN sideline NN sideline-business JJ sidelined VBN sidelines NNS sidelining VBG sidelong JJ sideman NN sidemen NNS sides NNS sideshow NN sidestep VB sidestepped VBD sidestepping VBG sidesteps VBZ sidestreet NN sidetrack VB sidetracked VBD sidewalk NN sidewalks NNS sideways RB sidewinder NN sidewise RB siding NN sidings NNS sidle VB sidled VBD sieben FW siege NN sienna JJ siesta NN sieve NN sift VB sifted VBD sifting NN sigh NN sighed VBD sighing VBG sighs VBZ sight NN sight-seeing JJ sighted VBN sighting NN sightings NNS sights NNS sightseeing NN sightseers NNS sign NN sign-carrying JJ sign-language NN sign-off NN signal NN signal-intensity NN signal-processing JJ signal-to-noise JJ signaled VBD signaling VBG signalizes VBZ signalled VBD signalling VBG signals NNS signatories NNS signatory JJ signature NN signatures NNS signboard NN signboards NNS signed VBD signer NN signers NNS significance NN significant JJ significantly RB signified VBD signifies VBZ signify VB signifying VBG signing VBG signpost NN signposts NNS signs NNS sigue FW silence NN silenced VBN silences NNS silencing VBG silent JJ silently RB silhouette NN silhouetted VBN silhouettes NNS silica NN silica-glass NN silicate NN silicates NNS silicon NN silicone NN silk NN silk-stocking JJ silke NN silken JJ silkily RB silky JJ sill NN sillier JJR silliest JJS silliness NN silly JJ silo NN silos NNS silted VBN silvas FW silver NN silver-bearded JJ silver-blue JJ silver-conspiracy NN silver-gray JJ silver-haired JJ silver-painted JJ silversmith NN silverware NN silvery JJ simian JJ similar JJ similar-sized JJ similar-sounding JJ similarities NNS similarity NN similarly RB simile NN similiar JJ similitude NN simmer VB simmered VBN simmering VBG simperers NNS simple JJ simple-minded JJ simple-seeming JJ simpler JJR simples NNS simplest JJS simpleton NN simpliciter FW simplicities NNS simplicitude NN simplicity NN simplification NN simplified JJ simplifies VBZ simplify VB simplifying VBG simplistic JJ simply RB simulate VB simulated VBN simulates VBZ simulation NN simulations NNS simulator NN simulators NNS simulcasting VBG simultaneous JJ simultaneously RB sin NN sin-ned VB since IN sincere JJ sincerely RB sincerest JJS sincerity NN sind FW sine FW sinecure NN sinecures NNS sinews NNS sinewy JJ sinful JJ sinfulness NN sing VB sing-song NN singed VBD singer NN singers NNS singing VBG single JJ single-A JJ single-A-1 JJ single-A-1-plus NNP single-A-1\ NN single-A-2 JJ single-A-3 JJ single-A-minus JJ single-A-plus JJ single-A2 JJ single-A\ NN single-B JJ single-B-1 JJ single-B-2 JJ single-B-3 NNP single-B-minus JJ single-B-plus JJ single-D JJ single-adjudicator JJ single-barrel JJ single-cell JJ single-class JJ single-copy JJ single-country JJ single-crystal NN single-day JJ single-digit JJ single-domain JJ single-dose JJ single-employer JJ single-engine JJ single-family JJ single-firm JJ single-foot JJ single-handed JJ single-handedly RB single-home JJ single-issue JJ single-job JJ single-lane JJ single-level JJ single-lot JJ single-malt JJ single-market JJ single-minded JJ single-most-needed JJ single-owner JJ single-parent JJ single-party JJ single-payment JJ single-premium JJ single-room-occupancy JJ single-season JJ single-sentence JJ single-sex JJ single-shot JJ single-spaced JJ single-sponsor JJ single-step JJ single-store JJ single-valued JJ single-warhead NN singled VBD singlehandedly RB singleness NN singles NNS singling VBG singly RB sings VBZ singsonged VBD singular JJ singularity NN singularly RB sinister JJ sink VB sinkhole NN sinking VBG sinking-fund JJ sinks VBZ sinkt FW sinless JJ sinned VBN sinner NN sinners NNS sinners\/Who NN sinning NN sins NNS sinuous JJ sinuously RB sinuousness NN sinus NN sinuses NNS sinusoidal JJ sinusoids NNS sip NN siphon VB siphoned VBD siphoning VBG siphons NNS sipped VBD sippers NNS sipping VBG sir NN sired VBN siren JJ sirens NNS sirloin NN sis NN sister NN sister-in-law NN sisters NNS sisters-in-law NNS sit VB sit-down JJ sit-in NN sit-ins NNS sitcom NN sitcoms NNS site NN site-development NN sites NNS siting NN sits VBZ sitter NN sitters NNS sitting VBG sittings NNS situ FW situated VBN situation NN situations NNS situs NN six CD six-bottle JJ six-cent JJ six-cent-a-share JJ six-count JJ six-county JJ six-cylinder JJ six-day JJ six-dollar JJ six-figure JJ six-fold RB six-foot JJ six-foot-four JJ six-footer NN six-four CD six-gallon JJ six-game JJ six-hour JJ six-inch JJ six-inch-square JJ six-lane JJ six-man JJ six-mile JJ six-minute JJ six-month JJ six-months NNS six-packs NNS six-person JJ six-point JJ six-shooter NN six-story JJ six-thirty JJ six-time JJ six-ton JJ six-week JJ six-week-long JJ six-week-old JJ six-year JJ six-year-old JJ sixfold RB sixteen CD sixteen-year-old JJ sixteenth JJ sixth JJ sixth-biggest JJ sixth-grade JJ sixth-largest JJ sixth-sense NN sixties NNS sixty CD sixty-day JJ sixty-eight CD sixty-five CD sixty-five-mile JJ sixty-nine CD sixty-one CD sixty-two CD sizable JJ size NN sizeable JJ sized VBD sizenine JJ sizes NNS sizing NN sizzle NN sizzled VBD sizzles VBZ sizzling JJ skate VB skateboards NNS skates NNS skating VBG skeet NN skein NN skeletal JJ skeleton NN skeletons NNS skeptic NN skeptical JJ skeptically RB skepticism NN skeptics NNS sketch NN sketchbook NN sketched VBN sketches NNS sketchiest JJS sketching VBG sketchy JJ skew VB skewed VBN skewer NN ski NN ski-industry NN ski-joring NN skid NN skid-row NN skidded VBD skidding VBG skiddy JJ skids NNS skier NN skiers NNS skies NNS skiff NN skiffs NNS skiing NN skiis NNS skilful JJ skilfully RB skill NN skill-dilution JJ skilled JJ skilled-nursing JJ skillet NN skillful JJ skillfully RB skillfulness NN skills NNS skim VB skim-milk NN skimmed VBD skimmers NNS skimming VBG skimp VB skimpy JJ skims VBZ skin NN skin-care JJ skin-perceptiveness NN skindive VB skindiving VBG skinfolds NNS skinhead NN skinheads NNS skinless JJ skinnin NN skinning NN skinny JJ skins NNS skip VB skip-a-month JJ skipped VBD skipper NN skippering VBG skippers NNS skipping VBG skips VBZ skirmish NN skirmished VBD skirmishers NNS skirmishes NNS skirmishing NN skirt NN skirted VBN skirting VBG skirts NNS skis NNS skit NN skits NNS skittish JJ skittishness NN skivvies NNS skouting VBG skulk VB skull NN skull-bashings NNS skullcap NN skulls NNS skunk NN skunks NNS sky NN sky-carving JJ sky-high JJ sky-reaching JJ sky-tapping JJ skyjacked VBN skyjackers NNS skylarking VBG skylight NN skylights NNS skyline NN skyrocket VB skyrocketed VBD skyrocketing VBG skyscraper NN skyscrapers NNS skyward RB skywave NN sl UH slab NN slabs NNS slack JJ slacken VB slackened VBD slackening VBG slacking VBG slackjawed VBN slacks NNS sladang NN slag NN slain VBN slaked VBN slam NN slam-dunk NN slammed VBD slammer NN slamming VBG slams VBZ slander NN slanderer NN slanderous JJ slanders NNS slang NN slangy-confidential JJ slant NN slant-wise JJ slanted VBN slanting VBG slants VBZ slap VB slapped VBD slapping VBG slaps VBZ slapstick NN slash VB slash-mouthed JJ slashed VBD slasher NN slashes NNS slashing VBG slat NN slate NN slated VBN slats NNS slatted JJ slaughter NN slaughtered VBN slaughterhouse NN slaughtering VBG slaughters VBZ slave NN slave-laborers NNS slave-owners NNS slavered VBD slavery NN slaves NNS slavish JJ slavishly RB slaw NN slaying NN slayings NNS sleaze NN sleazebag NN sleazy JJ sledding NN sleek JJ sleek-headed JJ sleep VB sleep-deprived JJ sleep-disorder JJ sleep-wakefulness NN sleeper NN sleepily RB sleeping VBG sleepless JJ sleeplessly RB sleeplessness NN sleeps VBZ sleepwalk NN sleepwalked VBD sleepwalker NN sleepwalkers NNS sleepwalking VBG sleepy JJ sleet NN sleeve NN sleeves NNS sleighs NNS sleight NN slender JJ slender-waisted JJ slenderer JJR slept VBD sleuth NN sleuthing NN slew NN slice NN sliced VBN slices NNS slicing VBG slick JJ slick-headed JJ slick-talking JJ slicker NN slickers NNS slickly RB slid VBD slide NN slide-lock NN slide-packs NNS slides NNS sliding VBG sliding-rate JJ slight JJ slighted JJ slighter JJR slightest JJS slighting VBG slightly RB slightly-smoking JJ slights NNS slighty NN sligthly RB slim JJ slim-waisted JJ slime NN slimed VBN slimly RB slimmed VBN slimmed-down JJ slimmer JJR slimmer-than-expected JJ slimming VBG slimy JJ sling NN slingers NNS slinging VBG slings NNS slingshot NN slinky JJ slip VB slippage NN slipped VBD slipper NN slippers NNS slippery JJ slipping VBG slips NNS slipshod JJ slipstream NN slit NN slithered VBD slithering VBG slithers VBZ slits NNS slitter NN slitters NNS sliver NN sliver-like JJ slivered VBN slivers NNS slivery NN slo-mo JJ slob NN sloe NN sloe-eyed JJ slog VB slogan NN sloganeering VBG slogans NNS slogging VBG slogs VBZ sloop NN slop NN slop-bucket NN slope NN slopes NNS sloping VBG slopped VBD sloppily RB sloppiness NN slopping VBG sloppy JJ slosh VB sloshed VBD sloshing VBG slot NN slothful JJ slots NNS slotted VBN slouch NN slouches VBZ slouchy JJ slough VB slovenliness NN slovenly JJ slow JJ slow-acting JJ slow-baked JJ slow-bouncing JJ slow-building JJ slow-firing JJ slow-growing JJ slow-growth NN slow-motion JJ slow-moving JJ slow-scrambling JJ slow-selling JJ slow-spending JJ slow-startup JJ slowball NN slowdown NN slowdowns NNS slowed VBD slower JJR slower-than-anticipated JJ slower-than-expected JJ slowest JJS slowing VBG slowly RB slowly-mending JJ slowness NN slows VBZ sludge NN sludge-covered JJ slug NN slug-kebab NN slugfest NN slugged VBD slugger NN sluggers NNS slugging VBG sluggish JJ sluggishly RB sluggishness NN slugs NNS sluice NN sluiced VBD sluicehouse NN sluices NNS sluicing VBG slum NN slumber NN slumbered VBD slumbering VBG slumlord NN slump NN slumped VBD slumping VBG slumps VBZ slums NNS slung VBD slurped VBD slurries NNS slurry NN slurs NNS slush NN sly JJ slyly RB slyness NN smack RB smacked VBD smacking VBG smacks VBZ small JJ small-appearing JJ small-arms JJ small-boat NN small-business NN small-cap JJ small-capitalization JJ small-car NN small-city NN small-company NN small-company-stock NN small-denomination NN small-diameter JJ small-employer NN small-equipment NN small-fry JJ small-game JJ small-incision NN small-investor NN small-lot JJ small-office JJ small-scale JJ small-screen JJ small-stock NN small-time JJ small-to-medium-sized JJ small-town JJ small... : smaller JJR smaller-capital JJ smaller-size JJ smaller-than-average JJ smaller-than-expected JJ smallest JJS smallish JJ smallness NN smallpox NN smalltime JJ smarmy JJ smart JJ smarted VBD smarter RBR smartest JJS smarting VBG smartly RB smarts VBZ smash NN smash-'em-down JJ smashed VBD smashed-out JJ smasher NN smashing JJ smattering NN smatterings NNS smear NN smeared VBN smell NN smelled VBD smelling VBG smells VBZ smelly JJ smelt VBD smelter NN smelters NNS smelts NNS smidgen NN smidgins NNS smile NN smiled VBD smiles NNS smiling VBG smilingly RB smirk NN smirked VBD smithereens NNS smithy NN smitten VBN smock NN smocks NNS smog NN smog-ridden JJ smoggiest JJS smoggy JJ smokable JJ smoke NN smoke-choked JJ smoke-filled JJ smoke-stained JJ smoked VBD smoked-ham NN smokehouse NN smokeless JJ smoker NN smokers NNS smokes VBZ smokescreen NN smokescreens NNS smokestack NN smoking NN smoking-cessation NN smoking-related JJ smoky JJ smolder VBP smoldered VBD smoldering VBG smolderingly RB smolders VBZ smooching VBG smooth JJ smooth-speaking JJ smoothbore NN smoothed VBD smoothed-muscled JJ smoother JJ smoothest JJS smoothing VBG smoothly RB smoothness NN smorgasbord NN smother VB smothered VBD smothering VBG smudge NN smudged JJ smug JJ smuggle VB smuggled VBN smuggler NN smugglers NNS smuggling VBG snack NN snack-food NN snacked VBD snacks NNS snafu NN snafus NNS snag NN snag'em NN snagged VBN snagging VBG snags NNS snail NN snail-like JJ snails NNS snake NN snake-charmer NN snake-like JJ snake-oil JJ snake-rail JJ snaked VBD snakes NNS snakestrike NN snaking VBG snap VB snap-in JJ snap-on JJ snapback NN snapdragons NNS snapped VBD snapper NN snapping VBG snappy JJ snaps VBZ snapshot NN snapshots NNS snare VB snared VBN snaring VBG snarl NN snarled VBD snarling VBG snarls NNS snatch VB snatched VBD snatches NNS snatching VBG snazzier JJR snazzy JJ sneak VB sneaked VBD sneaker NN sneakers NNS sneaking VBG sneaks VBZ sneaky JJ sneer NN sneered VBD sneering VBG sneers VBZ sneezed VBD sneezing VBG snick NN snickered VBD snickers NNS snidely RB sniff VB sniffed VBD sniffers NNS sniffing VBG sniffs VBZ sniffy JJ sniggered VBD sniggeringly RB snipe VB sniped VBD sniper NN snipes VBZ sniping NN snippets NNS snippy JJ snips NNS snitched VBN sniveling VBG snivelings NNS snob NN snob-clannish JJ snobbery NN snobbish JJ snobbishly RB snobs NNS snooker NN snoop VB snooping VBG snooty JJ snoozing VBG snoring VBG snorkle NN snort VB snorted VBD snorting NN snorts VBZ snotty JJ snout NN snouts NNS snow NN snow-covered JJ snow-fence NN snow-white JJ snowball NN snowballed VBD snowballs NNS snowbirds NNS snowdrift NN snowed VBD snowfall NN snowflakes NNS snowing VBG snowman NN snowplow NN snows NNS snowstorm NN snowsuit NN snowy JJ snub VB snubbed VBN snubbing VBG snuck VBD snuff VB snuffboxes NNS snuffed VBN snuffer NN snug JJ snug-fitting JJ snuggled VBD snugly RB so RB so-called JJ so-far JJ so-so JJ soak VB soak-the-rich JJ soaked VBN soaking VBG soap NN soapbox NN soaps NNS soapsuds NNS soapy JJ soar VB soared VBD soaring VBG soars NNS sob VB sob-wallow NN sobbed VBD sobbing VBG sobbingly RB sober JJ sober-faced JJ sobered VBN sobering VBG soberly RB sobriety NN sobriquet NN sobs NNS socal JJ socalled JJ soccer NN sociability NN sociable JJ social JJ social-action NN social-affairs NNS social-class JJ social-climbing JJ social-economic JJ social-issue JJ social-political-economical JJ social-register JJ social-role NN social-security NN social-services JJ social-studies NN social-welfare JJ socialism NN socialist JJ socialistic JJ socialists NNS socialite NN socialites NNS sociality NN socialization NN socialize VB socialized VBN socializes VBZ socializing VBG socially RB socially-oriented JJ societal JJ societies NNS society NN society-measured VBN societyonly RB socio-archaeological JJ socio-economic JJ socio-political JJ socio-structural JJ socioeconomic JJ socioeconomically RB sociological JJ sociologically RB sociologist NN sociologists NNS sociology NN sociopath NN sock NN sockdologizing VBG socked VBD socket NN sockets NNS socking VBG socks NNS sod NN soda NN sodas NNS sodden JJ soddenly RB soddies NNS sodium NN sodomy NN sods NNS soe NN sofa NN sofar RB sofas NNS soft JJ soft-cookie NN soft-currency JJ soft-drink NN soft-drinks NNS soft-headed JJ soft-hearted JJ soft-heartedness NN soft-landing JJ soft-looking JJ soft-rock JJ soft-shell JJ soft-shoe JJ soft-spoken JJ softball NN softdrink NN soften VB softened VBD softener NN softening VBG softens VBZ softer JJR softest JJS softies NNS softly RB softness NN software NN software-development NN software-industry JJ software-installation NN softwood JJ softy NN soggier NN soggy JJ sogo-shosha NN soil NN soil-bearing JJ soil-nutrients NNS soil-removal JJ soiled VBN soils NNS soirees NNS sojourn NN sojourner NN sojourners NNS solace NN solaced VBN solar JJ solar-cell JJ solar-corpuscular-radiation NN solar-electromagnetic NN solar-power JJ solar-radiation NN solar-wind NN solarheated JJ sold VBN sold-out JJ solder JJ soldered VBN soldering JJ soldier NN soldier-masters NNS soldiering NN soldierly RB soldiers NNS soldiery NN soldout NN sole JJ solecism NN solely RB solemn JJ solemnity NN solemnly RB solenoid NN soles NNS solicit VB solicitation NN solicitations NNS solicited VBD soliciting VBG solicitor NN solicitors NNS solicitous JJ solicitousness NN solicits VBZ solicitude NN solid JJ solid-fueled JJ solid-gold JJ solid-muscle JJ solid-state JJ solid-waste NN solidarity NN solidified VBD solidifies VBZ solidify VB solidifying VBG solidity NN solidly RB solids NNS solipsism NN solitary JJ soliticitations NNS solitude NN solitudes NNS solo NN soloist NN soloists NNS solos NNS solstice NN soluble JJ solution NN solution-type JJ solutions NNS solvable JJ solvating VBG solve VB solved VBN solvency NN solvent JJ solvents NNS solves VBZ solving VBG soma NN somatic JJ somatostatin NN somber JJ somberly RB sombre JJ some DT some... : somebody NN someday RB somehow RB someone NN someplace RB somersault NN somersaulting JJ somersaults NNS somethin NN something NN something... : sometime RB sometimes RB sometimes-aggressive JJ sometimes-exhausting JJ sometimes-necessary JJ sometimes-tawdry JJ somewhat RB somewhat-ambiguous JJ somewhere RB somewheres RB sommelier FW somnambulates VBZ somnambulism NN somnolence NN somnolent JJ sompin NN son NN son-in-law NN son-of-a-bitch NN son-of-exchange JJ sonar NN sonata NN sonatas NNS song NN song-writing NN songbirds NNS songbook NN songful JJ songs NNS songwriters NNS sonic JJ sonnet NN sonnets NNS sonny NN sonny-boy NN sonobuoy NN sonofabitch NN sonogram NN sonorities NNS sonority NN sonorous JJ sons NNS sons-in-law NNS soo IN soon RB soon-to-be JJ soon-to-be-sold JJ soon-to-expire JJ sooner RBR soonest JJS sooo RB soot NN soot-stained JJ soothe VB soothed VBD soothing VBG soothingly RB soothsayers NNS sooty JJ sop NN sophisticate NN sophisticated JJ sophisticates NNS sophistication NN sophists NNS sophomore NN sophomores NNS sophomoric JJ soporific JJ sopping JJ soprano NN sopranos NNS sops NNS sor'l NN sorbed VBN sorcery NN sordid JJ sore JJ sore-ridden JJ soreheads NNS sorely RB sorely-needed JJ soreness NN sores NNS sorest JJS sorghum NN sororities NNS sorority NN sorption NN sorption-desorption NN sorrel JJ sorrier JJR sorriest JJS sorrow NN sorrowful JJ sorrows NNS sorry JJ sort NN sorted VBN sortie NN sorting VBG sorting-out NN sorts NNS sou FW soubriquet FW souffle NN sought VBD souk NN soul NN soul-searching NN souled JJ soulful JJ soulfully RB soulless JJ soulmates NNS souls NNS sound NN sound-alike JJ sound-truck JJ sound\ JJ sounded VBD sounder JJR sounding VBG soundings NNS soundly RB soundness NN soundproof JJ sounds VBZ soundtrack NN soup NN soup-to-nuts JJ souped-up JJ soups NNS soupy JJ sour JJ source NN sources NNS sourcing NN sourdough JJ soured VBD souring NN sourly RB sours VBZ soutane NN south RB south-central JJ south-eastern JJ south-of-the-border JJ southbound JJ southeast RB southeastern JJ southerly JJ southern JJ southern-central JJ southernisms NNS southernmost JJ southpaw NN southward RB southwest RB southwestern JJ souvenir NN souvenirs NNS sovereign JJ sovereigns NNS sovereignty NN soviet JJ soviets NNS sow VBP sowbelly NN sowed VBD sowered VBD sowing NN sown VBN sows VBZ soy NN soyaburgers NNS soybean NN soybean-meal NN soybeans NNS sp NN spa NN space NN space-age JJ space-based JJ space-buying NN space-defense JJ space-rocket NN space-science NN space-shuttle NN space-station NN space-systems NNS space-time JJ space-weapons NNS spaceborn JJ spacecraft NN spaced VBN spacer NN spacers NNS spaces NNS spaceship NN spaceships NNS spacesuit NN spacesuits NNS spacing NN spacings NNS spacious JJ spaciousness NN spackle VB spade NN spades NNS spaghetti NNS span NN spandex NN spandrels NNS spangle NN spaniel NN spaniel-like JJ spanking JJ spanned VBN spanner NN spanning VBG spans VBZ spare JJ spare-parts JJ spared VBN spares NNS sparing VBG sparingly RB spark VB sparked VBN sparking VBG sparkle NN sparkled VBD sparkles VBZ sparkling JJ sparkplugs NNS sparks VBZ sparred VBD sparring VBG sparrow NN sparrows NNS sparse JJ sparsely RB spas NNS spasm NN spasms NNS spat VBD spate NN spatial JJ spatially RB spats NNS spatter NN spattered VBN spatula NN spavined JJ spawn VB spawned VBD spawning VBG spawns VBZ speak VB speak-easy NN speaker NN speakers NNS speakin VBG speaking VBG speaks VBZ spear NN spear-throwing JJ speared VBD spearhead VB spearheaded VBD spearheading VBG special JJ special-edition JJ special-interest JJ special-projects JJ special-purpose JJ special-service JJ special-technology NN specialist NN specialist-credit JJ specialist-firm JJ specialists NNS speciality NN specialization NN specialize VB specialized JJ specialized-engineering JJ specializes VBZ specializing VBG specially RB specially-designated JJ specially-designed JJ specially-trained JJ specials NNS specialties NNS specialty NN specialty-cheese JJ specialty-chemical NN specialty-chemicals NNS specialty-machinery NN specialty-material JJ specialty-metals NNS specialty-printing JJ specialty-retail JJ specialty-store NN specie FW species NN species-dependent JJ specific JJ specifically RB specification NN specifications NNS specificity NN specifics NNS specified VBN specifies VBZ specify VB specifying VBG specimen NN specimens NNS specimentalia NN specious JJ speck NN speckled JJ speckles NNS specks NNS specs NNS spectacle NN spectacles NNS spectacular JJ spectacularly RB spectator NN spectator-type JJ spectators NNS specter NN specters NNS spectra NNS spectral JJ spectrally RB spectre NN spectrometer NN spectrometric JJ spectrophotometer NN spectrophotometric JJ spectroscopy NN spectrum NN speculate VB speculated VBD speculates VBZ speculating VBG speculation NN speculations NNS speculative JJ speculative-grade JJ speculatively RB speculator NN speculators NNS sped VBD speech NN speech-making NN speeches NNS speechless JJ speechlessness NN speechwriters NNS speechwriting NN speed NN speed-up JJ speedboat NN speeded VBD speeded-up JJ speedier JJR speedily RB speeding VBG speedometer NN speeds NNS speedup NN speedway NN speedy JJ spell VB spell-binding JJ spellbound VBN spelled VBN spellers NNS spelling NN spelling-only JJ spells VBZ spend VB spend-now JJ spender NN spenders NNS spending NN spends VBZ spendthrifts NNS spent VBD sperm NN spew VBP spewed VBD spewing VBG spewings NNS sphere NN spheres NNS spherical JJ spherules NNS sphynxes NNS spic NN spice NN spice-laden JJ spiced JJ spices NNS spicing VBG spicy JJ spider NN spider-leg JJ spiders NNS spidery JJ spied VBD spiel NN spies NNS spiffing JJ spiffy JJ spigots NNS spike NN spike-haired JJ spiked JJ spikes NNS spill NN spill-cleanup NN spill-related JJ spilled VBD spilling VBG spillover NN spills NNS spin VB spin-off NN spinach NN spinal JJ spindle NN spindled VBD spine NN spine-chilling JJ spineless JJ spinnability NN spinneret NN spinning VBG spinoff NN spinoffs NNS spins VBZ spinster NN spiral NN spiraled VBD spiraling VBG spiralis NNS spiralled VBD spirals NNS spire NN spires NNS spirit NN spirit-gum NN spirited JJ spiritless JJ spirits NNS spiritual JJ spirituality NN spiritually RB spirituals NNS spit VB spite NN spitfire NN spits VBZ spitting VBG spittle NN splash NN splashed VBD splashes VBZ splashing VBG splashy JJ splattered VBN splayed VBD spleen NN spleen-crushing JJ splendid JJ splendidly RB splendor NN splenetic JJ splice NN spliced VBN splices VBZ splicing VBG splinter NN splintered JJ splinters NNS splintery NN splints NNS split NN split-bamboo JJ split-finger NN split-fingered JJ split-level JJ split-up NN splits NNS splitting NN splotch NN splotched JJ splotches NNS splurge NN spoil VB spoilables NNS spoilage NN spoiled VBN spoiler NN spoiling VBG spoils NNS spoke VBD spokeman NN spoken VBN spokes NNS spokesman NN spokesmen NNS spokesperson NN spokespersons NNS spokeswoman NN spokewoman NN sponge NN sponged VBD sponges NNS sponging NN spongy JJ sponsor NN sponsored VBN sponsoring VBG sponsors NNS sponsorship NN sponsorships NNS spontaneity NN spontaneous JJ spontaneously RB spoof NN spook VBP spooked VBN spookiest JJS spooks NNS spooky JJ spoon NN spoon-fed JJ spoon-feed VB spoonbills NNS spooned VBD spoonful NN spoonfuls NNS spoons NNS sporadic JJ sporadically RB spores NNS sport NN sport-utility JJ sported VBD sportiest JJS sportif FW sportin VBG sporting VBG sporting-goods NNS sports NNS sports-and-entertainment JJ sports-apparel JJ sports-functions NNS sports-oriented JJ sports-related JJ sportsman NN sportsmanship NN sportsmen NNS sportswear NN sportswriter NN sporty JJ sposed JJ spot NN spot-checking NN spot-market JJ spot-news NNS spot-promoted NN spot-television JJ spotchecks NNS spotless JJ spotlight NN spotlighted VBN spotlighting VBG spotlights VBZ spots NNS spots... : spotted VBD spotting VBG spotty JJ spousal JJ spousal-notification NN spouse NN spouses NNS spout NN spouted VBD spouting VBG sprained VBN spraining VBG sprains NNS sprang VBD sprawl NN sprawled VBN sprawling VBG spray NN spray-dried JJ sprayed VBN spraying NN sprays NNS spread NN spread-eagled VBN spread-out JJ spread-sensitive JJ spreader NN spreading VBG spreads VBZ spreadsheet NN spreadsheets NNS spree NN sprig NN sprightly JJ spring NN spring-back JJ spring-brake NN spring-early JJ spring-joints NN spring-training NN springboard NN springing VBG springs NNS springtime NN sprinkle VB sprinkled VBD sprinkler NN sprinklers NNS sprinkles VBZ sprinkling NN sprint NN sprinted VBD sprinting VBG spritzers NNS sprout VBP sprouted VBD sprouting VBG sprouts NNS spruce NN spruced VBN sprue NN sprung VBN spuds NNS spume NN spun VBN spun-off JJ spunky NN spur VB spur-of-the-moment JJ spurious JJ spurn VBP spurned VBN spurning VBG spurns VBZ spurred VBN spurring VBG spurs NNS spurt NN spurted VBD spurting VBG spurts NNS sputnik NN sputniks NNS sputter VB sputtered VBD sputtering JJ sputters VBZ spy NN spy-chaser NN spy-chasing NN spy-in-training NN spy-plane NN spyglass NN spying VBG sq JJ sq. JJ squabble NN squabbled VBD squabbles NNS squabbling NN squad NN squadron NN squadrons NNS squadroom NN squads NNS squalid JJ squall NN squalls NNS squalor NN squamous JJ squander VB squandered VBN squandering VBG square NN square-built JJ square-foot JJ square-mile JJ squared JJ squarefoot JJ squarely RB squares NNS squaring VBG squash NN squashed JJ squashed-looking JJ squashing VBG squashy JJ squat JJ squatted VBD squatter NN squatters NNS squatting VBG squaw NN squawk VB squeak NN squeaked VBD squeaking NN squeaks VBZ squeaky JJ squeaky-clean JJ squeal VB squealed VBD squealing VBG squeals NNS squeamish JJ squeamishness NN squeegee VBP squeeze NN squeeze-out NN squeezed VBN squeezes VBZ squeezing VBG squelch VBP squelched VBN squibs NNS squid NN squiggly RB squint VBP squinted VBD squinting VBG squire NN squires NNS squirmed VBD squirming VBG squirms VBZ squirmy JJ squirrel NN squirreled VBN squirreling VBG squirt NN squirted VBD squirting VBG squished VBN st NN stab NN stabbed VBD stabbing VBG stabilities NNS stability NN stabilization NN stabilize VB stabilized VBN stabilizer NN stabilizers NNS stabilizes VBZ stabilizing VBG stabilizing-conserving JJ stable JJ stable-garage NN stabled VBD stableman NN stables NNS stabs NNS staccato NN staccatos NNS stack NN stacked VBN stacker NN stackers NNS stacking VBG stacks NNS stadium NN stadiums NNS staf NN staff NN staff-cutting VBG staff-reduction NN staff-written JJ staff... : staffed VBN staffer NN staffers NNS staffing VBG staffs NNS stag NN stage NN stage-managing NN stage-plays NNS stagecoach NN stagecoaches NNS staged VBD stagemate NN stager NN stages NNS stagewhispers VBZ stagflation NN stagger VB staggered VBD staggering JJ staggeringly RB staginess NN staging VBG stagnant JJ stagnated VBD stagnating VBG stagnation NN stags NNS staid JJ stain NN stain-resistant JJ stained VBN stained-glass NN staining NN stainless JJ stainless-steel JJ stains NNS stair NN stair-step JJ stair-well NN staircase NN staircases NNS stairs NNS stairway NN stairways NNS stairwells NNS stake NN stake-building VBG stake-holding JJ stake-out NN stakebuilding VBG staked VBN stakes NNS stale JJ stale-cigarette NN stalemate NN stalk VBP stalked VBD stalking VBG stalks NNS stall NN stalled VBN stalling VBG stallion NN stalls NNS stalwart JJ stalwarts NNS stamens NNS stamina NN staminate JJ stammered VBD stamp NN stamped VBN stampede NN stampeded VBN stamping VBG stampings NNS stamps NNS stance NN stances NNS stanch VB stanchest JJS stand VB stand-alone JJ stand-by JJ stand-in NN stand-ins NNS stand-off JJ stand-still JJ stand-up JJ stand-ups NNS standard JJ standard-bearer NN standard-issue JJ standard-setting JJ standard-weight JJ standardize VB standardized JJ standardizing VBG standards NNS standby JJ standbys NNS standeth VBP standin NN standing VBG standing-room NN standing-room-only JJ standoff NN standout NN standpoint NN stands VBZ standstill JJ standup JJ stanza-form NN staph NN staphylococcal JJ staphylococcus NN staple NN staples NNS stapling NN star NN starboard VB starch NN starched VBN starches NNS starchiness NN starchy JJ stardom NN stare VB stared VBD stares NNS staring VBG stark JJ starker JJR starkly RB starlet NN starlight NN starre NN starred VBD starring VBG starry-eyed JJ stars NNS starstruck JJ start VB start-up JJ start-ups NNS started VBD starter NN starters NNS startin VBG starting VBG startle VB startled VBN startled-horse JJ startling JJ startlingly RB starts VBZ startup NN startups NNS starvation NN starve VB starved VBN starving VBG stash VB stashed VBN stasis NN stat NN state NN state's-responsibility JJ state-administered JJ state-appointed JJ state-approved JJ state-building NN state-centered JJ state-chartered JJ state-controlled JJ state-court NN state-directed JJ state-dominated JJ state-federal JJ state-funded JJ state-law NN state-level JJ state-local JJ state-mandated JJ state-of-the-art JJ state-of-the-market JJ state-owned JJ state-plan JJ state-private JJ state-produced JJ state-provided JJ state-registered JJ state-run JJ state-sector JJ state-sponsored JJ state-subsidized JJ state-supervised JJ state-supported JJ state-trading JJ stated VBN statehood NN statehooders NNS stateless JJ stately JJ statement NN statements NNS stateroom NN states NNS statesman NN statesmanlike JJ statesmanship NN statesmen NNS statewide JJ static JJ stating VBG station NN stationary JJ stationed VBN stationery NN stationing VBG stationmaster NN stations NNS statism NN statist JJ statistic NN statistical JJ statistically RB statistician NN statisticians NNS statistics NNS statistics-keepers NNS stator NN stats NNS statu FW statuary NN statue NN statues NNS statuette NN stature NN status NN status-conscious JJ status-dropout NN status-roles NNS status. NN statuses NNS statute NN statutes NNS statutorily RB statutory JJ staunch JJ staunchest JJS staunchly RB stave VB staved VBN staves VBZ stay VB stay-at-home JJ stayed VBD staying VBG stays VBZ stead NN steadfast JJ steadfastly RB steadfastness NN steadied VBD steadier JJR steadily RB steadiness NN steady JJ steady-Eddies NNS steady-state JJ steadying JJ steak NN steakhouse NN steaks NNS steal VB stealer NN stealin VBG stealing VBG steals VBZ stealth NN stealthily RB stealthy JJ steam NN steam-baths NNS steam-generating NN steam-generation JJ steamboat NN steamed VBN steamer NN steamers NNS steamier JJR steamily RB steaming VBG steamroller NN steams VBZ steamship NN steamships NNS steed NN steel NN steel-casting JJ steel-edged JJ steel-exporting JJ steel-flanged JJ steel-gray JJ steel-hulled JJ steel-hungry JJ steel-import JJ steel-ingot NN steel-making JJ steel-quota NN steel-recycling JJ steel-reinforced JJ steel-related JJ steel-rod NN steel-service-center NN steel-stock NN steel-toothed JJ steeled VBN steelmaker NN steelmakers NNS steelmaking NN steels NNS steelworkers NNS steely JJ steep JJ steeped VBN steeper JJR steepest JJS steeple NN steeples NNS steeply RB steepness NN steer VB steered VBD steering NN steers VBZ stein NN stellar JJ stem VB stemmed VBD stemming VBG stems VBZ stench NN stenography NN stentorian JJ steoreotyped JJ step NN step-by-step JJ step-father NN step-up NN stepchild NN stepchildren NN stepgrandmother NN stephanotis NN stepladders NNS stepmother NN stepmothers NNS stepped VBD stepped-up JJ steppes NNS stepping VBG steppingstone NN steprelationship NN steps NNS stepson NN stepwise RB stereo NN stereo-sound JJ stereophonic JJ stereos NNS stereotype NN stereotyped JJ stereotypes NNS stereotypical JJ stereotypically RB sterile JJ steriles NNS sterility NN sterility-assurance NN sterilization NN sterilize VB sterilized VBN sterilizer NN sterilizing VBG sterios NNS sterling NN stern JJ stern-to RB sternal JJ sternly RB sterno-cleido NN sterns NNS sternum NN steroid JJ steroid-induced JJ steroids NNS stethoscope NN stevedore NN stew NN steward NN stewardess NN stewardesses NNS stewards NNS stewardship NN stewed JJ stews NNS stfu UH stick VB stick-and-carrot NN sticker NN sticker-shock NN stickers NNS stickier JJR stickiness NN sticking VBG stickler NN sticklike JJ stickman NN stickpin NN sticks NNS sticky JJ sticky-fingered JJ sticle VB stiff JJ stiff-backed JJ stiffed VBD stiffen VB stiffened VBD stiffening NN stiffens VBZ stiffer JJR stiffest JJS stiffing VBG stiffly RB stiffnecked JJ stiffness NN stiffs NNS stifle VB stifled VBD stifles VBZ stifling VBG stigma NN stigmatizes VBZ stiletto NN still RB still-building JJ still-commanding JJ still-continuing JJ still-dark JJ still-daylighted JJ still-healthy JJ still-limited JJ still-mammoth JJ still-new JJ still-outstanding JJ still-punishing JJ still-raging VBG still-ravaged JJ still-secret JJ still-ticking JJ still-to-be-named JJ still-uncalculated JJ still-undeveloped JJ still... : stillbirths NNS stillness NN stills NNS stilted JJ stilts NNS stimulant NN stimulants NNS stimulate VB stimulated VBN stimulates VBZ stimulating VBG stimulation NN stimulations NNS stimulative JJ stimulator NN stimulators NNS stimulatory JJ stimuli NNS stimulus NN sting NN stingier JJR stinging JJ stingrays NNS stings NNS stingy JJ stink NN stinkin JJ stinking VBG stinkpotters NNS stinks VBZ stint NN stints NNS stipends NNS stippled JJ stipulate VBP stipulated VBD stipulates VBZ stipulation NN stipulations NNS stir VB stirke NN stirling JJ stirred VBD stirrin VBG stirring VBG stirringly RB stirrings NNS stirrup NN stirrup-guard NN stirrups NNS stirs VBZ stirups NNS stitch NN stitched VBN stitches NNS stitching NN stochastic JJ stock NN stock-appreciation NN stock-appreciation-based JJ stock-basket NN stock-conspiracy NN stock-exchange NN stock-for-debt JJ stock-fraud NN stock-fund JJ stock-holding JJ stock-in-trade NN stock-index NN stock-index-futures NNS stock-investing JJ stock-loan NN stock-manipulation NN stock-margin JJ stock-market NN stock-option NN stock-optioned JJ stock-options NNS stock-ownership JJ stock-pickers NNS stock-picking JJ stock-price JJ stock-purchase JJ stock-quote JJ stock-registration NN stock-related JJ stock-repurchase JJ stock-selection JJ stock-specialist JJ stock-swap JJ stock-taking NN stock-trader NN stock-trading NN stock-warrant NN stock-watch JJ stockade NN stockbroker NN stockbrokerage NN stockbrokers NNS stockbuilding VBG stocked VBN stockholder NN stockholder-owned JJ stockholders NNS stockholders... : stockholding VBG stockholdings NNS stocking VBG stockings NNS stockmarket NN stockpickers NNS stockpile NN stockpiled VBN stockpiles NNS stockpiling NN stockroom NN stocks NNS stocks-boosted NN stocks-index JJ stocky JJ stockyards NNS stockynges NNS stodgy JJ stoicaly RB stoicism NN stoke VB stoked VBN stoker NN stoking VBG stole VBD stolen VBN stolid JJ stolid-looking JJ stolidly RB stomach NN stomach-belly NN stomach-churning JJ stomachs NNS stomachwise RB stomack NN stomped VBD stomping VBG stone NN stone-age JJ stone-blind JJ stone-gray JJ stone-still JJ stoned VBN stonelike JJ stonemason NN stones NNS stonewalled VBD stoneware NN stonework NN stonily RB stony JJ stony-meteorite JJ stood VBD stooges NNS stool NN stools NNS stooooomp VB stoop VB stooped VBD stooping VBG stop VB stop-and-start JJ stop-gap JJ stop-limit JJ stop-loss NN stop-motion JJ stop-overs NNS stop-payment NN stop-shipment JJ stop-work JJ stopgap NN stopover NN stopovers NNS stoppage NN stoppages NNS stopped VBD stopper NN stopping VBG stopping-point NN stops VBZ stopwatch NN storability NN storage NN storage-case NN store NN store-brand JJ store-front JJ store-name JJ store-sales NN stored VBN stored-up JJ storefront NN storefronts NNS storehouse NN storehouses NNS storekeepers NNS storeroom NN stores NNS stores. NN storied JJ stories NNS storing VBG storm NN storm-damaged JJ stormbound JJ stormed VBD stormier JJR storming VBG storms NNS stormy JJ story NN story-book NN storyline NN storylines NNS storyteller NN storytellers NNS storytelling NN stout JJ stout-hearted JJ stoutly RB stove NN stoves NNS stowaway NN stowed VBN straddle VB straddled VBD straddles VBZ straddling VBG strafe FW strafing VBG straggle VBP straggled VBD stragglers NNS straggling VBG straight JJ straight-A JJ straight-armed VBD straight-backed JJ straight-from-the-shoulder JJ straight-haired JJ straight-line JJ straight-out JJ straight-talking JJ straightaway NN straighten VB straightened VBD straighteners NNS straightening VBG straightens VBZ straighter JJR straightforward JJ straights NNS straightway RB strain NN strained VBD strainers NNS strainin VBG straining VBG strains NNS strait NN strait-laced JJ straitjacket NN straitjacketed JJ straits NNS stramonium NN strand NN stranded VBN stranding VBG strands NNS strange JJ strange-sounding JJ strangely RB strangeness NN stranger NN strangers NNS strangest JJS strangled VBN stranglehold NN strangles VBZ strangulation NN strap VB strapped VBN strapping JJ straps NNS strata NNS stratagem NN stratagems NNS strategic JJ strategic-arms JJ strategic-planning JJ strategic-weapons JJ strategically RB strategicarms NNS strategies NNS strategist NN strategists NNS strategy NN stratification NN stratified JJ stratify VB stratosphere NN stratospheric JJ stratum NN straw NN straw-and-mud JJ straw-colored JJ straw-hat JJ straw-man NN strawberries NNS strawberry NN straws NNS stray JJ strayed VBD straying VBG strays NNS streak NN streaked VBD streaking VBG streaks NNS stream NN stream-of-consciousness NN streamed VBD streamer NN streamers NNS streaming VBG streamline VB streamlined JJ streamliner NN streamlining VBG streams NNS streamside NN street NN street-corner JJ street... : streetcar NN streetcars NNS streetfighter NN streetlight NN streets NNS strenghtening VBG strengtened VBN strength NN strengthen VB strengthened VBN strengthening VBG strengthens VBZ strengths NNS strenuous JJ strenuously RB streptokinase NNP stress NN stress-producing JJ stress-provoking JJ stress-related JJ stress-temperature JJ stressed VBD stressed-out JJ stresses NNS stressful JJ stressing VBG stressors NNS stretch NN stretched VBD stretcher NN stretchers NNS stretches NNS stretching VBG strewn VBN stricken VBN strict JJ stricter JJR strictest JJS strictly RB strictures NNS stride NN strident JJ stridently RB strides NNS striding VBG strife NN strife-free JJ strike NN strike-bound JJ strike-force NN strike-outs NNS strikebreakers NNS strikeout NN strikers NNS strikes NNS striking JJ strikingly RB string NN string-of-pearls JJ stringed JJ stringent JJ stringently RB stringing VBG strings NNS stringy JJ strip NN stripe NN striped JJ stripes NNS stripped VBN stripped-down JJ stripper NN strippers NNS stripping VBG strips NNS striptease NN strive VB strived VBD striven VBN strivers NNS strives VBZ striving VBG strivings NNS strobe NN strode VBD stroke NN stroked VBD strokes NNS stroking NN stroll NN strolled VBD strollers NNS strolling VBG strolls VBZ strong JJ strong-arm JJ strong-jawed JJ strong-made JJ strong-willed JJ stronger JJR stronger-than-expected JJ strongest JJS stronghold NN strongholds NNS strongly RB strongman NN strongrooms NNS strophe NN stropped VBD stropping VBG strove VBD strt VB struck VBD structively RB structural JJ structural-adjustment JJ structurally RB structure NN structured VBN structures NNS structuring VBG struggle NN struggled VBD struggles NNS struggling VBG strumming VBG strung VBN strut NN strutted VBD strutting VBG strychnine NN stub NN stubbed VBN stubble JJ stubborn JJ stubbornly RB stubbornness NN stubby JJ stubs NNS stucco NN stuck VBN stuck-up JJ stud NN studded VBN student NN student-athlete NN student-athletes NNS student-directed JJ student-led JJ student-loan JJ student-physicists NNS student-test JJ studentled VBN students NNS studied VBN studies NNS studio NN studio-quality JJ studio\ JJ studios NNS studious JJ studiously RB studiousness NN studs NNS study NN study-plan NN studying VBG stuff NN stuffed VBN stuffing VBG stuffy JJ stuggles VBZ stultifying JJ stumble VB stumbled VBD stumbles VBZ stumbling VBG stumbling-block NN stump NN stumpage NN stumped VBN stumping NN stumps NNS stumpy JJ stung VBN stunk VBD stunned VBD stunning JJ stunningly RB stunt NN stunted VBN stunts NNS stupefying JJ stupefyingly RB stupendous JJ stupendously RB stupid JJ stupidest JJS stupidities NNS stupidity NN stupidly RB stupor NN sturdiest JJS sturdily RB sturdy JJ sturgeon NN stutter NN style NN style-cramper NN styled VBN stylemark NN styles NNS styling NN stylish JJ stylishly RB stylist NN stylistic JJ stylistically RB stylization NN stylized JJ stymie VB stymied VBN styrene NN styrenes NNS styryl-lithium NN suability NN suable JJ suave JJ suavity NN sub NN sub-Christian JJ sub-Saharan JJ sub-assemblies NNS sub-assembly NN sub-chiefdom NN sub-chiefs NN sub-conscious-level NN sub-freezing JJ sub-group NN sub-headlines NNS sub-human JJ sub-interval NN sub-markets NNS sub-minimum JJ sub-segments NNS sub-station JJ sub-surface NN sub-tests NNS sub-therapeutic JJ sub-underwriters NNS sub-underwriting VBG sub-zero JJ subaltern NN subatomic JJ subbing VBG subcommitee NN subcommittee NN subcommittees NNS subcompact NN subcompacts NNS subconferences NNS subconscious JJ subconsciously RB subcontinent NN subcontract VB subcontracting NN subcontractor NN subcontractors NNS subcontracts NNS subdirector NN subdivision NN subdivisions NNS subdue VB subdued VBN subdues VBZ subduing VBG subfigures NNS subgross JJ subgroups NNS subhumanity NN subindustry NN subject NN subjected VBN subjecting VBG subjective JJ subjectively RB subjectivist NN subjectivists NNS subjectivity NN subjects NNS subjugate VB subjugated JJ subjugating VBG subjugation NN sublease NN sublet VB sublicense NN sublimate NN sublime JJ sublimed VBN subliminal JJ subliterary JJ sublunary JJ submachine JJ submarine NN submarine-ball NN submarine-based JJ submarine-launched JJ submariners NNS submarines NNS submerge VB submerged VBN submerging VBG subminimum JJ submission NN submissions NNS submissive JJ submit VB submits VBZ submitted VBN submitting VBG submucosa NN subnational JJ subnormal JJ suborbital JJ subordinate JJ subordinated VBN subordinates NNS subordinator NN subpar JJ subparagraph NN subparts NNS subpenaed VBN subpenas NNS subplots NNS subpoena NN subpoenaed VBN subpoenas NNS subrogation NN subroutine NN subroutines NNS subs NNS subscribe VB subscribed VBN subscriber NN subscribers NNS subscribes VBZ subscribing VBG subscription NN subscriptions NNS subscripts NNS subsection NN subsections NNS subsedies NNS subsequent JJ subsequently RB subservience NN subservient JJ subset NN subsidary JJ subside VB subsided VBD subsidence NN subsides VBZ subsidiaries NNS subsidiarity NN subsidiary NN subsidies NNS subsiding VBG subsidization NN subsidize VB subsidized JJ subsidizes VBZ subsidizing VBG subsidy NN subsist VB subsistence NN subsistent JJ subskill NN subskills NNS subsoil NN subspace NN subspaces NNS subspecies NNS substance NN substance-abusing JJ substances NNS substandard JJ substantial JJ substantially RB substantiate VB substantiated JJ substantiates VBZ substantiation NN substantive JJ substantively RB substations NNS substerilization NN substitute NN substituted VBN substitutes NNS substituting VBG substitution NN substitutionary JJ substitutions NNS substracting VBG substrate NN substrates NNS substratum NN substructure NN subsumed VBN subsurface JJ subsystem NN subsystems NNS subtended JJ subtends VBZ subterfuge NN subterfuges NNS subterranean JJ subtilis NNS subtitle NN subtitled VBN subtitles NNS subtle JJ subtler JJR subtleties NNS subtlety NN subtly RB subtract VB subtracted VBN subtracting VBG subtraction NN subtype NN subtypes NNS suburb NN suburban JJ suburbanite JJ suburbanites NNS suburbanized VBN suburbia NN suburbs NNS subversion NN subversive JJ subversives NNS subvert VB subverted VBN subverting VBG subverts VBZ subway NN subways NNS subzero JJ succeed VB succeeded VBN succeeding VBG succeeds VBZ succesful JJ success NN success-oriented JJ success... : successes NNS successful JJ successfully RB succession NN successive JJ successively RB successor NN successor-designate JJ successors NNS successors-in-spirit NNS successorship NN succinct JJ succinctly RB succor NN succulent JJ succumb VB succumbed VBN succumbing VBG succumbs VBZ sucess NN such JJ suck VB sucked VBD sucker NN sucker-rolling JJ suckered VBN suckers NNS sucking VBG sucks VBZ suction NN sudden JJ sudden-end JJ suddenly RB suddenness NN suds NNS sudsing NN sue VB sued VBD suede NN sues VBZ suey NN suffer VB sufferd VBN suffered VBD sufferer NN sufferers NNS suffering VBG sufferings NNS suffers VBZ suffice VB sufficed VBD sufficent JJ sufficiency NN sufficient JJ sufficiently RB suffix NN suffixand NN suffixes NNS suffocate VB suffocated VBN suffocating VBG suffocation NN suffrage NN suffragettes NNS suffuse VB suffused VBD sugar NN sugar-cane JJ sugar-coated JJ sugar-growing JJ sugar-producing JJ sugar-subsidy NN sugar-using JJ sugarcane NN sugared JJ sugars NNS sugary JJ suggest VBP suggested VBD suggestibility NN suggesting VBG suggestion NN suggestions NNS suggestions... : suggestive JJ suggests VBZ suhthuhn JJ suicidal JJ suicide NN suicides NNS suing VBG suit NN suit-and-tie JJ suitability NN suitable JJ suitably RB suitably-loaded JJ suitcase NN suitcase-sized JJ suitcases NNS suite NN suited VBN suites NNS suitor NN suitors NNS suits NNS suject JJ sulfide NN sulfur NN sulfur-dioxide NN sulfuric JJ sulfurous JJ sulked VBD sulkily RB sulking VBG sulks NNS sulky JJ sullen JJ sullenly RB sullying VBG sulphur NN sulphured VBN sulphurous JJ sultan NN sultans NNS sultry JJ sum NN sumac NN summaries NNS summarily RB summarization NN summarize VB summarized VBN summarizes VBZ summarizing VBG summary NN summate NN summation NN summed VBD summer NN summer-holiday JJ summer-long JJ summer-winter JJ summer\ JJ summers NNS summertime NN summing VBG summit NN summiteers NNS summitry NN summits NNS summon VB summoned VBN summoning VBG summons NN summonses NNS sumptuous JJ sums NNS sun NN sun-baked JJ sun-bleached JJ sun-browned JJ sun-burned JJ sun-drenched JJ sun-inflamed JJ sun-kissed JJ sun-parched JJ sun-suit NN sun-tan JJ sun-tanned JJ sun-warmed JJ sunbaked JJ sunbleached VBN sunbonnet NN sunbonnets NNS sunburn NN sunburnt JJ sunder VB sundials NNS sundown NN sundry JJ sunflower NN sunflowers NNS sung VBN sunglasses NN sunk VBN sunken JJ sunlight NN sunnier JJR sunning VBG sunny JJ sunrise NN sunroof NN suns NNS sunset NN sunsets NNS sunshades NNS sunshield NN sunshine NN sunshiny JJ sunspot NN sunt FW suntan NN sup VB super JJ super-Herculean JJ super-absorbent JJ super-charged JJ super-charger NN super-city NN super-condamine NN super-empirical JJ super-exciting JJ super-expensive JJ super-experiment NN super-fast JJ super-headache NN super-high JJ super-imposed VBN super-majority JJ super-regional JJ super-regionals NNS super-regulator NN super-rich JJ super-secret JJ super-spy NN super-status JJ super-strict JJ super-string JJ super-user NN superagent NN superb JJ superbly RB supercede VBP superceded VBD supercharged JJ supercharger NN supercilious JJ supercollider NN supercolliding VBG supercomputer NN supercomputers NNS superconcentrated JJ superconcentrates NNS superconductivity NN superconductor NN superconductors NNS supercritical JJ superefficient JJ superego NN superfast JJ superficial JJ superficiality NN superficially RB superfluous JJ supergiants NNS superhighway NN superhighways NNS superhuman JJ superieure NN superimpose VB superimposed VBN superimposes VBZ superimposing VBG superintend VB superintendent NN superintendents NNS superior JJ superiority NN superiors NNS superlative JJ superlatives NNS superlunary JJ supermachine NN supermainframe NN supermarket NN supermarket-refrigeration NN supermarkets NNS supernatant JJ supernatural JJ supernaturalism NN supernormal JJ superposition NN superpower NN superpowers NNS superpremiums NNS superregional JJ supersafe NN supersede VB superseded VBN supersedes VBZ supersensitive JJ supersonic JJ superstar NN superstars NNS superstate NN superstition NN superstitions NNS superstitious JJ superstores NNS superstrong JJ superstructure NN supertanker NN supertankers NNS supertitles NNS supervened VBN supervise VB supervised VBD supervises VBZ supervising VBG supervision NN supervisor NN supervisors NNS supervisory JJ supervote NN supervoting JJ supine NN supinely RB supper NN suppers NNS supplant VB supplanted VBN supplanting VBG supple JJ supplement NN supplemental JJ supplementary JJ supplemented VBN supplementing VBG supplements NNS suppleness NN supplicating VBG supplied VBN supplier NN suppliers NNS supplies NNS supply NN supply-and-demand NN supply-demand JJ supply-driven JJ supply-side JJ supply-sider NN supply\/demand NN supplying VBG support NN supportable JJ supported VBN supporter NN supporters NNS supporting VBG supportive JJ supports VBZ suppose VBP supposed VBN supposedly RB supposes VBZ supposing VBG suppositions NNS suppository NN suppress VB suppressant NN suppressants NNS suppressed VBN suppresses VBZ suppressing VBG suppression NN suppressor NN suppressors NNS supra RB supra-personal JJ supranational JJ supranationalism NN supraventricular JJ supremacy NN supreme NN supremely RB supression NN supressor NN suprise NN sur FW surcease NN surcharge NN surcharges NNS sure JJ sure-enough JJ sure-fire JJ sure-sure NN surefire JJ surely RB surest JJS surf NN surface NN surface-active JJ surface-analyzer NN surface-declaring JJ surface-to-air JJ surfaced VBD surfaceness NN surfaces NNS surfacing VBG surfactant NN surfactants NNS surfboard NN surfeit NN surfeited VBN surfers NNS surfing NN surge NN surged VBD surgeon NN surgeons NNS surgeries NNS surgery NN surges NNS surgical JJ surgical-abortion JJ surgically RB surgicenters NNS surging VBG surimi FW surly JJ surmise VB surmised VBD surmises NNS surmount VB surmounted VBD surmounting VBG surname NN surpass VB surpassed VBN surpasses VBZ surpassing VBG surplus NN surpluses NNS surprise NN surprise-filled JJ surprise... : surprised VBN surprises NNS surprising JJ surprisingly RB surreal JJ surrealism NN surrealist JJ surrealistic JJ surrealists NNS surrender NN surrendered VBD surrendering VBG surreptitious JJ surreptitiously RB surreys NNS surrogacy NN surrogate JJ surrogates NNS surround VBP surrounded VBN surrounding VBG surroundings NNS surrounds VBZ surtax NN surtaxes NNS surtout NN surveillance NN survey NN survey-type JJ surveyed VBN surveying VBG surveyor NN surveys NNS survivability NN survivable JJ survival NN survivalist NN survivalists NNS survivals NNS survive VB survived VBD survives VBZ surviving VBG survivor NN survivors NNS susceptibilities NNS susceptibility NN susceptible JJ susceptors NNS sushi NN suspect VBP suspected VBN suspecting VBG suspects VBZ suspend VB suspended VBN suspender NN suspender-clad JJ suspenders NNS suspending VBG suspends VBZ suspense NN suspenseful JJ suspension NN suspensions NNS suspensor NN suspicion NN suspicions NNS suspicions... : suspicious JJ suspiciously RB sustain VB sustainability NN sustainable JJ sustained VBN sustaining VBG sustains VBZ sustenance NN suttee NN suture NN sutures NNS suvivors NNS suzerain NN suzerainty NN svelte JJ svelte-looking JJ swab VB swabbed VBD swagger NN swaggered VBD swaggering VBG swallow VB swallowed VBN swallowing VBG swallows NNS swam VBD swami NNS swamp NN swamped VBN swamping VBG swamps NNS swampy JJ swan NN swank JJ swankier JJR swanky JJ swanlike JJ swans NNS swap NN swapped VBN swapping VBG swaps NNS swarm NN swarmed VBD swarming VBG swarms NNS swart JJ swarthy JJ swashbuckling JJ swastika NN swat NN swatches NNS swath NN swathe NN swathed VBN swathings NNS sway VB sway-backed JJ swayed VBD swaying VBG swear VB swearing NN swearing-in NN swearinge VBG swears VBZ sweat NN sweat-saturated JJ sweat-soaked JJ sweat-suits NNS sweatband NN sweated VBD sweater NN sweaters NNS sweathruna FW sweating VBG sweats NNS sweatshirt NN sweatshirts NNS sweatshop NN sweatshops NNS sweatsuit NN sweaty JJ sweep NN sweepers NNS sweeping VBG sweepingly RB sweepings NNS sweeps NNS sweepstakes NN sweet JJ sweet-clover NN sweet-faced JJ sweet-natured JJ sweet-shrub NN sweet-smelling JJ sweet-sounding JJ sweet-sour JJ sweet-throated JJ sweet-tongued JJ sweeten VB sweetened VBN sweetener NN sweeteners NNS sweetening NN sweetens VBZ sweeter JJR sweetest JJS sweetest-tasting JJ sweetheart NN sweetheart-secretary NN sweethearts NNS sweetish JJ sweetly RB sweetness NN sweetpeas NNS sweets NNS swell VB swelled VBD swelling VBG swellings NNS swells NNS sweltering JJ swept VBD swerve VBP swerved VBD swerving VBG swift JJ swift-footed JJ swift-striding JJ swiftest JJS swiftly RB swiftness NN swig NN swim VB swimmer NN swimmers NNS swimming VBG swims VBZ swimsuit NN swimsuits NNS swindled VBN swindlers NNS swindling VBG swine NNS swing NN swinger NN swingin NN swinging VBG swings NNS swingy JJ swipe NN swiped VBD swipes VBZ swiping VBG swirl NN swirled VBD swirling VBG swirls NNS swished VBD switch NN switch-hitter NN switchblade NN switchboard NN switched VBD switchers NNS switches NNS switchgear NN switching VBG swivel JJ swiveling VBG swollen JJ swollen-looking JJ swoon NN swooning NN swoons NNS swoop NN swooped VBD swooping VBG swoops NN sword NN sworde NN swordfish NN swords NNS swore VBD sworn VBN swum VBN swung VBD sycamore NN sycophantic JJ sycophantically RB sycophantishness NN sycophants NNS syllabicity NN syllable NN syllables NNS sylvan JJ symbiotic JJ symbol NN symbolic JJ symbolic-sounding JJ symbolical JJ symbolically RB symbolism NN symbolists NNS symbolize VB symbolized VBD symbolizes VBZ symbolizing VBG symbols NNS symmetric JJ symmetrical JJ symmetrically RB symmetry NN sympathetic JJ sympathetically RB sympathies NNS sympathique FW sympathize VBP sympathized VBD sympathizers NNS sympathizing VBG sympathy NN sympathy... : symphonic JJ symphonies NNS symphony NN symposium NN symposiums NNS symptom NN symptom-free JJ symptomatic JJ symptomless JJ symptoms NNS synagogue NN synagogues NNS synapses NNS sync NN synce IN synchotron JJ synchronism NN synchronize VBP synchronized VBN synchronizers NNS synchronous JJ synchrony NN syndciated VBN syndicate NN syndicated VBN syndicates NNS syndicating VBG syndication NN syndications NNS syndicator NN syndicators NNS syndrome NN synergies NNS synergism NN synergistic JJ synergy NN syngeries NNS synonym NN synonymous JJ synonyms NNS synonymy NN synopsis NN syntactic JJ syntactical JJ syntactically RB syntax NN synthesis NN synthesised VBN synthesize VB synthesized VBN synthesizer NN synthesizers NNS synthesizes VBZ synthesizine NN synthetic JJ synthetic-diamond NN synthetic-leather JJ synthetical JJ synthetics NNS syringa NN syringe NN syringes NNS syrup NN syrups NNS syrupy JJ system NN system-management NN system-specific JJ systematic JJ systematically RB systematically-simple JJ systematization NN systematized VBN systematizing VBG systemic JJ systemization NN systems NNS systems-integration NN systems-strategies NNS systemwide JJ t NN t'aint VB t'gethuh RB t'hi-im PRP t'jawn VB t'lah VB t-tau NN tab NN tab-lifter NN tabac NN tabacs NNS tabbed VBD tabby JJ tabernacles NNS table NN table-tennis NN table-top JJ tableau NN tablecloths NNS tabled VBN tableland NN tablemodel NN tables NNS tablespoon NN tablespoonful NN tablespoonfuls NNS tablespoons NNS tablet NN tablet-shattering JJ tablets NNS tableware NN tabling VBG tabloid NN tabloid-style JJ tabloids NNS taboo JJ taboos NNS tabs NNS tabula NN tabulate VB tabulated VBN tabulation NN tabulations NNS tachyarrhythmia NN tachycardia NN tacit JJ tacitly RB tack NN tack-solder VB tacked VBD tacked-down JJ tackiest JJS tacking VBG tackle VB tackled VBN tackles VBZ tackling VBG tacks NNS tacky JJ tacos NNS tact NN tactful JJ tactic NN tactical JJ tactically RB tacticians NNS tactics NNS tactile JJ tactlessness NN tactual JJ tactually RB tad NN tadpoles NNS tae FW taffeta NN taffy JJ taffycolored VBN tag NN tag'em NN tag-team JJ tagged VBN tagging VBG tagline NN tags NNS tagua NN tail NN tailback NN tailgate NN tailin NN tailing VBG tailor VB tailor-made JJ tailor-make VB tailored VBN tailoring VBG tailpipe NN tailpipe-emission JJ tailpipe-emissions NNS tails NNS tailspin NN taint NN tainted VBN tainted-meat NN take VB take-away JJ take-home JJ take-it-or-leave JJ take-off NN take-or-pay JJ take-out NN take-up JJ takeaways NNS takeing VBG taken VBN takeoff NN takeoff-warning JJ takeoffs NNS takeout NN takeover NN takeover-defense JJ takeover-driven JJ takeover-proof JJ takeover-related JJ takeover-stock JJ takeover-threat NN takeovers NNS taker NN takers NNS takes VBZ taketh VB takin VBG taking VBG takings NNS takover NN tale NN talent NN talented JJ talents NNS tales NNS talismanic JJ talk VB talk-aboutiveness NN talk-format NN talk-show NN talkative JJ talked VBD talker NN talkfest NN talkin VBG talking VBG talks NNS talks-including JJ talky JJ tall JJ tall-growing JJ tall-masted JJ tall-oil JJ tall-tale NN taller JJR tallest JJS tallied VBN tallies NNS tallow NN tally NN tallyho NN tallying VBG talons NNS tam FW tam-o'-shanter NN tamale NN tambourine NN tame JJ tamer JJR taming VBG tamp VB tamper VB tamper-proof JJ tamper-resistant JJ tampered VBD tampering VBG tampers NNS tampons NNS tan JJ tandem NN tandem-seat JJ tandem-trainer NN tang NN tangency NN tangent JJ tangential JJ tangents NNS tangere JJ tangible JJ tangibly RB tangle NN tangled JJ tango NN tangoed VBD tangos NNS tangy JJ tank NN tank-related JJ tanked VBN tanker NN tankers NNS tanking VBG tanks NNS tanned JJ tannin NN tanning NN tans NNS tansy NN tantalized VBN tantalizing VBG tantalizingly RB tantamount JJ tantrum NN tantrums NNS tap VB tap-tap NN tapdance NN tape NN tape-delay NN tape-product NN tape-recorded VBD taped VBN taper VB tapered JJ tapering VBG tapers VBZ tapes NNS tapestries NNS tapestry NN taping NN tapings NNS tapioca NN tapis NN tapped VBD tappet NN tappets NNS tapping VBG taps NNS tar NN tar-soaked JJ taragon NN tarantara NN tardiness NN tardy JJ target NN target-hunting JJ target-language NN targeted VBN targeting VBG targets NNS tariff NN tariff-cutting NN tariff-free JJ tariff-reduction NN tariffs NNS tarmac NN tarnish VB tarnished VBN tarpapered JJ tarpaulin NN tarpaulins NNS tarpon NN tarred VBN tarry VB tart JJ tartan NN tartan-patterned JJ tartans NNS tartare NN tartly RB task NN task-force NN taskmaster NN tasks NNS tassel NN tassels NNS taste NN tasted VBD tasteful JJ tastefully RB tasteless JJ tastes NNS tastier JJR tasting VBG tasty JJ tat VB tattered JJ tatters NNS tattle-tale NN tattoo NN tattooed VBN taught VBN taunt NN taunted VBD taunting VBG tauntingly RB taunts NNS taut JJ taut-nerved JJ tavern NN taverns NNS tawdry JJ tawny JJ tax NN tax-accounting NN tax-advantaged JJ tax-aided JJ tax-and-budget JJ tax-and-spend JJ tax-and-spending JJ tax-anticipation JJ tax-avoidance JJ tax-backed JJ tax-based JJ tax-collecting JJ tax-collection JJ tax-compliance NN tax-credit NN tax-cut JJ tax-deductible JJ tax-deductions NNS tax-deferred JJ tax-department JJ tax-driven JJ tax-evasion NN tax-exempt JJ tax-exemption NN tax-exempts NNS tax-fraud NN tax-free JJ tax-free. JJ tax-freedom NN tax-give-away JJ tax-haven JJ tax-law NN tax-loss NN tax-overhaul JJ tax-paying JJ tax-payment NN tax-policy NN tax-preparation NN tax-rate JJ tax-reducing VBG tax-reduction NN tax-reform JJ tax-revenue NN tax-revision JJ tax-shelter JJ tax-sheltered JJ tax-software NN tax-supported JJ tax-understatement JJ tax-uniformity NN tax-writers NNS tax-writing JJ taxable JJ taxable-equivalent JJ taxable-fund JJ taxation NN taxed VBN taxes NNS taxfree JJ taxi NN taxi-ways NNS taxicab NN taxidermist NN taxied VBD taxiing VBG taxing VBG taxis NNS taxlow NN taxpayer NN taxpayer-related JJ taxpayers NNS taxpaying JJ tea NN tea-drinking NN tea-leaf NN teabag NN teacart NN teach VB teacher NN teacher-cadet JJ teacher-employee NN teachers NNS teaches VBZ teaching NN teachings NNS teahouse NN teahouses NNS teakettle NN teakwood NN team NN team-management NN team-mate NN teamed VBD teaming VBG teammate NN teammates NNS teams NNS teamster NN teamsters NNS teamwork NN teapot NN tear VB tear-filled JJ tear-jerkers NNS tear-jerking JJ tear-soaked JJ teardrop NN tearfully RB tearing VBG tears NNS teary-eyed JJ teas NNS tease VB teased VBN teaser NN teasers NNS teasing JJ teaspoon NN teaspoonful JJ teaspoonfuls NNS teaspoons NNS teats NNS tebuthiuron NN tech NN technical JJ technical-ladder JJ technical-services NNS technicalities NNS technicality NN technically RB technician NN technicians NNS technique NN techniques NNS techno-managerial JJ technocratic JJ technocrats NNS technological JJ technologically RB technologically-improved JJ technologies NNS technologies\ JJ technologist NN technology NN technology-based JJ technology-licensing JJ technology-related JJ technology-transfer NN technolology NN technophiliac JJ tecum FW teddy NN teddy-bear NN tedious JJ tediously RB tedium NN tee NN teed VBD teemed VBD teeming VBG teems VBZ teen JJ teen-age JJ teen-ager NN teen-agers NNS teenage JJ teenager NN teenagers NNS teens NNS teensy JJ teetered VBD teetering VBG teeth NNS teething VBG teetotaler NN tektite NN tektites NNS tele-processing JJ telecast NN telecines NNS telecom NN telecommunication NN telecommunications NNS teleconferences NNS telecopier NN telefax NN telegram NN telegrams NNS telegraph NN telegraphed VBD telegrapher NN telegraphers NNS telegraphic JJ telegraphic-transfer JJ telegraphing VBG telegraphy NN telemarketers NNS telemarketing NN teleological JJ teleology NN telepathic JJ telepathically RB telepathy NN telephone NN telephone-access JJ telephone-booth NN telephone-call NN telephone-company NN telephone-information NN telephone-marketing JJ telephone-network JJ telephoned VBD telephones NNS telephoning VBG telescope NN telescoped VBN telescopes NNS telescopic JJ telescoping NN telesystems NNS teletype NN televangelism NN televised VBN televising NN television NN television-related JJ television-viewing NN televisions NNS televison NN televison-record NN telex NN telexes NNS tell VB tell-all JJ tell-tale JJ tell... : teller NN tellers NNS telling VBG tellingly RB tells VBZ telltale JJ telomeric JJ temblor NN temblor-prone JJ temblors NNS temerity NN tempeh NN temper NN tempera NN temperament NN temperamental JJ temperaments NNS temperance NN temperate JJ temperately RB temperature NN temperatures NNS tempered VBN tempering VBG tempers NNS tempest NN tempestuous JJ template NN temple NN temples NNS tempo NN temporal JJ temporally RB temporarily RB temporary JJ temporary-help JJ tempore NN temporize VB temporized VBD temporizing VBG tempos NNS temps NNS tempt VB temptation NN temptations NNS tempted VBN tempting JJ temptingly RB tempts VBZ ten CD ten-by-ten-mile JJ ten-concert JJ ten-day JJ ten-fifty-five CD ten-foot JJ ten-gallon JJ ten-hour JJ ten-minute JJ ten-month JJ ten-twelve CD ten-year JJ tenable JJ tenacious JJ tenaciously RB tenacity NN tenancy NN tenant NN tenants NNS tend VBP tended VBD tendencies NNS tendency NN tendentious JJ tender NN tender-offer JJ tendered VBN tenderfoot NN tendering VBG tenderly RB tenderness NN tenders NNS tending VBG tendons NNS tends VBZ tenebrous JJ tenement NN tenements NNS tenet NN tenets NNS tenfold RB tennis NN tenor NN tenors NNS tens NNS tense JJ tensed VBD tensely RB tenses NNS tensile JJ tension NN tensional JJ tensioning VBG tensionless JJ tensions NNS tenspot NN tent NN tentacle NN tentacles NNS tentative JJ tentatively RB tenterhooks NNS tenth JJ tenths NNS tenting NN tents NNS tenuous JJ tenuously RB tenure NN tepees NNS tepid JJ tequila NN teratologies NNS term NN term'nonfat JJ term-end JJ termed VBD terminal NN terminals NNS terminate VB terminated VBN terminates VBZ terminating VBG termination NN terminations NNS terming VBG termini NNS terminology NN terminus NN termites NNS terms NNS ternational JJ terra FW terra-cotta-colored JJ terrace NN terraced VBN terraces NNS terrain NN terrain-marring JJ terrains NNS terram FW terrazzo NN terrestial JJ terrestrial JJ terrestrially RB terrible JJ terribly RB terrier NN terriers NNS terrific JJ terrified VBN terrifies VBZ terrify VB terrifying JJ terrine NN territoire FW territorial JJ territories NNS territory NN terror NN terror-filled JJ terror-stricken JJ terrorism NN terrorist JJ terroristic JJ terrorists NNS terrorize VB terrorized VBN terrorizing VBG terrors NNS terry NN terry-cloth NN ters NNS terse JJ tersely RB tertian JJ tertiary JJ test NN test-coaching JJ test-drive VB test-fired VBN test-like JJ test-market NN test-marketed VBD test-marketing VBG test-practice JJ test-prep JJ test-preparation JJ test-run NN test-tube NN testament NN testaments NNS tested VBN tester NN testers NNS testicle NN testified VBD testifies VBZ testify VB testifying VBG testily RB testimonial JJ testimonials NNS testimony NN testing NN testings NNS testosterone NN tests NNS testy JJ tetanus NN tete-a-tete NN tethered VBN tethers NNS tetrachloride NN tetragonal JJ tetrahalides NNS tetrasodium NN teutonic JJ texas NNP text NN text-form NN text-lookup NN text-ordered JJ textbook NN textbooks NNS textile NN textile-exporting JJ textile-importing NN textile-producing JJ textile-related JJ textile-trade JJ textiles NNS texts NNS textual JJ texture NN textured JJ textures NNS th DT tha DT thallium NN than IN than... : thank VB thanked VBD thankful JJ thankfully RB thankfulness NN thanking VBG thankless JJ thanks NNS thanksgiving NN thanx NN thar RB that IN that's VBZ that'ugly JJ that... : thatched-roof JJ thatches NNS thats VBZ thatt IN thaw NN thaw'em VB thawed VBN thawing VBG thaws NNS the DT the'breakup NN the'called JJ the'federales FW the'first JJ the'golden JJ the'individuals NNS the'magic JJ the'soft JJ the... : theaf NN theare NN thease NN theater NN theater-exhibition NN theater-going NN theatergoer NN theatergoers NNS theatergoing JJ theaters NNS theatre NN theatregoer NN theatres NNS theatrical JJ theatricality NN theatrically RB theatricals NNS thee PRP thees DT thefin VBG theft NN thefts NNS thei PRP their PRP$ theircompany NN theirs PRP theistic JJ them PRP thematic JJ theme NN theme-park NN themed VBN themes NNS themselves PRP themselves'pro-choice JJ then RB then-21 JJ then-52 JJ then-Air JJ|NP then-City JJ then-GOP NNP then-Minister JJ then-Secretary NNP then-Socialist JJ then-Speaker JJ then-Treasury JJ then-Vice NNP then-biggest JJ then-chairman NN then-client NN then-current JJ then-dress JJ then-husband NN then-market JJ then-minister NN then-moribund JJ then-owner JJ then-pending JJ then-president JJ then-prevailing JJ then-rampant JJ then-senior JJ thence RB thenceforth CC theocracy NN theologian NN theologian-philosophers NN theologians NNS theological JJ theology NN theophylline NN theopylline NN theorem NN theoretical JJ theoretically RB theoreticians NNS theories NNS theories... : theorist NN theorists NNS theoriticians NNS theorize VBP theorized VBD theorizing NN theory NN theory-and NN theory-teaching VBG ther RB therapeutic JJ therapies NNS therapist NN therapists NNS therapy NN there EX there's EX thereabouts RB thereafter RB thereby RB therefor RB therefore RB therefores NNS therefrom RB therein RB thereof RB thereon RB thereto RB theretofore RB thereunder RB thereupon RB therewith RB thermal JJ thermally RB thermistor NN thermocouple NN thermocouples NNS thermodynamic JJ thermodynamically RB thermodynamics NNS thermoelectric JJ thermoformed VBN thermoforming JJ thermometer NN thermometers NNS thermometric JJ thermometry NN thermonuclear JJ thermopile NN thermoplastic JJ thermos NN thermostat NN thermostated VBN thermostatics NNS thermostats NNS thesaurus NN these DT theses NNS thesis NN thespian JJ thespians NNS thet DT they PRP they'll MD thiamin NN thick JJ thick-skulled JJ thick-walled JJ thicken VB thickened VBN thickeners NNS thickening VBG thickens VBZ thicker JJR thickest JJS thicket NN thickets NNS thickly RB thickness NN thicknesses NNS thief NN thieves NNS thievin VBG thieving VBG thigh NN thigh-bone NN thighs NNS thiihng NN thills NNS thimble NN thimble-sized JJ thin JJ thin-lipped JJ thin-margin JJ thin-slab JJ thin-soled JJ thin-tired JJ thin-walled JJ thine JJ thing NN things NNS think VBP think-alike JJ think-tank NN think-tanks JJ thinke VBZ thinker NN thinkers NNS thinkin VBG thinking VBG thinks VBZ thinly RB thinned VBN thinner JJR thinners NNS thinness NN thinnest JJS thinning VBG thiocyanate-perchlorate-fluoro NN thiouracil NN third JJ third* JJS third-biggest JJ third-class JJ third-consecutive JJ third-dimensional JJ third-dimensionality NN third-floor JJ third-generation JJ third-grade NN third-highest JJ third-inning NN third-largest JJ third-leading JJ third-party JJ third-period JJ third-place JJ third-quarter JJ third-ranked JJ third-ranking JJ third-rate JJ third-round JJ third-selling JJ third-shift JJ third-story JJ third-straight JJ third-tier JJ third-worst JJ third-year JJ thirdquarter JJ thirds NNS thirst NN thirsted VBN thirsty JJ thirteen CD thirteen-year-old JJ thirteenth JJ thirteenth-century JJ thirties NNS thirtieth JJ thirty CD thirty-caliber JJ thirty-eight CD thirty-eighth JJ thirty-five CD thirty-foot JJ thirty-four CD thirty-fourth JJ thirty-mile JJ thirty-nine CD thirty-one CD thirty-seven CD thirty-six CD thirty-sixth JJ thirty-three CD thirty-two CD thirty-year JJ thirtysomething NN this DT this.... : this.`` `` thistles NNS thither RB tho NN tholins NNS thomp NN thong NN thoriated VBN thorn NN thorns NNS thorny JJ thorough JJ thoroughbred JJ thoroughbreds NNS thoroughfare NN thoroughfares NNS thoroughgoing JJ thoroughly RB thoroughness NN those DT thou PRP though IN thought VBD thought-out JJ thoughtful JJ thoughtfully RB thoughtfulness NN thoughtless JJ thoughtlessly RB thoughtprovoking JJ thoughts NNS thousand CD thousand-fold JJ thousand-legged JJ thousand-person JJ thousands NNS thousandth JJ thousandths NNS thout VBD thrall NN thrash VB thrashed VBD thrashing NN thread NN threadbare JJ threaded VBN threading VBG threads NNS threat NN threaten VB threatened VBN threatening VBG threateningly RB threatens VBZ threats NNS three CD three-and-a-half JJ three-axis JJ three-bedroom JJ three-body JJ three-boiler JJ three-building JJ three-button JJ three-cornered JJ three-day JJ three-day-old JJ three-dice JJ three-digit JJ three-dimensional JJ three-dimensionality NN three-dimentional JJ three-door JJ three-family JJ three-fifths JJ three-fold JJ three-foot JJ three-foot-wide JJ three-fourths JJ three-front JJ three-game JJ three-hour JJ three-hour-long JJ three-hour-show NN three-hundred-foot JJ three-inch JJ three-inch-long JJ three-inch-wide JJ three-inning JJ three-judge JJ three-lawyer JJ three-man JJ three-masted JJ three-member JJ three-men-and-a-helper JJ three-meter-high JJ three-mile JJ three-minute JJ three-month JJ three-month-old JJ three-night JJ three-page JJ three-panel JJ three-part JJ three-party JJ three-piece JJ three-point JJ three-power JJ three-quarter JJ three-quarters NNS three-room JJ three-round JJ three-row JJ three-run JJ three-second JJ three-sectioned JJ three-sentence JJ three-sevenths NNS three-snake JJ three-spoked JJ three-stage JJ three-step JJ three-story JJ three-times JJ three-to-five JJ three-to-five-page JJ three-to-five-year JJ three-to-five-year-olds NNS three-ton JJ three-way JJ three-week JJ three-week-old JJ three-wood JJ three-year JJ three-year-old JJ threefold JJ threehour JJ threemonth JJ threes NNS threes-fulfilled NN threesome NN threetranche JJ threshed VBD threshhold NN threshing NN threshold NN thresholds NNS threw VBD thrice RB thrice-monthly JJ thrift NN thrift-accounting NN thrift-bailout JJ thrift-fraud JJ thrift-holding JJ thrift-industry NN thrift-institution NN thrift-insurance NN thrift-like JJ thrift-overhaul NN thrift-related JJ thrift-rescue JJ thrift-resolution NN thriftiness NN thrifts NNS thrifty JJ thrill NN thrilled VBN thriller NN thrillers NNS thrilling JJ thrills NNS thrips NN thrive VB thrived VBD thrives VBZ thriving VBG throat NN throats NNS throaty JJ throbbed VBD throbbing VBG throes NNS thrombi NNS thrombosed VBN thrombosis NN throne NN thrones NNS throng NN throngs NNS throttle NN throttled VBN throttling VBG through IN throughout IN throughput NN throw VB throw-away JJ throw-rug NN throwaway JJ throwback NN throwed VBD thrower NN throwers NNS throwin VBG throwing VBG thrown VBN throws VBZ thru NN thrumming VBG thrust NN thrust-to-weight JJ thrusting VBG thrusts NNS thruway NN thruways RB tht PRP thud NN thudding VBG thuds NNS thug NN thugs NNS thum PRP thumb NN thumb-sucking NN thumbed VBD thumbing VBG thumbnail NN thumbs NNS thumbs-down NN thump NN thump-thump NN thumped VBD thumping VBG thunder NN thunder-purple JJ thunderclaps NNS thundered VBD thundering VBG thunderous JJ thunders VBZ thunderstorm NN thunderstorms NNS thunderstruck JJ thunk NN thuringiensis FW thus RB thwack NN thwart VB thwarted VBN thwarting VBG thwump NN thx NN thy JJ thynke VBP thyratron NN thyroglobulin NN thyroid NN thyroid-stimulating JJ thyroidal JJ thyroids NNS thyronine NN thyrotoxic JJ thyrotrophic JJ thyrotrophin NN thyroxine NN thyroxine-binding JJ tibialis NNS tick VB ticked VBD ticker NN tickertape NN ticket NN ticket'til NN ticket-transfer NN ticket-writing NN ticketed VBN ticketing VBG tickets NNS ticking VBG ticklebrush NN tickled VBD ticklish JJ ticks NNS tidal JJ tidbit NN tidbits NNS tide NN tidelands NNS tides NNS tidewater NN tidied VBD tidily RB tidiness NN tidings NNS tidy JJ tidying VBG tie NN tie-breaker NN tie-breaking JJ tie-in NN tie-ins NNS tie-up NN tie-ups NNS tied VBN tiefes FW tier NN tiered JJ tiering NN tiers NNS ties NNS tiff NN tiffs NNS tiger NN tiger-paw NN tigers NNS tight JJ tight-fisted JJ tight-fistedness NN tight-lipped JJ tight-turn JJ tighten VB tightened VBD tightener NN tightening VBG tightens VBZ tighter JJR tightest JJS tightest-fitting JJS tightfisted JJ tightly RB tightness NN tightrope NN tigress NN til IN tile NN tile-roofed JJ tiled JJ tiles NNS till IN tilled JJ tiller NN tilling VBG tilt NN tilt-rotor JJ tilt-top JJ tilted VBD tilth NN tilting VBG tilts VBZ timber NN timber-dependent JJ timber-state JJ timbered JJ timberland NN timberlands NNS timbers NNS timbre NN time NN time-&-motion JJ time-cast JJ time-consuming JJ time-delay JJ time-honored JJ time-hotels NNS time-limited JJ time-line NN time-on-the-job JJ time-poor JJ time-proven JJ time-sensitive JJ time-servers NNS time-share JJ time-shares NNS time-span NN time-strapped JJ time-table NN time-temperature JJ time-tested JJ time-zone JJ timed VBN timeless JJ timelier JJR timeliness NN timely JJ timeout NN timeouts NNS timepiece NN timer NN timers NNS times NNS timetable NN timetables NNS timeworn JJ timid JJ timidity NN timidly RB timing NN timorous JJ timpani NNS tin NN tin-roofed JJ tincture NN tinder NN tines NNS tinged VBN tinges NNS tingling VBG tinier NN tiniest JJS tinker VB tinkered VBN tinkering NN tinkers NNS tinkled VBD tinkling VBG tinning VBG tinny JJ tinplated VBN tins NNS tinsel NN tint VBP tintable JJ tinted VBN tinting NN tinting-film NN tints NNS tintype NN tiny JJ tip NN tip-off NN tip-toe NN tipoff NN tipped VBD tippee NN tipper NN tipping VBG tipple VBP tippling JJ tips NNS tipsters NNS tipsy JJ tiptoe VB tiptoed VBD tiptoeing VBG tirade NN tirades NNS tire NN tire-industry NN tire-kickers NNS tire-maker NN tire-makers NNS tire-making JJ tire-patching JJ tired VBN tiredly RB tiredness NN tireless JJ tirelessly RB tiremaker NN tires NNS tiresome JJ tiring VBG tissue NN tissue-transplant JJ tissue. NN tissues NNS titanate NN titanic JJ titanium NN titans NNS titer NN titers NNS tithes NNS titian-haired JJ titillating VBG title NN title,'first NN title-holder NN title-insurance JJ titled VBN titles NNS titration NN titre FW tits NNS titter NN titters NNS titties NNS titular JJ to TO to'life NN to'women's NNS to-and-fro RB to-day NN to-do NN to-morrow RB to-the-death NN to... : toad NN toadies NNS toady NN toadying JJ toadyism NN toast NN toasted VBD toasted-nut NN toaster NN toasting VBG tobacco NN tobacco-ad JJ tobacco-growing JJ tobacco-industry NN tobacco-juice NN tobacco-product JJ toccata NN toconsolidated VBN today NN toddler NN toddlers NNS tode VBN toe NN toe-tips NNS toehold NN toeholds NNS toenails NNS toes NNS toffee NN tofu NN toga NN together RB togetherness NN togs NNS toil VBP toiled VBD toilet NN toiletries NNS toilets NNS toiling VBG toilsome JJ token JJ tokenish JJ tokens NNS told VBD tole NN tolerable JJ tolerance NN tolerant JJ tolerate VB tolerated VBN tolerates VBZ tolerating VBG toleration NN toll NN toll-free JJ toll-rate JJ toll-road NN toll-tele-phone JJ tolled VBN tollgate NN tollhouse NN tolls NNS tollways RB tolylene NN tomato NN tomato-red NN tomatoes NNS tomb NN tomblike JJ tombs NNS tombstone NN tombstones NNS tomes NNS tomography NN tomorrow NN tomorrow,will NN ton NN ton-mile JJ ton-per-year JJ tonal JJ tonalities NNS tonally RB tone NN tone-generating JJ toned VBN toned-down JJ toneless JJ toner NN tones NNS tongs NNS tongue NN tongue-in-cheek JJ tongue-lashing NN tongue-thrusting NN tongue-tied JJ tongue-twister NN tongued VBD tongues NNS tonic NN tonics NNS toniest JJS tonight RB tonite NN tonnage NN tonnages NNS tons NNS tonsil NN tonsils NNS tony JJ too RB too-expensive JJ too-hearty JJ too-large JJ too-naked JJ too-rapid JJ too-shiny JJ too-simple-to-be-true JJ took VBD tooke VBD tool NN tool-and-die JJ tool-kit NN tooling VBG toolmaker NN tools NNS tooted VBD tooth NN tooth-paste NN tooth-straightening NN toothbrush NN toothbrushes NNS toothless JJ toothpaste NN toothpastes NNS tootles VBZ tootley-toot-tootled VBN top JJ top-10 JJ top-drawer NN top-flight JJ top-four JJ top-grade JJ top-heavy JJ top-level JJ top-loaders NNS top-management JJ top-notch JJ top-of-the-line JJ top-performing JJ top-priority JJ top-quality JJ top-ranked JJ top-ranking JJ top-rated JJ top-secret JJ top-selling JJ top-tang JJ top-tier JJ top-to-bottom JJ top-yielding JJ top... : topaz NN topcoat NN topcoats NNS topgallant NN topgrade JJ topiary JJ topic NN topical JJ topicality NN topics NNS topless JJ topmost JJ topnotch JJ topof-the-line JJ topographic JJ topography NN topped VBD topper NN topping VBG toppings NNS topple VB toppled VBN toppling VBG tops NNS topsoil NN topsy-turvy JJ torch NN torch-lit JJ torchbearer NN torched VBD torches NNS tore VBD torment NN tormented VBN tormenters NNS tormenting VBG tormentors NNS torments VBZ torn VBN tornado NN tornadoes NNS toronto NNP torpedo VB torpedoed VBN torpedoes NNS torpedoing VBG torpid JJ torpor NN torque NN torquer NN torquers NNS torrent NN torrents NNS torrid JJ torsion NN torso NN torso-defining JJ torsos NNS tort NN tortillas NNS tortoise NN tortoises NNS torts NNS tortuous JJ torture NN tortured VBN tortures NNS tos NNS toss VB tossed VBD tossers NNS tosses NNS tossing VBG tot NN total JJ total-ban NN total-cost JJ totaled VBD totaling VBG totalistic JJ totalitarian JJ totalitarianism NN totality NN totalled VBD totalling VBG totally RB totals VBZ tote VB toted VBN totem NN totemic JJ toting VBG toto FW totted VBN totter VB tottering JJ touch NN touch-screen JJ touch-starved JJ touch-tone JJ touchdown NN touchdowns NNS touched VBD touches NNS touching VBG touchstone NN touchstones NNS touchy JJ tough JJ tough-looking JJ tough-minded JJ tough-talking NN toughen VB toughened VBD toughening VBG toughens VBZ tougher JJR toughest JJS toughest-ever JJS toughest-guy-in-the-old-days JJ toughing VBG toughness NN toughs NNS tour NN tour\/theme NN toured VBD touring VBG tourism NN tourist NN tourist-advertising NN tourist-delivery JJ tourists NNS tournament NN tournaments NNS tourney NN tours NNS toursists NNS tousled VBN tout VB touted VBN touting VBG touts VBZ tow NN toward IN towardes IN towards IN towboats NNS towed VBD towel NN toweling NN towels NNS tower NN towering JJ towers NNS town NN town-house JJ town-watching JJ towne NN townhouse NN townhouses NNS towns NNS township NN townships NNS townsman NN townsmen NNS townspeople NN tows NNS toxic JJ toxic-waste NN toxic-waste-dump JJ toxicant NN toxicity NN toxicologist NN toxicologists NNS toxicology NN toxics NNS toxin NN toxins NNS toy NN toy-making JJ toy-market NN toy-store NN toying VBG toymakers NNS toys NNS trace NN traceable JJ traced VBN tracers NNS tracery NN traces NNS trachea NN tracing VBG tracings NNS track NN track-signal JJ trackage NN tracked VBN tracking VBG trackless JJ tracks VBZ tract NN tractor NN tractor-semitrailer NN tractor-trailer NN tractors NNS tracts NNS trade NN trade-ad NN trade-allocating NN trade-clearing JJ trade-deficit NN trade-distorting JJ trade-ethnic JJ trade-group NN trade-in NN trade-liberalizing JJ trade-magazine JJ trade-mark NN trade-off NN trade-offs NNS trade-preparatory NN trade-processing NN trade-school NN trade-union NN trade-up JJ tradeable JJ traded VBN tradedistorting JJ trademark NN trademarks NNS tradeoff NN tradeoffs NNS trader NN traders NNS trades NNS tradesmen NNS trading NN trading-a NN trading-account JJ trading-company NN trading-fraud NN trading-house JJ trading-oriented JJ trading-related JJ trading-room NN tradition NN tradition-bound JJ tradition-minded JJ traditional JJ traditionalism NN traditionalist NN traditionalistic JJ traditionalists NNS traditionalized VBN traditionally RB traditionnel FW traditions NNS traduce VB traduced VBN traffic NN traffic-control NN traffic-safety NN traffic-systems NNS trafficked VBD trafficker NN traffickers NNS trafficking NN tragedians NNS tragedies NNS tragedy NN tragi-comic JJ tragic JJ tragically RB tragicomic JJ trail NN trail-blazing JJ trail-setters NNS trail-worn JJ trailblazing VBG trailed VBD trailer NN trailers NNS trailing VBG trails NNS train NN trained VBN traineeships NNS trainer NN trainers NNS training NN training-wage JJ training. NN trainman NN trains NNS traipse VB traipsing VBG trait NN traitor NN traitorous JJ traitors NNS traits NNS trajectory NN trammel VB tramp JJ tramped VBD tramping VBG trample VB trampled VBN tramples VBZ trampling VBG tramps VBZ tramway NN trance NN trances NNS tranche NN tranquil JJ tranquility NN tranquilizer NN tranquilizers NNS tranquilizing JJ tranquillity NN trans-Atlantic JJ trans-Canadian JJ trans-Pacific JJ trans-Panama JJ trans-illuminated JJ trans-illumination NN trans-lingually RB trans-political JJ transact VB transacted VBN transacting VBG transaction NN transaction-entry NN transactions NNS transactionstructuring NN transaminase NN transatlantic JJ transbay JJ transborder JJ transcend VBP transcendant JJ transcended VBD transcendence NN transcendent JJ transcendental JJ transcending VBG transcends VBZ transcontinental JJ transcribe VB transcribed VBN transcript NN transcription NN transcripts NNS transcultural JJ transducer NN transducers NNS transduction NN transfer NN transfer-pricing JJ transfer-tax NN transferable JJ transfered VBN transferee NN transference NN transfering VBG transferor NN transferors NNS transferrable JJ transferral JJ transferred VBN transferring VBG transfers NNS transfixing VBG transform VB transformation NN transformed VBN transformer NN transformers NNS transforming VBG transforms VBZ transfused VBN transfusion NN transfusions NNS transgenic JJ transgressed VBD transgression NN transience NN transient JJ transients NNS transistor NN transistor-radio-sized JJ transistors NNS transit NN transit-association NN transition NN transitional JJ transitions NNS transitory JJ translate VB translated VBN translates VBZ translating VBG translation NN translations NNS translator NN translatorfor NN|IN translators NNS translucence NN translucency NN translucent JJ transluscent JJ transmissible JJ transmission NN transmission-product NN transmissions NNS transmit VB transmits VBZ transmittable JJ transmitted VBN transmitter NN transmitters NNS transmitting VBG transmogrified VBD transmutation NN transmuted VBN transnational JJ transoceanic JJ transom NN transoms NNS transparencies NNS transparency NN transparent JJ transparent... : transparently RB transpirating VBG transpiration NN transpired VBN transpiring VBG transplant NN transplantable JJ transplantation NN transplanted VBN transplanting VBG transplants NNS transponder NN transport NN transportable JJ transportation NN transportation-cost JJ transportation-equipment NN transportation-services JJ transportation-where NN|WRB transported VBN transporter NN transporters NNS transporting VBG transports NNS transposed VBN transposition NN transshipment NN transversally RB transverse JJ transversely RB transversus NN transvestites NNS transvestitism NN trap NN trapdoor NN trapdoors NNS trapeze NN trapezoid NN trapped VBN trapper NN trapping VBG trappings NNS traps NNS trash NN trash-bag NN trashed VBN trashing NN trauma NN traumas NNS traumatic JJ traumatized VBD travail NN travails NNS travel NN travel-agency NN travel-leisure JJ travel-management NN travel-related JJ travel-service NN travel-services NNS traveled VBD traveler NN travelers NNS travelin VBG traveling VBG travelled JJ traveller NN travellers NNS travelling VBG travelogue NN travelogue-like JJ travelogues NNS travelrestrictions NNS travels VBZ traverse VB traversed VBN traversing VBG travesty NN trawl NN trawler NN tray NN trays NNS trazadone NN treacheries NNS treacherous JJ treachery NN tread VB treading VBG treadmill NN treadmills NNS treads VBZ treament NN treason NN treasonous JJ treasure NN treasure-trove NN treasured VBN treasurer NN treasurers NNS treasures NNS treasuries NNS treasury NN treasury-management NN treat VB treatable JJ treated VBN treaties NNS treating VBG treatise NN treatises NNS treatment NN treatments NNS treats VBZ treaty NN treaty-making NN treaty-negotiating JJ treble JJ trebled VBN tree NN tree-clumps NNS tree-farming JJ tree-huggers NNS tree-lined JJ tree-planting NN tree-shaded JJ treehouse NN treeless JJ treelike JJ trees NNS treetops NNS trek NN trekked VBD treks VBZ trellises NNS tremble VB trembled VBD trembles VBZ trembling VBG tremblor NN tremendous JJ tremendously RB tremolo NN tremor NN tremors NNS tremulous JJ tremulously RB trench NN trenchant JJ trenchermen NNS trenches NNS trend NN trend-followers NNS trend-following JJ trend-setter NN trend-setters NNS trend-setting JJ trend-spotter NN trended VBN trendier JJR trendiest JJS trending VBG trends NNS trendsetter NN trendy JJ trepidation NN trespass NN trespassed VBN trespasses NNS trespassing NN tresses NNS trestle NN trestles NNS tri-colored JJ tri-iodothyronine NN tri-jet NN tri-motor NN tri-state JJ triable JJ triad NN triage NN trial NN trial-book JJ trials NNS triamcinolone NN triangle NN triangles NNS triangular JJ tribal JJ tribe NN tribes NNS tribesmen NNS tribulation NN tribunal NN tribunals NNS tribute NN tributes NNS trichloroacetic JJ trichloroethylene NN trick NN trick... : tricked VBN trickery NN trickier JJR trickiest JJS trickle NN trickled VBN trickling VBG tricks NNS trickster NN tricky JJ tricolor JJ tried VBD triennial NN tries VBZ trifle NN trifled VBN trifling JJ trigger VB trigger-happy JJ triggered VBN triggering VBG triggers NNS triglycerides NNS trigonal JJ trijets NNS trilateral JJ trill NN trilled VBD trillion CD trillion-dollar JJ trillion-plus NN trillions NNS trills NNS trilogy NN trim VB trimester NN trimesters NNS trimmed VBN trimmer JJR trimming VBG trimmings NNS trims VBZ trinket NN trinkets NNS trio NN triol NN trip NN trip-hammer NN tripartite JJ tripe NN triphenylarsine NN triphenylphosphine NN triphenylstibine NN triphosphopyridine JJ triphosphorous JJ triple JJ triple-A JJ triple-A-rated JJ triple-A\ JJ triple-B JJ triple-B-minus NNP triple-B-plus JJ triple-C JJ triple-Crated JJ triple-a JJ triple-checked VBD triple-crown JJ triple-digit JJ triple-sealed JJ triple-tank JJ triple-witching JJ tripled VBN triples NNS triplet NN triplets NNS triplication NN tripling VBG tripod NN tripods NNS tripolyphosphate NN tripped VBD trippin NN tripping VBG trips NNS triptych NN tris NNS triservice NN triskaidekaphobia NN trisodium NN tristate JJ trite JJ tritium NN triumph NN triumphant JJ triumphantly RB triumphed VBD triumphs NNS triumvirate NN trivia NNS trivial JJ triviality NN trivialize VB trivializing VBG trobles NNS trod VBN trodden JJ trodding VBG troika NN trolley NN trollop NN trolls NNS trombone NN trombones NNS trombonist NN trompe-l'oeil NN troop NN trooper NN troopers NNS trooping VBG troops NNS troopship NN troopships NNS trop FW trophies NNS tropho JJ trophy NN tropical JJ tropical-fruit NN tropics NNS tropocollagen NN trot NN trotted VBD trotter NN troubie NN trouble NN trouble-free JJ trouble-shooter NN trouble-shooting NN troubled JJ troublemakers NNS troubles NNS troubleshooter NN troublesome JJ troubling JJ trough NN troughed VBD troughs NNS trounced VBD trouncing NN troup NN troupe NN troupes NNS trouser NN trousers NNS trousers-pockets NNS trout NN trove NN trowel NN tru JJ truant JJ truce NN truck NN truck-bed NN truck-building JJ truck-fleet JJ truck-maker NN truck-manufacturing JJ truck-parts NNS truck-refrigeration NN truck-rental JJ truck-sales NNS truckdriver NN trucked VBN trucker NN truckers NNS trucking NN truckloads NNS trucks NNS truculence NN truculent JJ trudge NN trudged VBD trudging VBG true JJ true-false JJ truer JJR truest JJS truism NN truley RB truly RB trump NN trumped-up JJ trumpet NN trumpeted VBD trumpeter NN trumpeting VBG trumpets NNS trumps NNS truncated VBN truncheons NNS trundle NN trundled VBD trundles VBZ trundling VBG trunk NN trunks NNS trussed-up JJ trusses NNS trust NN trust.. NN trusted VBN trustee NN trustees NNS trusteeship NN trusteth VBP trustfully RB trusting JJ trustingly RB trusts NNS trustworthy JJ truth NN truth-in-lending NN truth-packed NN truth-revealing JJ truthful JJ truthfully RB truthfulness NN truths NNS try VB tryin NN trying VBG tryna VBG tryouts NNS tryst NN tsh NN tsk UH tsunami NN tsunami-warning JJ tt NN tub NN tuba NN tube NN tube-nosed JJ tubercular JJ tuberculosis NN tubers NNS tubes NNS tubing NN tubs NNS tubular JJ tubules NNS tuck VBP tucked VBN tucking VBG tufts NNS tug NN tug-o'-war NN tug-of-war NN tugboat NN tugged VBD tugging VBG tuition NN tuitions NNS tularemia NN tulip NN tulip-shaped JJ tulips NNS tulle NN tultul FW tumble NN tumbled VBD tumbledown JJ tumbler NN tumbles VBZ tumbleweed NN tumbling VBG tumbrels NNS tumefaciens NN tummy NN tumor NN tumor-necrosis JJ tumor-suppressing JJ tumor-suppressor JJ tumor-suppressors NNS tumors NNS tumours NNS tumult NN tumultuous JJ tuna NN tundra NN tune NN tune-belly NN tune-in JJ tuned VBN tuneful JJ tunefulness NN tunelessly RB tunes NNS tung NN tungsten NN tunic NN tuning VBG tunnel NN tunneled VBD tunnels NNS turban NN turban10 NN|CD turbans NNS turbinates NNS turbine NN turbine-engine JJ turbine-generators NNS turbines NNS turbo NN turbo-charged JJ turbofan NN turbogenerator NN turboprop NN turboprops NNS turbulence NN turbulent JJ turf NN turf-care JJ turf-hungry JJ turgid JJ turkey NN turkeys NNS turmoil NN turmoils NNS turn VB turn-of-the-century JJ turn-ons NNS turn-out JJ turnabout NN turnaround NN turnaround\/takeover JJR turnarounds NNS turne VB turned VBD turned-up JJ turnery NN turning VBG turnings NNS turnips NNS turnkey NN turnoff NN turnout NN turnouts NNS turnover NN turnpike NN turnpikes NNS turns VBZ turntable NN turpentine NN turquoise JJ turret NN turrets NNS turtle NN turtle-neck JJ turtlebacks NNS turtleneck NN turtles NNS tusk NN tusks NNS tussle NN tussled VBD tutelage NN tutor NN tutored VBN tutorials NNS tutoring VBG tutors NNS tuxedo NN tuxedo-rental JJ tuxedoed JJ tuxedos NNS tv NN tva NN twaddle NN twang NN twangy JJ tweaked VBD tweaking VBG tweed NN tweeds NNS tweedy JJ tweet NN tweeted VBD tweety-bird JJ tweezed VBN tweezers NNS twelfth JJ twelve CD twelve-hour JJ twelve-year JJ twelve-year-old JJ twelvefold JJ twenties NNS twentieth JJ twentieth-century JJ twenty CD twenty-dollar JJ twenty-eight JJ twenty-eighth JJ twenty-fifth JJ twenty-first JJ twenty-first-century JJ twenty-five CD twenty-five-dollar JJ twenty-five-year-old JJ twenty-four CD twenty-mile JJ twenty-nine CD twenty-nine-foot-wide JJ twenty-one CD twenty-page JJ twenty-seven CD twenty-six CD twenty-three CD twenty-two CD twenty-year JJ twice RB twice-a-day JJ twice-a-year JJ twice-around JJ twice-daily JJ twice-extended JJ twice-monthly JJ twice-yearly JJ twiddled VBD twiddling VBG twigged VBD twiggy-looking JJ twigs NNS twilight NN twin JJ twin-blade JJ twin-deficit NN twin-engine JJ twin-engined JJ twin-jet NN twin-jets NN twin-line JJ twin-rotor JJ twindam NN twine NN twined VBD twinge NN twinges NNS twinjets NNS twinkle NN twinkling VBG twinned VBN twins NNS twirled JJ twirler NN twirling VBG twirlingly RB twirls VBZ twirly JJ twise RB twist NN twisted VBN twister NN twister-coners NNS twisting VBG twists NNS twisty JJ twitch NN twitched VBD twitching VBG twitter NNP twittered VBD twittering VBG two CD two-and-a-half JJ two-and-a-half-mile JJ two-bedroom JJ two-billion-Australian-dollar JJ two-bit JJ two-bits NNS two-burner JJ two-button JJ two-by-four NN two-by-fours NNS two-career JJ two-class JJ two-color JJ two-colored JJ two-component JJ two-day JJ two-day-old JJ two-digit JJ two-dimensional JJ two-disc JJ two-door JJ two-dozen JJ two-drug JJ two-edged JJ two-engine JJ two-evening JJ two-family JJ two-fisted JJ two-floor JJ two-fold JJ two-foot JJ two-for-one JJ two-game NN two-hit JJ two-hour JJ two-hundredths NNS two-inch JJ two-inch-square JJ two-inches NNS two-income JJ two-lane JJ two-letter JJ two-line JJ two-mark JJ two-mile JJ two-minute JJ two-month JJ two-nosed JJ two-note JJ two-page JJ two-parent JJ two-part JJ two-party JJ two-percentage-point JJ two-product JJ two-pronged JJ two-record JJ two-room JJ two-round JJ two-run JJ two-season JJ two-seat JJ two-seater JJ two-seaters JJ two-sevenths NNS two-step JJ two-story JJ two-stroke JJ two-syllable JJ two-system JJ two-tail JJ two-term JJ two-thirds NNS two-tier JJ two-tiered JJ two-time JJ two-time-losers JJ two-timed VBN two-timing JJ two-to-three JJ two-tone JJ two-track JJ two-valued JJ two-way JJ two-week JJ two-weeks JJ two-wheel JJ two-wheel-drive JJ two-year JJ two-year-long JJ two-year-old JJ two... : twofold JJ twopoint NN twos NNS twosome NN twothirds NNS twotiered JJ twotiming VBG tycoon NN tycoons NNS tying VBG tyke NN tyme NN type NN typecast VB typecasting VBG typed VBN typefaces NNS types NNS typescript NN typesetters NNS typesetting NN typewriter NN typewriters NNS typewriting NN typewritten JJ typhoid NN typhoon NN typhoons NNS typhus NN typical JJ typicality NN typically RB typically... : typified VBN typifies VBZ typify VBP typifying VBG typing NN typist NN typists NNS typographic JJ typographical JJ typography NN typology NN tyrannical JJ tyrannis FW tyrannize VB tyranny NN tyrant NN tyrants NNS tyrosine NN u PRP u. NN ubiquitous JJ ubiquitousness NN ubiquity NN udders NNS udon FW ugh UH uglier JJR ugliness NN ugly JJ uh UH uh-huh UH uh-uh UH uhhu UH ulcer NN ulcerated JJ ulcerations NNS ulcerative JJ ulcers NNS ultimate JJ ultimately RB ultimatum NN ultimatums NNS ultra JJ ultra-efficient JJ ultra-fast JJ ultra-high-speed JJ ultra-liberal JJ ultra-low-tar JJ ultra-modern JJ ultra-pasteurized JJ ultra-right JJ ultra-safe JJ ultra-thin JJ ultra-violet JJ ultracentrifugally RB ultracentrifugation NN ultracentrifuge NN ultramarine NN ultramodern JJ ultrasonic JJ ultrasonically RB ultrasonics NNS ultrasound NN ultravehement JJ ultraviolet JJ um FW umber JJ umbrage NN umbrella NN umbrellas NNS umpire NN umpteenth JJ un FW un-American JJ un-Christian JJ un-English NNP un-Swiss JJ un-Westernizable JJ un-advertisers NNS un-advertising NN un-aided JJ unMcGuanean JJ unabashed JJ unabated JJ unabatingly RB unable JJ unable-to-locate JJ unabridged JJ unabsorbed JJ unacceptable JJ unacceptably RB unaccommodating JJ unaccompanied JJ unaccountable JJ unaccountably RB unaccounted JJ unaccustomed JJ unachievable JJ unachieved VBN unacknowledged JJ unacquainted VBN unaddressed JJ unadited JJ unadjusted JJ unadorned JJ unadulterated JJ unaffected JJ unaffiliated JJ unaffordable JJ unafraid JJ unaggressive JJ unagi FW unaided JJ unalienable JJ unallocable JJ unalloyed JJ unalluring JJ unalterable JJ unaltered JJ unambiguity NN unambiguous JJ unambiguously RB unamended JJ unamortized JJ unamused VBN unamusing JJ unanalyzed JJ unanimity NN unanimous JJ unanimously RB unannounced JJ unanswerable JJ unanswered JJ unanticipated JJ unapologetic JJ unappealing VBG unappeasable JJ unappeasably RB unappreciated JJ unapproved JJ unarmed JJ unashamedly RB unasked JJ unassailable JJ unassisted JJ unassuming JJ unasterisked JJ unattached JJ unattainable JJ unattended JJ unattractive JJ unaudited JJ unauthentic JJ unauthorized JJ unavailability NN unavailable JJ unavailing JJ unavoidable JJ unavoidably RB unaware JJ unawareness NN unawares RB unbalance NN unbalanced JJ unbanning VBG unbearable JJ unbearably RB unbeknownst JJ unbelievable JJ unbelievably RB unbelieving JJ unbent JJ unbiased JJ unbidden JJ unbleached JJ unblemished JJ unblinking JJ unblinkingly RB unblock VB unblushing JJ unborn JJ unbound JJ unbounded JJ unbreakable JJ unbridled JJ unbroken JJ unbundle VB unbundled VBN unburdened JJ unburned JJ uncalled JJ uncannily RB uncanny JJ uncap VB uncaring JJ uncataloged VBN uncaused JJ unceasing JJ unceasingly RB uncensored JJ unceremoniously RB uncertain JJ uncertainly RB uncertainties NNS uncertainty NN uncertified JJ unchallenged JJ unchangeable JJ unchanged JJ unchangedat JJ unchanging JJ uncharacteristic JJ uncharacteristically RB uncharged JJ uncharted JJ unchecked JJ unchlorinated VBN unchristian JJ uncircumcision NN uncivil JJ unclaimed JJ unclasping VBG unclassified JJ uncle NN unclean JJ unclear JJ unclenched VBN uncles NNS unclothed JJ unclouded JJ uncluttered JJ unco-operative JJ uncoached JJ uncoated JJ uncoiling VBG uncollaborated JJ uncollectable JJ uncolored JJ uncombable JJ uncombed VBN uncomfortable JJ uncomfortably RB uncomforted JJ uncommitted JJ uncommon JJ uncommonly RB uncommunicative JJ uncompensated JJ uncompetitive JJ uncomplaining JJ uncomplainingly RB uncomplicated JJ uncompromising JJ unconcealed VBN unconcern NN unconcerned JJ unconcernedly RB unconditional JJ unconditionally RB unconditioned JJ unconfirmed JJ uncongenial JJ unconnected JJ unconquerable JJ unconscionable JJ unconscious JJ unconsciously RB unconsolidated JJ unconstitutional JJ unconstitutionally RB uncontested JJ uncontrollable JJ uncontrollably RB uncontrolled JJ unconventional JJ unconvinced JJ unconvincing JJ uncooperative JJ uncorked VBD uncorrected JJ uncounted JJ uncountered JJ uncourageous JJ uncousinly JJ uncouth JJ uncover VB uncovered VBN uncovering VBG uncreative JJ uncritical JJ uncritically RB unction NN uncurled VBD uncut JJ und FW undamaged JJ undated JJ undaunted JJ undecided JJ undecideds NNS undeclared JJ undecorated JJ undedicated VBN undefeated JJ undefined JJ undelivered JJ undemocratic JJ undeniable JJ undeniably RB undependable JJ undepicted JJ under IN under-35 JJ under-50 JJ under-50s NNS under-achievement NN under-achievers NNS under-depreciated NN under-developed JJ under-funded JJ under-inclusion NN under-owned JJ under-performing JJ under-reported JJ under-represented JJ under-researched JJ under-secretary NN under-serviced JJ under-the-table JJ under-three-years JJ underachiever NN underachievers NNS underage JJ underappreciated JJ underarm NN underbedding NN underbelly NN underbracing NN underbrush NN undercapitalization NN undercapitalized JJ underclass NNS underclassman NN underclothes NNS undercover JJ undercurrent NN undercut VB undercuts VBZ undercutting VBG underdeveloped JJ underdog NN underdressed JJ undereducated JJ underemployed JJ underemployment NN underenforces VBZ underestimate VB underestimated VBN underestimates VBZ underestimation NN underfoot RB underfunded VBN undergarment NN undergirded VBD undergirding NN undergo VB undergoes VBZ undergoing VBG undergone VBN undergrads NNS undergraduate JJ undergraduates NNS underground JJ underground-storage NN undergrowth NN underhanded JJ underhandedness NN underinvestigated JJ underlay VBP underlie VBP underlies VBZ underline VB underlined VBD underlines VBZ underling NN underlings NNS underlining VBG underlying VBG undermine VB undermined VBN undermines VBZ undermining VBG underneath IN underpaid JJ underperform VB underperformance NN underperformed VBN underperformers NNS underperforming VBG underperforms VBZ underpin VB underpinned VBN underpinning NN underpinnings NNS underpins VBZ underplayed VBN underprepared JJ underpriced JJ underpricing VBG underprivileged JJ underrate VB underrated VBN underreacting VBG underreported VBN underrepresented VBN underscore VBP underscored VBD underscores VBZ underscoring VBG undersea JJ undersecretary NN underselling VBG underserved JJ undershirt NN underside NN undersize JJ undersized VBN undersold NN understaffs VBZ understand VB understand\/adopt VB understandable JJ understandably RB understanded VBN understanding NN understandingly RB understandings NNS understands VBZ understate VBP understated VBN understatement NN understates VBZ understating VBG understood VBN understructure NN understudied VBD undersubscription NN undertake VB undertaken VBN undertaker NN undertakes VBZ undertaking NN undertakings NNS undertone NN undertones NNS undertook VBD undertow NN underused VBN underutilization NN underutilized VBN undervalued VBN undervaluing VBG underwater JJ underway RB underwear NN underweighted VBN underwent VBD underwhelmed VBN underwiters NNS underworked JJ underworld NN underwrite VB underwriter NN underwriters NNS underwrites VBZ underwriting NN underwritings NNS underwritten VBN underwrote VBD undeserved JJ undesirable JJ undesirably RB undetectable JJ undetected JJ undetermined JJ undeveloped JJ undid VBD undifferentiated JJ undigested JJ undiluted JJ undiminished JJ undimmed VBN undiplomatic JJ undisciplined JJ undisclosed JJ undisguised JJ undisputed JJ undisrupted JJ undistinguished JJ undisturbed JJ undiversifiable JJ undiversified JJ undivided JJ undo VB undoing NN undone VBN undoubtedly RB undrawn NN undreamed VBN undreamt VBN undress NN undressed VBD undressing VBG undrinkable JJ undue JJ undulate VB undulated VBD undulating JJ unduly RB undying JJ une FW unearned JJ unearth VB unearthed VBN unearthing VBG unearthly JJ unease NN uneasily RB uneasiness NN uneasy JJ uneconomic JJ uneconomical JJ unedifying JJ uneducated JJ unelected JJ unemotional JJ unemployed JJ unemployment NN unencumbered JJ unending JJ unendurable JJ unenforceable JJ unenforcible JJ unenlightened JJ unenthusiastic JJ unenticing JJ unenunciated JJ unenviable JJ unenvied JJ unequal JJ unequaled JJ unequalled JJ unequally RB unequivocal JJ unequivocally RB unerring JJ unerringly RB unescorted JJ unethical JJ unethically RB uneven JJ unevenly RB uneventful JJ uneventfully RB unexamined JJ unexciting JJ unexecuted VBN unexercised JJ unexpected JJ unexpectedly RB unexpended VBN unexplainable JJ unexplained JJ unexplored JJ unfailing JJ unfailingly RB unfair JJ unfair-trade JJ unfairly RB unfairness NN unfaithful JJ unfaltering VBG unfalteringly RB unfamiliar JJ unfamiliarity NN unfashionable JJ unfastened VBD unfathomable JJ unfavorable JJ unfavorably RB unfazed VBN unfeasible JJ unfelt JJ unfenced JJ unfertile JJ unfertilized VBN unfetter VB unfettered JJ unfilled JJ unfinished JJ unfired VBN unfit JJ unfitting JJ unfixed JJ unflagging JJ unflaggingly RB unflaky JJ unflappable JJ unflattering JJ unflatteringly RB unfleshed VBN unflinching JJ unfocused JJ unfocussed VBN unfold VB unfolded VBD unfolding VBG unfoldment NN unfolds VBZ unforeseen JJ unforethought JJ unforgettable JJ unforgivable JJ unforgiving JJ unformed JJ unforseen JJ unfortunate JJ unfortunately RB unfortunates NNS unfounded JJ unfree JJ unfriendly JJ unfrocking NN unfrosted VBN unfrozen JJ unfulfilled JJ unfunded JJ unfunnily RB unfunny JJ unfurled VBN ungainly JJ ungallant JJ ungentlemanly JJ unglamorous JJ unglued JJ ungodly JJ ungovernable JJ ungoverned JJ ungracious JJ ungrateful JJ ungratified JJ unguaranteed JJ unguided JJ unhappiest JJS unhappily RB unhappiness NN unhappy JJ unharmed JJ unharmonious JJ unhealed JJ unhealthily RB unhealthy JJ unheard JJ unheard-of JJ unheated JJ unhedged VBN unheeded JJ unheeding VBG unhelpful JJ unhelpfully RB unheralded JJ unheroic JJ unhesitant JJ unhesitatingly RB unhindered JJ unhinged VBN unhip JJ unhitched VBD unhocked VBN unholy JJ unhook VB unhurried JJ unhurriedly RB unhurt JJ unhusked VBN uni-directional JJ unicorns NNS unicycle NN unidentifiable JJ unidentified JJ unidirectional JJ unification NN unificationists NNS unifications NNS unified JJ unifier NN unifies VBZ uniform NN uniformed JJ uniformity NN uniformly RB uniforms NNS unify VB unifying VBG unilateral JJ unilateralism NN unilateralist JJ unilateralists NNS unilaterally RB unimaginable JJ unimaginative JJ unimpaired JJ unimpassioned JJ unimpeachable JJ unimpeachably RB unimpeded JJ unimportant JJ unimposing JJ unimpressed JJ unimpressive JJ unimproved JJ unincorporated JJ unindicted JJ uninfected JJ uninfluenced VBN uninformative JJ uninformed JJ uninhabitable JJ uninhabited JJ uninhibited JJ uninitiate NN uninitiated JJ uninjectable JJ uninjured JJ uninominal JJ uninspected JJ uninspired JJ uninsurable JJ uninsured JJ unintelligible JJ unintended JJ unintentional JJ unintentionally RB uninterested JJ uninteresting JJ uninterruptable JJ uninterrupted JJ uninterruptedly RB uninterruptible JJ uninvited JJ uninviting JJ uninvolved JJ union NN union-bidder NN union-busting JJ union-company JJ union-industry NN union-management JJ union-owned JJ union-represented JJ union-sponsored JJ unionist NN unionists NNS unionized JJ unions NNS unique JJ unique-ingrown-screwedup JJ uniquely RB uniqueness NN uniramous JJ unison NN unissued JJ unit NN unit-labor JJ unit-making VBG unit-price NN unitary JJ unite VB united VBN unites VBZ unitholders NNS unities NNS uniting VBG unitized VBN units NNS units-Texas NNP unity NN univalent JJ universal JJ universalistic JJ universality NN universalization NN universalize VBP universally RB universals NNS universe NN universe-shaking JJ universities NNS university NN university-based JJ university-educated JJ university-funded JJ university-trained JJ university-wide JJ unjacketed JJ unjust JJ unjustifiable JJ unjustifiably RB unjustified JJ unjustly RB unk-unks NNS unkempt JJ unkind JJ unknowable JJ unknowing JJ unknowingly RB unknown JJ unknowns NNS unlabeled JJ unlaced VBD unlacing VBG unlamented JJ unlashed VBD unlatch VB unlaundered VBN unlawful JJ unlawfully RB unleaded JJ unleash VB unleashed VBN unleashes VBZ unleashing VBG unleavened JJ unless IN unleveled VBN unlicensed JJ unlike IN unlikely JJ unlimited JJ unlined JJ unlinked JJ unlisted JJ unlit NN unliterary JJ unload VB unloaded VBN unloading VBG unloads VBZ unlock VB unlocked VBD unlocking VBG unlocks VBZ unlovable JJ unlovely JJ unluckily RB unlucky JJ unmagnified JJ unmalicious JJ unmanageable JJ unmanageably RB unmanaged JJ unmanned JJ unmarked JJ unmarketable JJ unmarried JJ unmasculine JJ unmask VB unmasked VBN unmasks VBZ unmatched JJ unmated VBN unmaterialized VBN unmeasurable JJ unmelodic JJ unmentioned VBN unmeritorious JJ unmeshed JJ unmet JJ unmethodical JJ unmiked VBN unmindful JJ unmistakable JJ unmistakably RB unmixed VBN unmodified JJ unmolested JJ unmotivated JJ unmoved JJ unmurmuring JJ unnameable JJ unnamed JJ unnatural JJ unnaturally RB unnaturalness NN unnavigable JJ unnecessarily RB unnecessary JJ unneeded JJ unnerved VBD unnerving VBG unnnt NN unnoticed JJ unnourished JJ unnumbered JJ unobserved JJ unobtainable JJ unobtrusive JJ unobtrusively RB unobvious JJ unoccupied JJ unofficial JJ unofficially RB unopened JJ unopposable JJ unopposed JJ unorganized JJ unoriginal JJ unoriginals NNS unorthodox JJ unpack VB unpacked JJ unpacking VBG unpadded JJ unpaid JJ unpaintable JJ unpaired VBN unpalatable JJ unparalleled JJ unpartisan JJ unpatriotic JJ unpatronizing VBG unpaved JJ unpeace NN unpegged JJ unperceived VBN unperformed JJ unperturbed JJ unphysical JJ unpicturesque JJ unplagued VBN unplanned JJ unpleasant JJ unpleasantly RB unpleasantness NN unpleased VBN unplowed JJ unplug VB unplumbed JJ unpolarizing VBG unpolished JJ unpolitical JJ unpopular JJ unpopularity NN unprecedented JJ unprecedentedly RB unpredictability NN unpredictable JJ unpredictably RB unpremeditated JJ unprepared JJ unpretentious JJ unproblematic JJ unprocurable JJ unproductive JJ unprofessional JJ unprofitable JJ unpromising JJ unprotected JJ unprovable JJ unproved JJ unproven JJ unprovocative JJ unpublicized JJ unpublishable JJ unpublished JJ unpunctured JJ unpunished JJ unqualified JJ unqualifiedly RB unquenched VBN unquestionable JJ unquestionably RB unquestioned JJ unquestioningly RB unquiet JJ unravel VB unraveled VBN unraveling NN unread JJ unreadable JJ unready JJ unreal JJ unrealism NN unrealistic JJ unrealistically RB unreality NN unrealized JJ unreason NN unreasonable JJ unreasonably RB unreasoning JJ unreassuringly RB unrecognizable JJ unrecognized JJ unreconstructed JJ unrecoverable JJ unredeemed JJ unreeling VBG unreflective JJ unrefrigerated JJ unregisterd JJ unregistered JJ unregulated JJ unrehearsed JJ unreimbursed VBN unreinforced JJ unrelated JJ unreleasable JJ unreleased JJ unrelenting JJ unreliability NN unreliable JJ unrelieved JJ unremarkable JJ unremitting JJ unremittingly RB unrepentant JJ unreported JJ unrequited JJ unreservedly RB unresolved JJ unresponsive JJ unrest NN unrestrained JJ unrestricted JJ unrestrictedly RB unretouched JJ unrevealing VBG unrewarding JJ unrifled JJ unripe JJ unrivaled JJ unroll VBP unrolled JJ unrolls VBZ unromantic JJ unruffled JJ unruly JJ unsaddling VBG unsafe JJ unsaid JJ unsaleable JJ unsalted JJ unsanctioned JJ unsatisfactorily RB unsatisfactory JJ unsatisfied JJ unsatisfying JJ unsaturated JJ unsavory JJ unscathed JJ unscented VBN unscheduled JJ unscientific JJ unscramble VB unscrew VB unscrewed VBD unscripted JJ unscrupulous JJ unseal VB unsealed VBN unsealing NN unseasonable JJ unseat VB unseated JJ unseating VBG unsecured JJ unsee VBN unseemly JJ unseen JJ unself-conscious JJ unselfconsciousness NN unselfish JJ unselfishly RB unsentimental JJ unserious JJ unserviceable JJ unservile JJ unsettled JJ unsettlement NN unsettling JJ unshackled JJ unshakable JJ unshakeable JJ unsharpened VBN unshaved JJ unshaven JJ unsheathe VB unsheathing VBG unshed JJ unshelled VBN unsheltered JJ unshielded VBN unshirted JJ unsightly JJ unsigned JJ unskilled JJ unsloped JJ unsmiling JJ unsmilingly RB unsold JJ unsolder VB unsolicited JJ unsolved JJ unsophisticated JJ unsound JJ unspeakable JJ unspecified JJ unspectacular JJ unspent JJ unspoiled JJ unspoken JJ unsprayed VBN unstable JJ unstained JJ unstanched VBN unstapled JJ unstaring VBG unstated JJ unsteadily RB unsteadiness NN unsteady JJ unstilted JJ unstimulated JJ unstinting VBG unstoppable JJ unstressed JJ unstructured JJ unstrung JJ unstuck JJ unstuffy VB unstylish JJ unsubordinated JJ unsubsidized JJ unsubstantiated JJ unsubtle JJ unsuccessful JJ unsuccessfully RB unsuitability NN unsuitable JJ unsuitably RB unsuited VBN unsung JJ unsupportable JJ unsupported JJ unsure JJ unsurmountable JJ unsurpassed JJ unsurprised JJ unsurprising VBG unsuspected JJ unsuspecting JJ unsustainable JJ unswagged JJ unswaggering JJ unswerving JJ unsympathetic JJ untamed JJ untapped JJ untarnished JJ unteach VB untellable JJ untenable JJ untenanted JJ untenured VBN untested JJ unthaw VB unthematic JJ unthinkable JJ unthinking JJ unthinkingly RB unthreatening JJ untidiness NN untidy JJ untie VB untied VBD until IN until... : untimely JJ unto IN untold JJ untouchable JJ untouched JJ untoward JJ untracked JJ untradeable JJ untraditional JJ untrained JJ untrammeled VBN untreated JJ untried JJ untrue JJ untrue... : untrustworthiness NN untrustworthy JJ untruth NN unturned JJ unusable JJ unusally RB unused JJ unusual JJ unusually RB unutterably RB unuttered JJ unvarying VBG unvaryingly RB unveil VB unveiled VBD unveiling VBG unveils VBZ unventilated VBN unverifiable JJ unviable JJ unvisited VBN unwaivering VBG unwanted JJ unwarrantable JJ unwarranted JJ unwary JJ unwashed JJ unwavering VBG unwaveringly RB unwed JJ unwelcome JJ unwholesome JJ unwieldy JJ unwilling JJ unwillingly RB unwillingness NN unwind VB unwinding NN unwire VB unwired VBD unwise JJ unwisely RB unwitting JJ unwittingly RB unwomanly RB unworkable JJ unworn JJ unworthy JJ unwounded JJ unwraps VBZ unwrinkled JJ unwritten JJ unyielding JJ up IN up-and-coming JJ up-front JJ up-jutting JJ up-market JJ up-or-down JJ up-pp RP up-scale JJ up-tight JJ up-to-date JJ up. RB up... : upbeat JJ upbringing NN upcoming JJ upcountry JJ update VB updated VBN updates NNS updating VBG upended JJ upfield RB upgrade VB upgraded VBN upgrades NNS upgrading VBG upgradings NNS upheaval NN upheavals NNS upheld VBD uphill JJ uphold VB upholders NNS upholding VBG upholds VBZ upholstered VBN upholstery NN upkeep NN upland JJ uplands NNS uplift NN uplifting JJ uploaded VBD upmarket JJ upon IN upped VBD upper JJ upper-class JJ upper-crust JJ upper-deck JJ upper-echelon JJ upper-house NN upper-income JJ upper-level JJ upper-lower JJ upper-management NN upper-medium JJ upper-middle JJ upper-middle-class JJ upper-middle-income JJ upperclassmen NNS uppercut NN uppermost JJS uppon IN upraised VBN upright RB uprising NN uprisings NNS upriver JJ uproar NN uproariously RB uproot VB uprooted VBN ups NNS ups-and-downs NNS upscale JJ upset VBN upsets NNS upsetting VBG upshot NN upshots NNS upside RB upstaged VBN upstairs NN upstanding JJ upstart NN upstarts NNS upstate JJ upstream RB upsurge NN upswing NN uptake NN uptempo JJ uptick NN uptight JJ uptown NN uptrend NN upturn NN upturned JJ upturns NNS upward RB upward-mobile JJ upwardly RB upwards RB ur DT uranium NN uranium-mining NN uranium-recovery JJ uranium-waste JJ uranyl NN urban JJ urban-development NN urban-fringe JJ urbane JJ urbanism NN urbanization NN urbanized VBN urea NN uremia NN urethane NN urethanes NNS urethra NN urge VB urged VBD urgencies NNS urgency NN urgent JJ urgently RB urges VBZ urging VBG urgings NNS urinals NNS urinary JJ urinary-tract NN urine NN urn NN urns NNS us PRP us... : usability NN usable JJ usage NN usages NNS use NN useable JJ used VBN used'em NN used-car NN used-equipment NN useful JJ usefully RB usefulness NN useless JJ uselessly RB uselessness NN user NN user-inviting JJ userfriendly JJ users NNS uses VBZ usher NN ushered VBD ushering VBG ushers VBZ using VBG ussr NN usual JJ usually RB usurious JJ usurp VB usurpation NN usurped VBN usurping VBG ususal JJ utensils NNS utero NN uterus NN utilitarian JJ utilities NNS utility NN utility-cost NN utilization NN utilize VB utilized VBN utilizes VBZ utilizing VBG utmost JJ utmosts NNS utopia NN utopian JJ utopianism NN utopians NNS utopias NNS utter JJ utterance NN utterances NNS uttered VBD uttering VBG utterly RB uttermost JJ uttuh VB v-senv5 NNP v. CC v.B. NNP v.d NNP v.w. NN vacancies NNS vacancy NN vacanices NNS vacant JJ vacate VB vacated VBN vacating VBG vacation NN vacationed VBD vacationer NN vacationers NNS vacationing VBG vacationland NN vacations NNS vaccinating VBG vaccination NN vaccine NN vaccine-related JJ vaccine-vendor JJ vaccines NNS vaccinia NN vacillate VB vacillated VBD vacillation NN vacuolated VBN vacuolization NN vacuous JJ vacuum NN vacuum-formed JJ vacuum-packed JJ vacuum-tube JJ vacuumed VBD vacuuming VBG vade FW vagabond NN vagabondage NN vagabonds NNS vagaries NNS vagina NN vaginal JJ vagrant JJ vague JJ vaguely RB vaguely-imagined JJ vagueness NN vaguer JJR vaguest JJS vain JJ vainly RB valet NN valeur FW valewe NN valiant JJ valiantly RB valid JJ validate VB validated VBN validating VBG validation NN validity NN validly RB valley NN valleys NNS valor NN valuable JJ valuation NN valuations NNS value NN value-added JJ value-assessment NN value-boosting JJ value-investing JJ value-judgments NNS value-orientations NNS value-oriented JJ value-problems NNS value-story JJ value-system NN valued VBN valueless JJ values NNS valuing VBG valve NN valves NNS vampire NN vampires NNS vampirism NN van NNP vandalism NN vandalized VBD vandals NNS vane NN vanguard NN vanilla NN vanish VBP vanished VBD vanishes VBZ vanishing VBG vanities NNS vanity NN vanquish VB vans NNS vantage NN vantage-points NNS vapor NN vapor-pressure NN vaporization NN vapors NNS vaquero NN var. NN variability NN variable JJ variable-rate JJ variable-speed JJ variables NNS variance NN variances NNS variant NN variants NNS variation NN variations NNS varicolored JJ varied VBN variegated JJ varies VBZ varieties NNS variety NN various JJ various-sized JJ variously RB varitinted JJ varityping NN varmint NN varnish NN varnishes NNS vary VBP varying VBG vasa NN vascular JJ vascular-lesion NN vase NN vases NNS vasodilator NN vasorum NN vassal NN vassals NNS vast JJ vaster JJR vastly RB vats NNS vaudeville NN vault NN vaulted VBD vaulting JJ vaults NNS vaunted JJ veal NN vector NN vectors NNS veer VB veered VBD veering VBG veers VBZ vegetable NN vegetable-protein NN vegetables NNS vegetarian JJ vegetarians NNS vegetation NN vegetative JJ vehemence NN vehement JJ vehemently RB vehicle NN vehicle-loan JJ vehicle-making JJ vehicle-marketing JJ vehicle-production JJ vehicle-suspension NN vehicles NNS vehicular JJ veil NN veiled VBN veiling NN veils NNS vein NN veined JJ veining NN veins NNS veldt NN vellum JJ velociter FW velocities NNS velocity NN velour NN velours NN velvet NN velveteen NN velvety JJ venal JJ vendetta NN vending NN vendor NN vendors NNS veneer NN venerable JJ venerable-but-much-derided JJ venerated VBN veneration NN venereal JJ vengeance NN venison NN venom NN venomous JJ vent NN vented VBD ventilated VBD ventilates VBZ ventilating NN ventilation NN ventilator NN ventricle NN ventricles NNS ventricular JJ vents NNS venture NN venture-capital JJ ventured VBD venturers NNS ventures NNS venturesome JJ venturing VBG venue NN venues NNS veracious JJ veracity NN veranda NN verandah NN verandas NNS verb NN verbal JJ verbally RB verbatim RB verbenas NNS verbiage NN verboten FW verbs NNS verdant JJ verdict NN verdicts NNS verge NN verged VBD veridical JJ verie RB verifiable JJ verifiably RB verification NN verified VBN verifier NN verifiers NNS verify VB verifying VBG verisimilitude NN veritable JJ verities NNS verity NN vermeil JJ vermilion JJ vernacular NN vernal JJ vernier NN versa RB versatile JJ versatility NN verse NN versed VBN verses NNS version NN versions NNS verso NN verstrichen FW versus IN vertebrae NNS vertebral JJ vertebrate JJ vertebrates NNS vertex NN vertical JJ vertical-restraint JJ vertical-restraints NNS vertical-takeoff-and-landing JJ vertically RB vertigo NN verve NN very RB very-highly JJ vesicular JJ vessel NN vessels NNS vest NN vested VBN vestibule NN vestibules NNS vestige NN vestiges NNS vesting VBG vestments NNS vests NNS vet NN veteran NN veterans NNS veterinarian NN veterinarians NNS veterinary JJ veto NN veto-proof JJ vetoed VBD vetoes NNS vetoing VBG vetted VBN vex VBP vexatious JJ vexed VBN vexes VBZ vexing JJ via IN viability NN viable JJ viaduct NN viaducts NNS vial NN vibes NNS vibrancy NN vibrant JJ vibrate VB vibrated VBD vibrating VBG vibration NN vibration-control JJ vibrations NNS vibrato NN vibratory JJ vibrionic JJ vicar NN vicarious JJ vicariously RB vicars NNS vice NN vice-chairman NN vice-chancellor NN vice-president NN vice-presidents NNS vice-regent JJ vicelike JJ vices NNS vicinity NN vicious JJ viciously RB viciousness NN vicissitudes NNS vicitims NNS victim NN victimize VBP victimized VBN victimizes VBZ victimless JJ victims NNS victor NN victories NNS victorious JJ victoriously RB victory NN victuals NNS vide FW video NN video-cassette JJ video-distribution NN video-game NN video-rental JJ video-store NN video-viewing JJ videocam NN videocameras NNS videocasette NN videocassette NN videocassettes NNS videoconferencing NN videodiscs NNS videodisk NN videodisks NNS videos NNS videotape NN videotaped VBN videotapes NNS videotex NN videotext NN vie VBP vied VBD vielleicht FW vies VBZ view NN viewed VBN viewer NN viewers NNS viewership NN viewing VBG viewings NNS viewless JJ viewpoint NN viewpoints NNS views NNS vigil NN vigilance NN vigilant JJ vigilantism NN vignette NN vignettes NNS vigor NN vigorous JJ vigorously RB vile JJ vilification NN vilified VBN vilifies VBZ vilifying VBG villa NN village NN villager NN villagers NNS villages NNS villain NN villainous JJ villains NNS villas NNS vincit FW vindicate VB vindicated VBN vindication NN vindictive JJ vine NN vine-crisscrossed JJ vine-embowered JJ vine-shaded JJ vinegar NN vines NNS vineyard NN vineyards NNS vintage JJ vintages NNS vintner NN vintners NNS vinyl NN vinyl-laminated JJ vinyl-products NNS vioiln NN violate VB violated VBD violates VBZ violating VBG violation NN violations NNS violator NN violators NNS violence NN violent JJ violently RB violet NN violets NNS violin NN violinist NN violinists NNS violins NNS vipers NNS viral JJ virgin JJ virginity NN virgins NNS virile JJ virility NN virologist NN virtual JJ virtually RB virtue NN virtues NNS virtuosi NNS virtuosity NN virtuoso JJ virtuosos NNS virtuous JJ virulence NN virulent JJ virus NN virus-boosting JJ virus-free JJ viruses NNS virutally RB vis FW vis-a-vis FW visa NN visa-free JJ visage NN visages NNS visas NNS viscera NNS visceral JJ viscoelastic JJ viscoelasticity NN viscometer NN viscosity NN viscous JJ vise NN viselike JJ visibility NN visible JJ visibly RB vision NN visionaries NNS visionary JJ visions NNS visit NN visitation NN visitations NNS visited VBD visiting VBG visitor NN visitors NNS visits NNS visrhanik FW vista NN vistas NNS vistors NNS visual JJ visualization NN visualizations NNS visualize VB visualized VBD visualizes VBZ visually RB visuals NNS vitae NN vital JJ vitality NN vitally RB vitals NNS vitamin NN vitamin-and-iron JJ vitamins NNS vitiate VB vitiated VBN vitiates VBZ vitreous-china NN vitriol NN vitriolic JJ vitro FW viva FW vivacious JJ vivacity NN vivid JJ vividly RB vividness NN vivified VBN vivify VB vivo NN vivre FW viz. NN vocabularies NNS vocabulary NN vocal JJ vocal\ JJ vocalic JJ vocalism NN vocalist NN vocalists NNS vocalization NN vocalize VB vocally RB vocals NNS vocation NN vocational JJ vocational-advancement JJ vocationally RB voce NN vociferous JJ vociferously RB vociferousness NN vodka NN vodkas NNS vogue NN voice NN voice-activated JJ voice-altering JJ voice-mail NN voice-over JJ voice-processing JJ voice-recognition NN voice-response NN voiced VBD voiceless JJ voices NNS voicing VBG void NN voided VBD voids VBZ voir FW volatile JJ volatility NN volatilization NN volcanic JJ volcano NN volcanoes NNS volcanos NNS volens FW volition NN volley NN volley-ball NN volleyball NN voltage NN voltages NNS voltaic JJ voltmeter NN volts NNS voluble JJ volubly RB volume NN volume-based JJ volume-decliner JJ volume-wine JJ volumes NNS volumetric JJ volumetrically RB voluminous JJ voluntarily RB voluntarism NN voluntary JJ voluntary-control JJ volunteer NN volunteered VBD volunteering VBG volunteerism NN volunteers NNS voluptuous JJ vomica NN vomit VBP vomited VBD vomiting VBG von NNP voodoo NN vopos FW voracious JJ voraciously RB vortex NN vos FW vote NN vote-begging NN vote-diluting JJ vote-getter NN vote-getters NNS vote-loser NN voted VBD voter NN voter-approved JJ voter-registration JJ voters NNS votes NNS voting NN votive JJ voucher NN vouchers NNS vouching VBG vouchsafes VBZ voulez FW voume NN vous FW vow NN vowed VBD vowel NN vowels NNS vowing VBG vows VBZ voyage NN voyager NN voyages NNS voyageurs NNS voyeurism NN vp NN vrai FW vs NNP vs. IN vu NN vue FW vuhranduh NN vulcanized VBN vulgar JJ vulnerabilities NNS vulnerability NN vulnerable JJ vulpine JJ vulture NN vulture-like JJ vultures NNS vying VBG w IN w-i-d-e NN w. JJ w/ IN w8 VB wacky JJ wad NN wad-working NN wadded VBD waddlers NNS waddles VBZ wade VB waded VBD wads NNS wafer NN wafers NNS waffle NN waffle-pattern NN waffled VBD waffles NNS waffling VBG waft VB wafting VBG wag NN wage NN wage-discrimination NN wage-earning JJ wage-floor JJ wage-price JJ wage-rate JJ wage-rates NNS wage-setter NN waged VBN wager NN wagering NN wagers NNS wages NNS wagged VBD wagging VBG waggishly RB waggled VBD waggling VBG waging VBG wagon NN wagons NNS wags NNS wahtahm NN waif NN wail NN wailed VBD wailing VBG wails NNS wainscoted JJ waist NN waist-length JJ waistcoat NN waists NNS wait VB wait-and-see JJ waited VBD waiter NN waiters NNS waitin VBG waiting VBG waitress NN waitresses NNS waits VBZ waive VB waived VBN waiver NN waivered VBN waivers NNS waives VBZ waiving VBG wake NN waked VBD wakeful JJ wakefulness NN wakened VBN wakening VBG wakes VBZ waking VBG wales NNS walk VB walk-in JJ walk-on NN walk-through JJ walk-to JJ walk-up NN walk-way NN walked VBD walker NN walkers NNS walkie-talkie NN walkie-talkies NNS walkin VBG walking VBG walkout NN walkouts NNS walkover NN walks VBZ walkway NN walkways NNS wall NN wall-flowers NNS wall-paneling JJ wall-stabilized JJ wall-switch NN wall-to-wall JJ wallboard NN wallcoverings NNS walled JJ wallet NN wallets NNS wallflower NN wallop NN walloped VBD walloping JJ wallops VBZ wallow VB wallowed VBD wallowing VBG wallpaper NN wallpapers NNS walls NNS walnut NN walnuts NNS walrus NN walruses NNS waltz NN waltzing VBG wan JJ wan't VB wand NN wander VB wandered VBD wanderer NN wanderers NNS wandering VBG wanderings NNS wanders VBZ wane VB waned VBD wanes VBZ wangled VBD waning VBG wanna VB want VBP wanta VB wanted VBD wanting VBG wanting-to-be-alone JJ wanton JJ wants VBZ war NN war-damaged JJ war-dirty JJ war-like JJ war-rationed JJ war-ridden JJ war-time JJ war-torn JJ warbler NN warbling VBG warchest NN ward NN ward-heelers NNS ward-personnel NNS warded VBN warden NN wardens NNS wardrobe NN wardrobes NNS wardroom NN wards NNS ware NN warehouse NN warehouse-club NN warehouse-management NN warehouse-type NN warehouseman NN warehouses NNS warehousing NN wares NNS warfare NN warfront NN warhead NN warheads NNS warily RB wariness NN warless JJ warlike JJ warlords NNS warm JJ warm-blooded JJ warm-hearted JJ warm-red JJ warm-toned JJ warm-up NN warm-ups NNS warm-weather JJ warmed VBD warmed-over IN warmer JJR warmhearted JJ warmheartedness NN warming NN warmish JJ warmly RB warms VBZ warmth NN warmup NN warn VB warn-your-enemy JJ warned VBD warning NN warning-signals NN warningly RB warnings NNS warns VBZ warp NN warped VBN warping VBG warrant NN warranted VBN warranties NNS warrantless JJ warrants NNS warranty NN warred VBD warren NN warrent JJ warring VBG warrior NN warriors NNS wars NNS warship NN warships NNS wart NN wart-hog NN wartime NN wartorn NN warts NNS warty JJ wary JJ warys NNS was VBD was'give VBD wash NN wash-outs NNS wash-up JJ washable JJ washbasin NN washboard NN washbowl NN washed VBN washed-out JJ washer NN washes NNS washing VBG washings NNS washload NN washouts NNS wasn't NN wasnt VBD wasp NN waspish JJ waspishly RB wassail NN waste NN waste-disposal JJ waste-energy NN waste-management JJ waste-storage NN waste-to-energy JJ waste-treatment NN waste-water NN wastebasket NN wasted VBN wasteful JJ wasteful-racist-savagery NN wasteland NN wastepaper NN wastes NNS wastewater NN wasting VBG wastrel NN wat PRP watch VB watch-spring JJ watchdog NN watchdogs NNS watched VBD watcher NN watchers NNS watches NNS watchful JJ watching VBG watchings NNS watchmaker NN watchman NN watchmen NNS watchtowers NNS watchword NN water NN water-authority NN water-balance NN water-borne JJ water-cooled JJ water-deficient JJ water-filled JJ water-holding JJ water-line NN water-pollution NN water-proof JJ water-purification NN water-purity NN water-reactor JJ water-ski NN water-soluble JJ water-submersion JJ water-tank NN water-treatment NN water-use NN water-washed VBN watercolor NN watercolorist NN watercolorists NNS watercolors NNS watered VBN watered-down JJ waterfall NN waterfalls NNS waterflows NNS waterfront NN watering VBG waterline NN waterlogged JJ watermelon NN waterproof NN waterproofing NN waters NNS watershed NN watersheds NNS waterside NN waterskiing NN waterway NN waterways NNS waterworks NN watery JJ watt NN wattles NNS watts NNS wave NN wave-length NN wave-particle NN wave-setting JJ wave-travel JJ waved VBD wavelength NN wavelengths NNS waver VBP wavered VBD wavering VBG wavers NNS waves NNS waving VBG wavy JJ wavy-haired JJ wax NN waxed VBD waxen JJ waxing NN waxy JJ way NN way-out JJ waylaid VBN waypoint NN ways NNS wayside NN wayward JJ wayward-looking JJ we PRP we'll MD we're VB we're-all-in-this-together JJ we'uns NNS we-Japanese JJ weak JJ weak-kneed JJ weak... : weaken VB weakened VBN weakening VBG weakens VBZ weaker JJR weaker-performing JJ weaker-than-expected JJ weakest JJS weakling NN weakly RB weakness NN weaknesses NNS weakwilled JJ wealth NN wealthier JJR wealthiest JJS wealthy JJ wean VB weaned VBN weaning VBG weapon NN weaponry NN weapons NNS weapons-acquisition NN weapons-control JJ weapons-grade JJ weapons-modernization JJ weapons-plant JJ weapons-systems NNS weaponsmaking NN wear VB wearied VBD wearily RB wearin VBG weariness NN wearing VBG wearing'kick VB wearisome JJ wears VBZ weary JJ wearying VBG weasel NN weasel-worded JJ weasling VBG weather NN weather-related JJ weather-resistant JJ weather-royal JJ weatherbeaten JJ weathering NN weatherman NN weatherproof JJ weatherstrip VB weave VB weavers NNS weaves NNS weaving VBG web NN web-printing JJ webs NNS wed VBN wedded VBN wedding NN weddings NNS wedge NN wedge-nosed JJ wedge-shaped JJ wedged VBN wedging VBG wedlock NN weds VBZ wee JJ weed NN weed-killing JJ weeded VBN weeding VBG weeds NNS week NN week-end NN week-ends NNS week-long JJ week-old JJ week-one JJ week-to-week JJ weekday NN weekdays NNS weeked NN weekend NN weekends NNS weeklies NNS weeklong JJ weekly JJ weekly-average JJ weeknight NN weeknights NNS weeks NNS weep VB weepers NNS weeping VBG weevil NN weevils NNS wei NNS weigh VB weighed VBD weighing VBG weighs VBZ weight NN weight-control JJ weight-height NN weight-training NN weighted JJ weighting NN weightings NNS weightlessness NN weights NNS weighty JJ weir NN weird JJ weirdest JJS weirdly RB weirdo NN weirdy NN weirs NNS welcome JJ welcomed VBD welcomes VBZ welcoming VBG weld VB welded VBN welding NN welfare NN welfare-state JJ well RB well-adjusted JJ well-administered JJ well-advised JJ well-armed JJ well-baby JJ well-balanced JJ well-behaved JJ well-being NN well-born JJ well-bound JJ well-braced JJ well-bred JJ well-brushed JJ well-capitalized JJ well-cared JJ well-cared-for JJ well-cemented JJ well-chronicled JJ well-connected JJ well-cut JJ well-defined JJ well-deserved JJ well-designed JJ well-developed JJ well-diversified JJ well-documented JJ well-dressed JJ well-drilled JJ well-educated JJ well-endowed JJ well-entrenched JJ well-equipped JJ well-established JJ well-experienced JJ well-fed JJ well-financed JJ well-fitted JJ well-fleshed JJ well-fortified JJ well-founded JJ well-grooved JJ well-guarded JJ well-heeled JJ well-hit JJ well-house JJ well-illustrated JJ well-informed JJ well-intended JJ well-intentioned JJ well-kept JJ well-known JJ well-lighted JJ well-made JJ well-managed JJ well-mannered JJ well-meaning JJ well-modulated JJ well-molded JJ well-nigh RB well-off JJ well-operated JJ well-organized JJ well-oriented JJ well-paid JJ well-paying JJ well-placed JJ well-planned JJ well-played JJ well-polished JJ well-populated JJ well-positioned JJ well-prepared JJ well-publicized JJ well-read JJ well-received JJ well-regarded JJ well-regulated JJ well-rehearsed JJ well-respected JJ well-rounded JJ well-ruled JJ well-run JJ well-served JJ well-servicing JJ well-set JJ well-springs JJ well-stated JJ well-stocked JJ well-structured JJ well-stuffed JJ well-suited JJ well-tailored JJ well-to-do JJ well-trained JJ well-trampled JJ well-traveled JJ well-turned-out JJ well-understood JJ well-versed JJ well-wedged JJ well-wishers NNS well-wishing NN well-worn JJ well-written JJ wellbeing NN welled VBD wellhead NN welling VBG wellknown JJ wellness NN wellplaced JJ wellrun JJ wells NNS wellspring NN welter NN welts NNS wen RB went VBD wept VBD were VBD were't VBD werewolves NNS west NN west-central JJ west-to-east RB westbound JJ westerly JJ western JJ western-style JJ westward RB westwards NNS wet JJ wetlands NNS wetly RB wetness NN wets NNS wetting VBG whack VB whacked VBD whacker NN whacking VBG whacky JJ whaddya WP whale NN whales NNS whalesized JJ whaling NN whammo UH whammy NN wharf NN wharves NNS what WP what's VBZ what's-his-name NN what-nots NNS what-will-T WP|MD|NP whatever WDT whats VB whatsoever RB wheare WRB wheat NN wheat-germ NN wheat-growing JJ wheedled VBN wheel NN wheel-loader JJ wheel-making JJ wheelbase NN wheelbases NNS wheelchair NN wheeled VBD wheeler-dealers NNS wheeling NN wheellike JJ wheels NNS wheezed VBD wheezes NNS wheezing VBG whelk NN when WRB when-issued JJ whence WRB whenever WRB wher WRB where WRB whereabouts NN whereas IN whereby WRB whereever WRB wherefores NNS wherein WRB whereof RB whereon NN whereupon IN wherever WRB wherewith VB wherewithal NN whether IN whetted VBN which WDT which... : whichever WDT whichever-the-hell JJ whiff NN while IN whim NN whimper NN whimpering VBG whimpers NNS whims NNS whimsical JJ whimsically RB whimsy NN whine NN whined VBD whiner NN whiners NNS whining VBG whinnied VBD whinny NN whip NN whipcracking NN whiplash NN whiplashes NNS whipped VBD whipping VBG whipping-boys NNS whippings NNS whips NNS whipsaw JJ whipsawed VBN whipsawing NN whir NN whirl NN whirled VBD whirling VBG whirlpool NN whirlwind NN whirlwinds NNS whirred VBD whirring VBG whisked VBN whiskered JJ whiskers NNS whiskery JJ whiskey NN whiskey-baritoned JJ whiskeys`` `` whiskies NNS whisking VBG whisks VBZ whisky NN whisky-on-the-rocks NN whisper NN whispered VBD whispering VBG whisperings NNS whispers NNS whistle NN whistle-blower NN whistle-blowers NNS whistle-stop JJ whistleblower NN whistled VBD whistles NNS whistling VBG whit NN white JJ white'suits NN white-bearded JJ white-clad JJ white-coated JJ white-collar JJ white-collar-defense JJ white-columned JJ white-dominated JJ white-haired JJ white-knight NN white-majority JJ white-minority JJ white-shoe JJ white-spirit NN white-spirits JJ white-squire NN white-stucco JJ white-suited JJ white-topped JJ white-walled JJ white-washed JJ white-water NN whitecollar JJ whiteface JJ whitehaired JJ whitely RB whitened JJ whiteness NN whitening VBG whitens VBZ whites NNS whitetail NN whitewalled JJ whitewash NN whitewashed VBN whitewashing VBG whitish JJ whittle VBP whittled VBN whittling VBG whiz NN whiz-bang UH whizzed VBD whizzes NNS whizzing VBG who WP who's VBP who... : whodunnit UH whodunnit-style JJ whoe WP whoever WP whole JJ whole-bank JJ whole-egg JJ whole-heartedly RB whole-house JJ whole-milk NN whole-wheat JJ whole-word JJ wholehearted JJ wholeheartedly RB wholeness NN wholes NNS wholesale JJ wholesale-price JJ wholesale-sized JJ wholesale-store JJ wholesaler NN wholesalers NNS wholesaling VBG wholesome JJ wholewheat JJ wholly RB wholly-owned JJ whom WP whooosh JJ whoop NN whooped VBD whooper NN whooping JJ whoops VBZ whoosh VBP whoppers NNS whopping JJ whore NN whores NNS whoring NN whorls NNS whose WP$ whosoever WP whupped VBD why WRB whyfores NNS wick NN wicked JJ wickedly RB wickedness NN wicker NN wicket NN wickets NNS wide JJ wide-awake JJ wide-body JJ wide-cut JJ wide-door JJ wide-eyed JJ wide-grip JJ wide-open JJ wide-ranging JJ wide-scale JJ wide-shouldered JJ wide-sweeping JJ wide-winged JJ widegrip JJ widely RB widen VB widened VBD widening VBG widens VBZ wider JJR wider-body JJR wider-than-expected JJ wider-than-normal JJ widespread JJ widest JJS widget NN widgets NNS widow NN widowed VBN widower NN widowers NNS widowhood NN widows NNS width NN widths NNS widthwise RB wiederum FW wield VB wielded VBN wielder NN wielding VBG wields VBZ wieners NNS wife NN wife-to-be NN wife\/mother NN wifely JJ wifi NN wig NN wiggier JJR wiggle NN wiggled VBD wiggling VBG wigmaker NN wigmakers NNS wignapping NN wigs NNS wil MD wild JJ wild-eyed JJ wild-sounding JJ wildcat NN wildcatter NN wilderness NN wildest JJS wildflowers NNS wildlife NN wildlife-related JJ wildly RB wildness NN wiles NNS wilfully RB will MD will-to-power NN willed VBD willful JJ willfully RB william NN willies NNS willing JJ willinge JJ willingess NN willingly RB willingness NN willling VBG willow NN willow-lined JJ willowy JJ willpower NN wills NNS willy RB willy-nilly JJ willya MD wilt MD wilted JJ wilting VBG wily JJ wimp NN wimping VBG win VB win-win NN wince NN winced VBD winches NNS wincing VBG wind NN wind-and-water JJ wind-blown JJ wind-driven JJ wind-swept JJ wind-velocity NN windbag NN windbreaks NNS winded JJ winder NN winders NNS windfall NN windfalls NNS winding VBG winding-clothes NNS windless JJ windmill NN window NN window-film NN window-shopping NN window-washing NN windowless JJ windowpane NN windowpanes NNS windows NNS winds NNS windshield NN windshields NNS windstorm NN windswept JJ windup NN windy JJ wine NN wine-buying JJ wine-dark JJ wine-making NN wined VBD winehead NN wineries NNS winery NN wines NNS wing NN wing-shooting NN wing-tip JJ wingbeat NN winged VBD winger NN winging VBG wingman NN wings NNS wink NN winked VBD winking VBG winless JJ winner NN winners NNS winning VBG winningest JJS winnings NNS winnow VB winnowing NN winos NNS wins VBZ winsome JJ winter NN wintered VBN wintering VBG winters NNS wintertime NN wintry JJ wipe VB wiped VBD wipeout NN wipes VBZ wiping VBG wire NN wire-fraud NN wire-haired JJ wire-tapping NN wired VBN wireless JJ wireline JJ wires NNS wiretap NN wiretapping NN wiretaps NNS wiring NN wiry JJ wisdom NN wise JJ wisecrack NN wisecracked VBD wisecracks NNS wisely RB wisenheimer NN wiser JJR wisest JJS wish VBP wish-list NN wish-lists NNS wished VBD wisher NN wishes VBZ wishes.. NN wishful JJ wishing VBG wishy-washy JJ wishywashy NN wisp NN wisps NNS wispy JJ wistful JJ wistfully RB wit NN witch NN witchcraft NN witches NNS witching JJ witchy JJ with IN with-but-after JJ with-it JJ witha NN withal IN withdraw VB withdrawal NN withdrawals NNS withdrawing VBG withdrawn VBN withdraws VBZ withdrew VBD wither VB withered JJ withering VBG withes NNS withheld VBN withhold VB withholding NN withholding-tax JJ withholdings NNS withholds VBZ within IN withing IN without IN without,`` `` withstand VB withstanding VBG withstands VBZ withstood VBD witness NN witnessed VBN witnesses NNS witnessing VBG wits NNS wittily RB wittiness NN wittingly RB witty JJ wive NNS wives NNS wizard NN wizards NNS wo MD wobble VB wobbled VBD wobbling VBG wobbly JJ wod MD woe NN woebegone JJ woeful JJ woefully RB woes NNS wohaw NN wohaws NNS wohd NN woke VBD woken VBN wold MD wolde MD wolf NN wolfishly RB wolves NNS woman NN womanhood NN womanizing VBG womanly JJ womb NN womb-leasing NN womb-to-tomb JJ wombs NNS women NNS women's-rights JJ women-owned JJ women-trodden JJ won VBD won't MD won-lost JJ wonder NN wonder-working JJ wonderbars NNS wondered VBD wonderful JJ wonderfully RB wonderfulness NN wondering VBG wonderingly RB wonderland NN wonderment NN wonders NNS wondrous JJ wondrously RB wonduh VB wont JJ woo VB wood NN wood-and-brass NN wood-burning JJ wood-chip NN wood-encased JJ wood-grain JJ wood-grained JJ wood-oil NN wood-paneled JJ wood-processing JJ wood-product NN wood-products NNS wood-treating JJ woodcarver NN woodchucks NNS woodcutters NNS wooded JJ wooden JJ wooden-leg NN woodgraining NN woodland JJ woodlots NNS woodpecker NN woods NNS woodshed NN woodsmoke NN woodsy JJ woodwind NN woodwork NN woodworking NN woodworm NN woodworms NNS wooed VBN woof NN wooing VBG wool NN woolen JJ woolens NNS woolgather VB woolly JJ woolly-headed JJ woolly-minded JJ woolworkers NNS woomera NN wooo UH wooooosh NN woos VBZ woozy JJ wop VB wops VBZ word NN word'boom NN word-for-word JJ word-games NNS word-of-mouth NN word-processing NN word-weary JJ worded VBN wording NN wordlessly RB wordplay NN words NNS wordy JJ wore VBD work NN work'em NN work-a-day JJ work-force NN work-in-progress NN work-out JJ work-paralysis NN work-release NN work-rule JJ work-satisfaction NN work-space NN work-station NN work-study JJ work-success NN work-weary JJ workability NN workable JJ workaholic NN workbench NN workbenches NNS workbooks NNS workday NN workdays NNS worked VBD worked-out JJ worker NN worker-compensation NN worker-owned JJ worker-safety NN worker-years NNS workers NNS workforce NN workhorse NN workin VBG working VBG working-capital JJ working-class JJ working-day JJ working-girl NN workingmen NNS workings NNS workload NN workman NN workmanlike JJ workmanship NN workmen NNS workout NN workouts NNS workplace NN workplaces NNS workroom NN works NNS worksheet NN worksheets NNS workshop NN workshops NNS workstation NN workstations NNS worktable NN workweek NN workweeks NNS world NN world-affairs NNS world-amid IN world-at-large NN world-class JJ world-commerce JJ world-currency NN world-famous JJ world-freight NN world-ignoring JJ world-leading JJ world-oriented JJ world-renowned JJ world-scale JJ world-shaking JJ world-shattering JJ world-view NN world-weary JJ world-wide JJ worldly JJ worlds NNS worldwide JJ worm NN worms NNS wormwood NN wormy JJ worn VBN worn-faced JJ worn-out JJ wornout NN worried VBN worriedly RB worriers NNS worries NNS worrisome JJ worry VB worry-free JJ worryin VBG worrying VBG worse JJR worse-than-expected JJ worsen VB worsened VBD worsening VBG worsens VBZ worship NN worshiped VBN worshipful JJ worshiping VBG worshipped NN worshipper NN worshippers NNS worshipping VBG worst JJS worst-case JJ worst-hit JJ worst-marked JJ worst-performing JJ worsted JJ wort NN worth JJ worth-waiting-for JJ worth-while JJ worthier JJR worthiest JJS worthiness NN worthless JJ worthlessness NN worthwhile JJ worthwile VB worthy JJ would MD would-be JJ woulda MD wouldbe JJ wouldn't ND wound NN wounded VBN wounding VBG wounds NNS wove VBD woven VBN woven-root JJ wow UH wowed VBD wows VBZ wrack NN wracked VBN wracking VBG wraith-like JJ wrangled VBD wrangler NN wranglers NNS wrangling VBG wrap VB wrap-around JJ wrap-up JJ wrapped VBN wrapper NN wrappers NNS wrappin VBG wrapping VBG wraps VBZ wrath NN wrathful JJ wreak VB wreaked VBD wreaking VBG wreath NN wreathed VBN wreaths NNS wreck NN wreckage NN wrecked VBD wrecker NN wrecking VBG wrecks NNS wree NN wrench VB wrenched VBD wrenches NNS wrenching JJ wrest VB wrested VBD wrestle VB wrestler NN wrestlers NNS wrestles VBZ wrestling VBG wrestlings NNS wretch NN wretched JJ wretchedness NN wriggled VBD wriggling VBG wring VB wringing VBG wrings VBZ wrinkle NN wrinkle-fighting JJ wrinkled JJ wrinkles NNS wrinkling VBG wrist NN wrists NNS wristwatch NN wristwatches NNS writ NN write VB write-down NN write-downs NNS write-in NN write-off NN write-offs NNS writedown NN writedowns NNS writeoff NN writeoffs NNS writer NN writer-turned-painter NN writer\/producers NNS writers NNS writes VBZ writhe NN writhed VBD writhing VBG writing VBG writing-instruments JJ writing-like JJ writings NNS writs NNS written VBN wrondgoing NN wrong JJ wrong-headed JJ wrong-o NN wrong-way JJ wrongdoer NN wrongdoers NNS wrongdoing NN wronged VBN wrongful JJ wrongfully RB wrongly RB wrongness NN wrongs NNS wrote VBD wrought VBN wrought-iron JJ wrung VB wry JJ wry-faced JJ wryly RB wryness NN wt NN wtf UH wth IN wtih NN wud MD wuh VBP wus RB wynne VB x NN x-Includes VBZ x-There EX x-Year-to-date JJ x-ray NN x-rays NN xD SYM xenon NN xenophobia NN xenophobic JJ xxxx NN xylem NN xylene NN xylophones NNS y NNP y'all PRP y'know VB ya NN ya'll PRP yacht NN yachtel NN yachtels NNS yachters NNS yachting NN yachts NNS yachtsman NN yachtsmen NNS yahoos NNS yakking VBG yaks NNS yall PRP yank VB yanked VBD yanking VBG yapping VBG yard NN yard-line NN yardage NN yards NNS yardstick NN yardwork NN yarn NN yarns NNS yassuhs UH yawl NN yawn NN yawning VBG yawns NNS yaws NNS yay UH yb NN yc NN yd. NN ye PRP yea NN yeah UH year NN year-'round JJ year-ago JJ year-before JJ year-earlier JJ year-end NN year-long JJ year-old JJ year-on-year JJ year-over-year JJ year-round JJ year-to-date JJ year-to-year JJ year... : yearago JJ yearall NN yearbook NN yearbooks NNS yeard VBN yearearlier JJ yearend NN yearling JJ yearlings NNS yearlong JJ yearly JJ yearn VB yearned VBD yearning NN yearningly RB yearnings NNS years NNS years... : yearthat NN yeast NN yeasts NNS yell NN yelled VBD yeller JJ yellerish JJ yellin NN yelling VBG yellow JJ yellow-bellied JJ yellow-brown JJ yellow-dwarf JJ yellow-gray JJ yellow-green JJ yellowed VBN yellowing VBG yellowish JJ yellows NNS yells VBZ yelp NN yelped VBD yelping VBG yelps NNS yen NNS yen-bond JJ yen-denominated JJ yen-support JJ yenta NN yes UH yess UH yesteday NN yesterday NN yesteryear NN yet RB yet-another JJ yet-to-be-formed JJ yet-unnamed JJ yet... : yeterday NN yf NN yff IN yg NN yg-globulin NN yield VB yield-hungry JJ yield-maintenance NN yield-management NN yielded VBD yielding VBG yielding-Mediterranian-woman JJ yields NNS yip NN yj NN yl NN ym NN ymg NN yo UH yo-yo NN yodel NN yodeling VBG yoga NN yogurt NN yogurts NNS yoke NN yokel NN yokels NNS yolk NN yon RB yonder NN yongst JJS yore PRP$ yori FW you PRP you'll MD you're VBP you'uns NNS you've VBP you-know NN you-know-what NN young JJ young-skewing JJ younger JJR youngest JJS youngish JJ youngster NN youngsters NNS younguh JJR your PRP$ your... : yours PRP yourself PRP yourselves PRP youth NN youthful JJ youths NNS youtube NNP yow NN yp NN yr NN yrs NNS yrs. NNS ys VBZ yt NN yttrium-containing JJ yu PRP yuan NN yucca NN yuh PRP yuk NN yukked VBD yuletide NN yummy JJ yuppie NN yuppies NNS yuse NN yyyy NN z-Not RB zaiteku FW zany JJ zap VB zapped VBD zappers NNS zapping VBG zeal NN zealot NN zealous JJ zealously RB zebra NN zenith NN zero CD zero-coupon JJ zero-gravity JJ zero-inflation NN zero-magnitude NN zero-sum JJ zeroed VBN zeroing VBG zeros NNS zest NN zestfully RB zg NN zig-zag VBP zigzagging VBG zigzags NNS zilch NN|JJ zillion NN|CD zillions NNS zim UH zinc NN zinc-consuming JJ zinc-strip JJ zinc-sulphide NN zing NNP zip NN zip-code NN zipped VBD zipper NN zippers NNS zippo NN zirconate NN zitless JJ zlotys NNS zodiacal JJ zombie NN zombies NNS zone NN zoned VBN zones NNS zoning NN zoo NN zookeeper NN zoologist NN zoology NN zoom VB zoomed VBD zooming VBG zooms VBZ zoooop NN zoot NN zorrillas NNS zotl NN zotls NNS zounds UH zq NN zu FW zur FW { ( } ) }... : £ £ – , “ " ” " ♥ SYM ================================================ FILE: src/textblob/en/en-morphology.txt ================================================ ;;; ;;; The morphological rules are based on Brill's rule based tagger v1.14, ;;; trained on Brown corpus and Penn Treebank. ;;; NN s fhassuf 1 NNS x NN . fchar CD x NN - fchar JJ x NN ed fhassuf 2 VBN x NN ing fhassuf 3 VBG x ly hassuf 2 RB x ly addsuf 2 JJ x NN $ fgoodright CD x NN al fhassuf 2 JJ x NN would fgoodright VB x NN 0 fchar CD x NN be fgoodright JJ x NNS us fhassuf 2 JJ x NNS it fgoodright VBZ x NN ble fhassuf 3 JJ x NN ic fhassuf 2 JJ x NN 1 fchar CD x NNS ss fhassuf 2 NN x un deletepref 2 JJ x NN ive fhassuf 3 JJ x NNP ed fhassuf 2 JJ x NN n't fgoodright VB x VB the fgoodright NN x NNS he fgoodright VBZ x VBN he fgoodright VBD x NN are fgoodright JJ x JJ was fgoodleft NN x NN est fhassuf 3 JJS x VBZ The fgoodright NNS x NNP ts fhassuf 2 NNS x NN 4 fchar CD x NN ize fhassuf 3 VB x .. hassuf 2 : x ful hassuf 3 JJ x NN ate fhassuf 3 VB x NNP ing fhassuf 3 VBG x VBG is fgoodleft NN x NN less fhassuf 4 JJ x NN ary fhassuf 3 JJ x Co. goodleft NNP x NN ant fhassuf 3 JJ x million goodleft CD x JJ their fgoodleft IN x NN he fgoodright VBD x Mr. goodright NNP x JJ of fgoodleft NN x NN so fgoodright JJ x NN y fdeletesuf 1 JJ x VBN which fgoodright VBD x VBD been fgoodright VBN x VB a fgoodright NN x NN economic fgoodleft JJ x 9 char CD x CD t fchar JJ x NN can fgoodright VB x VB the fgoodright NN x JJ S-T-A-R-T fgoodright VBN x VBN - fchar JJ x NN lar fhassuf 3 JJ x NNP ans fhassuf 3 NNPS x NN men fhassuf 3 NNS x CD d fchar JJ x JJ n fdeletesuf 1 VBN x JJ 's fgoodleft NN x NNS is fhassuf 2 NN x ES hassuf 2 NNS x JJ er fdeletesuf 2 JJR x Inc. goodleft NNP x NN 2 fchar CD x VBD be fgoodleft MD x ons hassuf 3 NNS x RB - fchar JJ x NN very fgoodright JJ x ous hassuf 3 JJ x NN a fdeletepref 1 RB x NNP people fgoodleft JJ x VB have fgoodleft RB x NNS It fgoodright VBZ x NN id fhassuf 2 JJ x JJ may fgoodleft NN x VBN but fgoodright VBD x RS hassuf 2 NNS x JJ stry fhassuf 4 NN x NNS them fgoodleft VBZ x VBZ were fgoodleft NNS x NN ing faddsuf 3 VB x JJ s faddsuf 1 NN x NN 7 fchar CD x NN d faddsuf 1 VB x VB but fgoodleft NN x NN 3 fchar CD x NN est faddsuf 3 JJ x NN en fhassuf 2 VBN x NN costs fgoodright IN x NN 8 fchar CD x VB b fhaspref 1 NN x zes hassuf 3 VBZ x VBN s faddsuf 1 NN x some hassuf 4 JJ x NN ic fhassuf 2 JJ x ly addsuf 2 JJ x ness addsuf 4 JJ x JJS s faddsuf 1 NN x NN ier fhassuf 3 JJR x NN ky fhassuf 2 JJ x tyle hassuf 4 JJ x NNS ates fhassuf 4 VBZ x fy hassuf 2 VB x body addsuf 4 DT x NN ways fgoodleft JJ x NNP ies fhassuf 3 NNPS x VB negative fgoodright NN x ders hassuf 4 NNS x ds hassuf 2 NNS x -day addsuf 4 CD x nian hassuf 4 JJ x JJR s faddsuf 1 NN x ppy hassuf 3 JJ x NN ish fhassuf 3 JJ x tors hassuf 4 NNS x oses hassuf 4 VBZ x NNS oves fhassuf 4 VBZ x VBN un fhaspref 2 JJ x lent hassuf 4 JJ x NN ward fdeletesuf 4 RB x VB k fchar NN x VB r fhassuf 1 NN x VB e fdeletesuf 1 NN x NNS Engelken fgoodright VBZ x NN ient fhassuf 4 JJ x ED hassuf 2 VBD x VBG B fchar NNP x VB le fhassuf 2 NN x ment addsuf 4 VB x ING hassuf 3 NN x JJ ery fhassuf 3 NN x JJ tus fhassuf 3 NN x JJ car fhassuf 3 NN x NN 6 fchar CD x NNS 0 fchar CD x JJ ing fdeletesuf 3 VBG x here hassuf 4 RB x VBN scr fhaspref 3 VBD x uces hassuf 4 VBZ x fies hassuf 4 VBZ x self deletesuf 4 PRP x NNP $ fchar $ x VBN wa fhaspref 2 VBD x ================================================ FILE: src/textblob/en/en-sentiment.xml ================================================ > > reliability="0.9" /> ================================================ FILE: src/textblob/en/en-spelling.txt ================================================ ;;; ;;; Based on several public domain books from Project Gutenberg ;;; and frequency lists from Wiktionary and the British National Corpus. ;;; http://norvig.com/big.txt ;;; a 21155 aah 1 aaron 5 ab 2 aback 3 abacus 1 abandon 32 abandoned 72 abandoning 27 abandonment 15 abandons 2 abasement 1 abashed 13 abate 5 abatement 2 abbe 19 abbey 2 abbot 1 abbots 1 abbott 5 abbreviations 1 abc 1 abdicate 1 abdicated 1 abdomen 22 abdomens 2 abdominal 47 abduct 3 abducted 4 abducting 2 abduction 10 abductor 4 abductors 1 abe 2 abel 1 aberdeen 2 abettors 2 abeyance 1 abhor 1 abhorrence 1 abhorrent 1 abide 6 abiding 3 abigail 3 abilities 1 ability 14 abject 1 abjure 1 ablaze 4 able 201 ablest 1 ably 1 abnegation 2 abnormal 28 abnormality 2 abnormally 10 aboard 1 abode 2 abodes 1 abolish 9 abolished 25 abolishing 11 abolition 36 abolitionist 3 abolitionists 19 abominable 9 abominably 1 abomination 1 abominations 4 abort 1 abortion 2 abortive 1 abound 2 abounding 1 about 1497 above 298 aboveboard 1 abraded 3 abraham 7 abramovna 1 abrasion 8 abrasions 4 abreast 6 abridge 1 abridged 3 abridging 3 abroad 54 abrogated 1 abrupt 9 abruptly 17 abscess 195 abscesses 45 absence 98 absent 56 absentee 1 absentees 1 absently 6 absentmindedly 1 absolute 56 absolutely 71 absolutism 1 absolved 3 absorb 4 absorbable 2 absorbed 61 absorbent 6 absorbing 2 absorption 43 abstain 3 abstained 2 abstaining 2 abstemious 2 abstention 1 abstiens 1 abstract 11 abstracted 4 abstraction 7 abstruse 1 absurd 24 absurdity 6 absurdly 3 abundance 15 abundant 28 abundantly 4 abuse 16 abused 6 abuses 23 abusing 3 abusive 2 abutted 2 abyss 4 ac 1 acacia 1 academic 4 academies 1 academy 3 acadia 1 acceded 1 acceding 1 accelerate 2 accelerated 2 accent 18 accents 2 accentuated 3 accentuating 2 accept 57 acceptable 4 acceptance 8 accepted 87 accepting 12 accepts 6 access 56 accessed 3 accessible 11 accession 6 accessory 7 accident 28 accidental 17 accidentally 20 accidently 1 accidents 13 acclaimed 2 acclamation 3 acclamations 2 accommodate 4 accommodated 1 accommodation 5 accommodations 1 accompanied 85 accompanies 7 accompaniment 8 accompaniments 2 accompany 22 accompanying 18 accompli 1 accomplice 2 accomplish 16 accomplished 39 accomplishing 2 accomplishment 4 accomplishments 4 accord 29 accordance 16 accorded 6 according 164 accordingly 24 accoucheur 1 account 177 accountability 2 accountable 1 accountant 11 accounted 8 accounting 1 accounts 38 accouterments 1 accredited 1 accrue 3 accumulate 7 accumulated 13 accumulates 6 accumulation 25 accumulations 6 accuracy 8 accurate 16 accurately 17 accursed 1 accusation 3 accusations 2 accuse 4 accused 31 accuser 1 accusers 1 accuses 2 accusing 1 accustom 3 accustomed 65 ace 1 acetabular 1 acetabulum 4 acetatis 1 acetones 1 ache 4 aches 3 achieve 7 achieved 9 achievement 11 achievements 11 achilles 7 achillis 2 achillo 4 aching 10 achondroplasia 2 achtung 1 acid 61 acidosis 2 acids 1 acknowledge 11 acknowledged 10 acknowledges 1 acknowledging 6 acknowledgment 3 aclasis 2 acme 2 acne 5 acorn 2 acquaint 1 acquaintance 56 acquaintances 40 acquainted 22 acquiesce 2 acquiesced 1 acquiescence 1 acquire 18 acquired 57 acquirement 1 acquires 1 acquiring 4 acquisition 14 acquittal 1 acquitted 3 acre 10 acreage 1 acres 36 acrid 3 acrimonious 5 acromial 2 acromion 4 across 222 act 321 acte 2 acted 37 acting 58 actinomyces 9 actinomycosis 17 action 357 actionable 2 actions 77 activate 1 active 96 actively 14 activist 1 activities 27 activity 131 actor 8 actors 3 actress 7 actresses 3 acts 89 actual 64 actually 40 actuated 5 acupuncture 5 acute 169 acutely 7 acuteness 1 ad 1 adair 1 adam 5 adamant 2 adams 81 adamses 1 adamson 2 adapt 3 adaptation 1 adaptations 1 adapted 9 adapting 2 add 27 added 298 adder 3 addicted 4 adding 22 addison 1 addition 72 additional 30 additions 10 address 76 addressed 72 addresses 10 addressing 74 adds 9 adducing 1 adduct 1 adduction 3 adductor 6 adductors 2 adelaide 1 adele 1 aden 1 adenitis 4 adenoids 3 adenoma 24 adenomas 2 adept 4 adequate 9 adequately 2 adhere 8 adhered 5 adherence 1 adherent 26 adherents 7 adheres 2 adhering 4 adhesion 2 adhesions 44 adhesive 3 adieu 6 adipose 3 adiposis 1 adiposus 2 adj 1 adjacent 93 adjective 5 adjoined 1 adjoining 17 adjourn 3 adjourned 5 adjournment 3 adjunct 1 adjust 2 adjusted 16 adjusting 7 adjustment 8 adjustments 1 adjutant 166 adjutants 38 adjuvant 1 adlai 1 adler 16 administer 8 administered 18 administering 4 administrating 1 administration 117 administrations 9 administrative 12 administrator 5 administrators 1 admirable 14 admirably 7 admiral 6 admirals 1 admiralty 2 admiration 14 admire 7 admired 13 admirer 3 admirers 1 admires 1 admiring 8 admiringly 1 admission 61 admit 65 admits 9 admitted 61 admittedly 3 admitting 23 admixture 3 admonish 2 admonishing 1 admonishingly 1 admonitory 1 ado 1 adolescence 5 adolescent 4 adolescentium 2 adolescents 6 adonai 1 adopt 18 adopted 81 adopting 7 adoption 22 adorable 2 adoration 5 adore 4 adored 16 adorer 4 adorers 1 adores 1 adoring 2 adorn 3 adorned 1 adorning 1 adornment 1 adraksin 4 adrenal 1 adrenalin 6 adrenals 1 adrian 1 adrift 1 adroit 6 adroitly 3 adroitness 3 adulation 2 adult 24 adults 26 adv 1 advance 95 advanced 112 advancement 5 advances 4 advancing 45 advantage 63 advantageous 18 advantageously 4 advantages 39 adve 1 advent 6 adventitious 8 adventure 34 adventurer 3 adventurers 6 adventures 17 adventuress 1 adventurous 3 adversary 3 adverse 9 adversity 3 advertise 3 advertised 3 advertisement 25 advertisements 2 advertising 5 advice 63 advisability 1 advisable 15 advise 19 advised 28 adviser 5 advisers 10 advises 3 advising 6 advisory 1 advocacy 1 advocate 15 advocated 17 advocates 29 advocating 6 advsh 4 aerial 1 aerobes 2 aerobic 2 aerogenes 3 aesthetic 2 aet 40 afar 3 afebrile 1 affability 1 affable 2 affably 1 affair 116 affaire 1 affaires 2 affairs 214 affect 39 affectation 13 affected 203 affecting 41 affection 73 affectionate 23 affectionately 10 affections 87 affects 33 afferent 9 affetto 2 affianced 6 affiliated 4 affiliation 1 affinity 8 affirm 5 affirmation 4 affirmative 6 affirmatively 4 affirmed 2 affirming 1 affixed 1 afflicted 3 affliction 2 affluent 1 affluents 1 afflux 1 afford 20 afforded 21 affording 11 affords 9 affright 1 affront 1 affronted 1 affronts 1 afghan 1 afghanistan 1 afield 1 aflame 2 afloat 2 afore 1 aforesaid 1 afraid 173 afresh 11 africa 24 african 6 africans 3 aft 1 after 1504 afterglow 1 afterlife 1 afternoon 34 afterward 19 afterwards 72 afwaid 1 again 866 against 660 agar 1 agate 2 age 137 aged 31 agencies 18 agency 11 agenda 1 agent 25 agents 49 ages 16 aggrandizement 4 aggravate 5 aggravated 18 aggravatedly 1 aggravates 1 aggravating 2 aggravation 2 aggregate 3 aggregated 1 aggregation 2 aggregations 3 aggression 11 aggressive 9 aggressor 2 aggressors 2 aggrieved 3 aghast 4 agile 4 agility 7 agitated 52 agitating 6 agitation 83 agitations 2 agitator 3 agitators 4 aglow 3 agnes 1 ago 108 agog 1 agonies 2 agonising 4 agonized 1 agonizing 2 agonizingly 1 agony 10 agra 1 agrafena 6 agrarian 6 agree 77 agreeable 28 agreeably 4 agreed 71 agreeing 6 agreement 70 agreements 5 agrees 2 agrement 1 agricultural 22 agriculturalist 1 agriculture 55 agriculturists 2 ague 1 aguinaldo 2 agwee 1 ah 222 ahahah 1 ahead 43 ai 3 aid 113 aide 48 aided 17 aides 17 aiding 4 aids 2 ailing 1 ailments 1 aim 108 aime 5 aimed 19 aiming 6 aimless 4 aimlessly 2 aims 24 ain 1 air 228 aircraft 1 airiness 1 airline 1 airplane 2 airport 1 airs 3 airy 3 aisle 2 aix 2 ajar 1 ak 3 akharovs 1 akhrosimova 3 akimbo 5 akin 14 akinfi 1 akron 1 al 1 alabama 33 alacrity 2 alae 1 alamance 2 alamo 2 alan 1 alarm 52 alarmed 29 alarming 5 alarms 1 alas 4 alaska 12 alaskan 1 alba 2 albanians 1 albany 15 albeit 2 albert 7 album 5 albumen 6 albumin 1 albuminous 1 albuminuria 5 albumose 2 albumoses 1 albumosuria 3 albums 4 albuquerque 1 albus 6 alcohol 38 alcoholic 7 alcoholism 5 alder 1 aldermen 2 alders 1 aldersgate 1 aldershot 1 aldrich 3 ale 1 alenina 1 aleppo 3 alert 13 alertly 1 alertness 2 alesha 1 alexander 155 alexanders 2 alexandre 3 alexandria 4 alexeevich 41 alexeevna 2 alexey 1 alexins 2 alexis 9 alfalfa 1 alfred 1 algebra 2 algiers 1 algonquins 2 ali 1 alias 1 alice 13 alicia 1 alien 33 alienated 3 alienating 2 aliens 10 alight 4 alighted 2 alighting 2 align 1 aligning 1 alike 37 aliment 1 alimentary 4 alimony 1 aline 2 alive 71 alkalies 1 alkaline 5 alkaloid 1 alkaloids 1 all 4144 allah 1 allay 6 allayed 3 allaying 2 allays 2 allegation 1 allege 1 alleged 23 allegedly 1 alleghanies 3 allegheny 1 allegiance 17 alleging 1 allegories 1 allegory 1 allegro 2 allen 1 alleviate 2 alleviating 2 alleviation 1 alley 5 alleys 3 allez 1 alliance 51 alliances 6 allied 28 alliee 1 allies 22 allison 1 allocate 1 allocation 1 alloit 1 allons 1 allopaths 1 allot 1 allotted 6 allow 91 allowance 10 allowances 1 allowed 86 allowing 19 allows 9 allude 3 alluded 6 alluding 7 allured 1 allurement 1 allurements 1 alluring 1 alluringly 1 allusion 7 allusions 5 alluvial 1 ally 10 alma 1 almanac 1 almanacs 2 almighty 8 almond 3 almonds 1 almost 325 alms 5 almshouse 1 almshouses 1 aloe 1 aloft 2 alone 337 along 404 alongside 5 aloof 5 aloofness 2 alopecia 1 alopoecia 1 aloud 28 aloysius 5 alpatych 137 alpha 7 alphabet 3 alphonse 1 alps 2 already 487 alright 2 alsace 2 alsatian 2 also 778 altar 15 altars 2 alte 1 alter 17 alteration 19 alterations 17 altercation 1 altered 42 altering 4 alternate 8 alternated 1 alternately 7 alternating 2 alternation 1 alternative 14 alternatively 5 alternatives 1 altgeld 1 although 168 altogether 34 alton 2 alum 1 aluminium 2 alveolar 5 alveoli 7 always 608 am 746 amalek 2 amalgam 2 amant 1 amants 1 amass 1 amateur 5 amazed 16 amazement 11 amazing 10 amazingly 2 amazon 1 ambassador 30 ambassadors 7 amber 3 ambiguity 2 ambiguous 2 ambition 13 ambitions 5 ambitious 8 amble 1 ambled 1 ambler 1 ambling 1 ambrine 3 ambulance 7 ambulatory 2 ambuscade 1 ambush 7 ame 3 amelie 3 amen 1 amenable 11 amend 2 amended 2 amending 2 amendment 89 amendments 19 amends 1 amene 1 amenities 1 america 299 american 755 americanization 5 americans 79 amethyst 1 ami 3 amiabilities 2 amiability 3 amiable 21 amiably 8 amicable 4 amicably 1 amid 84 amidst 2 amie 2 amiens 1 amiss 6 amity 3 ammonia 3 ammoniae 2 ammoniated 1 ammonium 3 ammunition 16 amnesty 12 amniotic 1 amoeboid 2 among 451 amongst 9 amorous 4 amorys 1 amos 1 amount 92 amounted 8 amounting 8 amounts 6 amour 2 amoureuse 1 amoy 1 amp 1 amphilochus 1 amphitheater 2 ample 9 amplifying 1 amply 4 ampoule 1 amputate 4 amputated 6 amputating 3 amputation 73 amputations 4 amsterdam 4 amstetten 1 amulet 1 amuse 14 amused 27 amusement 13 amusements 3 amuses 2 amusing 24 amusingly 1 amy 1 an 3423 ana 2 anaemia 7 anaemic 7 anaerobe 2 anaerobes 5 anaerobic 3 anaesthesia 23 anaesthetic 26 anaesthetise 1 anaesthetised 1 anaesthetist 2 anal 4 analgesia 3 analogies 5 analogous 3 analogy 5 analyse 1 analysis 20 analyst 1 analytical 3 analyze 6 analyzed 3 analyzing 2 anaphylactic 1 anaphylaxis 5 anarchical 1 anarchist 1 anarchists 3 anarchy 7 anastomose 1 anastomosed 2 anastomoses 1 anastomosis 7 anastomotic 2 anathematized 1 anatole 222 anatomical 33 anatomy 30 ancestor 3 ancestors 7 ancestral 3 ancestry 1 anchor 3 anchors 1 ancient 50 ancients 17 anconeus 1 and 38313 anderson 2 andover 1 andre 2 andreevich 8 andrew 1169 andrews 2 andros 6 andrusha 6 andwew 1 andy 1 anecdote 5 anecdotes 6 anel 4 aneurysm 214 aneurysmal 13 aneurysmo 1 aneurysmorrhaphy 2 aneurysms 12 anew 6 anferovs 2 angel 42 angela 1 angeles 3 angelic 2 angelically 1 angelo 1 angels 4 anger 59 angered 5 angina 5 angio 8 angioma 22 angiomas 3 angiomata 1 angiomatous 1 angiotribes 1 anglaise 3 angle 38 angler 3 angles 10 angleterre 1 anglican 6 anglicans 4 angling 2 anglo 8 angrier 3 angrily 82 angry 132 anguish 3 angular 2 aniline 1 animal 57 animals 40 animate 1 animated 66 animatedly 1 animating 1 animation 31 animosities 1 animosity 3 animus 1 aniska 3 anisya 16 anita 1 aniversary 1 ankle 36 ankles 6 ankylosed 2 ankylosing 1 ankylosis 54 ann 2 anna 294 annal 1 annals 5 annandale 3 annapolis 5 anne 10 annette 12 annex 1 annexation 25 annexed 4 annexing 1 annihilate 3 annihilated 2 annihilating 1 anniversaries 1 anniversary 5 announce 19 announced 67 announcement 21 announcements 2 announces 1 announcing 8 annoy 2 annoyance 18 annoyed 9 annoying 3 annual 20 annually 9 annular 6 annulled 7 annulling 2 annulment 3 ano 1 anoci 2 anode 1 anointed 1 anoints 1 anomalies 1 anon 1 anonymous 4 another 841 anserina 2 ansicht 1 anstruther 1 answer 205 answerable 1 answered 226 answering 37 answers 25 ant 3 antagonise 2 antagonism 4 antagonist 4 antagonistic 2 antagonists 3 antagonizing 1 ante 3 antecedent 12 antecedents 2 antechamber 5 antechambers 1 anterior 28 anteroom 36 anterooms 1 anthony 8 anthracaemia 2 anthracis 2 anthracite 1 anthrax 20 anthropoid 1 anti 76 antibodies 6 antibody 1 antichrist 5 anticipate 4 anticipated 10 anticipating 4 anticipation 6 antics 1 anticus 1 antidotes 1 antietam 3 antigen 1 antigens 2 antinational 1 antipathetic 1 antipathies 1 antipathy 8 antipodes 1 antipyrin 1 antique 5 antiquity 4 antiseptic 28 antiseptics 11 antitoxic 6 antitoxin 5 antitoxins 2 antivenin 2 antoinette 2 anton 3 antonio 4 antonov 1 antonovna 4 antrum 2 ants 5 antwerp 1 anus 9 anxieties 2 anxiety 46 anxious 63 anxiously 20 any 1204 anybody 21 anyhow 12 anymore 1 anyone 223 anything 379 anyway 6 anywhere 40 aorta 27 aortic 4 aortitis 1 apace 2 apache 1 apaches 1 apart 85 apartment 11 apartments 14 apathetic 1 apathy 4 ape 4 aperture 6 apes 4 apex 4 apiece 7 apocalypse 4 apocalyptic 1 apollo 1 apollon 1 apologetically 2 apologies 5 apologise 2 apologize 12 apologized 1 apologizing 2 apology 12 aponeuroses 2 aponeurosis 6 aponeurotic 1 apoplectic 1 apoplexy 1 apostle 2 apostles 3 apothecaries 1 appalachian 3 appalachians 9 appalled 3 appalling 7 apparatus 16 apparel 1 apparelled 1 apparent 42 apparently 68 apparition 4 appeal 55 appealed 13 appealing 5 appeals 11 appear 150 appearance 135 appearances 31 appeared 197 appearing 23 appears 108 appease 3 appeased 3 appeasing 1 appellate 3 appellation 3 appellations 1 appendages 6 appendectomy 1 appendicitis 2 appendix 11 appetite 12 appetizing 2 applaud 1 applauding 1 applause 7 apple 11 apples 2 appliance 2 appliances 9 applicable 24 applicant 3 application 77 applications 23 applied 206 applies 4 apply 43 applying 36 appoint 8 appointed 91 appointees 3 appointment 39 appointments 11 appomattox 4 apportioned 11 apportioning 1 apportionment 4 apposed 4 appositely 1 appositeness 1 apposition 10 appraisal 1 appraise 2 appraised 1 appraising 1 appreciable 1 appreciably 2 appreciate 12 appreciated 22 appreciating 2 appreciation 8 appreciative 1 apprehend 2 apprehended 1 apprehension 5 apprehensive 5 apprentice 2 apprenticed 1 apprentices 2 apprenticeship 2 approach 40 approached 81 approaches 6 approaching 68 approbation 4 appropriate 32 appropriated 6 appropriately 5 appropriating 1 appropriation 6 appropriations 4 approval 58 approve 20 approved 47 approving 6 approvingly 7 approximate 4 approximated 6 approximately 13 approximates 1 approximating 2 approximation 5 appwove 1 apraksin 1 apraksina 5 apraksins 2 april 33 apron 12 aproned 1 aprons 3 apropos 1 apsheron 4 apsherons 4 apt 35 aptitude 4 aptly 5 aquaintances 1 aquarium 1 aqueducts 1 aqueous 1 aquiline 2 ar 1 arab 5 arabchik 1 arabia 2 arabian 2 arabic 1 arable 3 arabs 1 arabum 1 arakcheev 43 arat 1 arbat 8 arbiter 1 arbiters 1 arbitrament 1 arbitrarily 7 arbitrariness 1 arbitrary 19 arbitrate 2 arbitrated 1 arbitration 27 arbitrators 1 arborescent 10 arbuthnot 2 arc 5 arcade 1 arch 13 archaeological 1 archangel 1 archbishop 3 archbishops 2 archduchess 2 archduchy 1 archduke 15 arched 7 archery 1 arches 1 archie 2 arching 5 archipelago 1 architect 19 architects 2 architectural 2 architecture 6 archive 37 archives 1 archway 1 arcola 3 arctic 2 arcy 1 ardent 14 ardently 1 ardor 8 arduous 7 arduously 1 are 3630 area 163 areas 41 aren 19 arena 7 areola 1 areolar 2 argentina 1 argonne 3 argue 8 argued 16 argues 1 arguing 8 argument 32 argumentative 1 argumentatively 1 arguments 38 argus 1 arid 6 aridity 3 aright 2 arinka 1 arise 28 arisen 4 arises 15 arising 16 aristocracies 1 aristocracy 16 aristocrat 2 aristocratic 15 aristocrats 1 aristotle 1 aristovo 2 arithmetic 2 arizona 16 arizonians 1 ark 1 arkansas 20 arkharovs 4 arm 262 armada 2 armaments 5 armchair 49 armchairs 3 armed 54 armee 3 armenia 1 armenian 6 armenians 1 armfeldt 12 armfeldts 1 armies 62 arming 2 armistice 8 armitage 3 armor 1 armory 1 armour 2 armpit 1 armpits 3 arms 249 army 764 arnauts 2 arnold 7 arnsworth 1 aroma 1 aromatic 2 arose 48 around 271 arouse 16 aroused 52 arouses 1 arousing 9 arraigned 1 arrange 34 arranged 75 arrangement 35 arrangements 29 arranging 19 array 7 arrayed 2 arrears 1 arrest 60 arrested 78 arresting 14 arrestment 1 arrests 5 arrival 68 arrivals 7 arrive 28 arrived 120 arrives 4 arriving 18 arrogance 2 arrogant 3 arrow 4 arrows 2 arsenal 4 arsenals 1 arsenic 12 arsenical 10 arseno 5 arshin 1 arson 2 art 47 arterial 38 arteries 77 arterio 21 arteriole 1 arterioles 5 arteriorrhaphy 2 arteritis 9 artery 168 artful 3 arthralgia 1 arthritic 3 arthritis 71 arthrodesis 1 arthrolysis 2 arthropathies 13 arthropathy 8 arthroplasty 6 arthur 34 article 55 articles 86 articular 118 articulate 1 articulated 1 articulating 5 articulation 3 artifice 1 artificial 39 artificiality 3 artificially 7 artillery 56 artilleryman 6 artillerymen 8 artisans 24 artist 5 artistic 7 artists 1 artless 2 arts 17 as 8064 ascend 3 ascendancy 1 ascended 14 ascending 11 ascent 3 ascertain 10 ascertained 6 ascertaining 4 ascetic 1 asch 2 ascii 11 ascites 7 ascribe 5 ascribed 10 ascribing 2 asepsis 7 aseptic 25 aseptically 1 asepticity 4 ash 5 ashamed 64 ashburton 5 ashen 2 ashes 11 ashore 3 ashy 2 asia 4 asiatic 4 asiatique 2 aside 105 asile 1 ask 251 askanazy 1 askance 4 asked 777 asking 121 asks 21 asleep 87 asp 1 asparagus 2 aspect 55 aspects 21 aspen 3 asperity 1 aspersion 1 asphyxia 5 asphyxiated 1 aspirated 3 aspirating 1 aspiration 3 aspirations 4 aspired 1 aspirin 2 ass 2 assail 3 assailant 1 assailants 1 assailed 11 assailing 1 assassin 1 assassinated 1 assassination 4 assassins 1 assault 13 assaulted 2 assemble 8 assembled 49 assemblies 23 assembling 3 assembly 40 assemblymen 1 assent 9 assented 14 assenting 2 assert 8 asserted 12 asserting 2 assertion 5 asserts 1 assess 1 assessment 2 assessor 1 asset 2 assez 1 assiduity 1 assiduous 2 assiduously 1 assign 5 assignat 1 assignation 1 assigned 18 assignment 2 assimilable 1 assimilate 1 assimilated 4 assimilating 1 assimilation 3 assist 13 assistance 52 assistant 50 assistants 10 assisted 5 assisting 2 assizes 7 associate 13 associated 196 associates 6 associating 2 association 45 associations 7 assume 71 assumed 69 assumes 36 assuming 12 assumption 31 assumptions 2 assurance 29 assurances 2 assure 24 assured 41 assuredly 2 assures 1 assuring 10 asterisk 3 asterisks 1 astir 3 astonish 3 astonished 19 astonishing 4 astonishment 28 astor 1 astoria 2 astounded 5 astounding 13 astraea 1 astrakhan 1 astray 6 astride 1 astronomy 9 astute 6 astuteness 1 astwide 2 asunder 2 asylum 15 asylums 3 at 6791 ataxia 6 ataxic 2 atchison 1 ate 21 atheist 1 atheistic 1 atheistical 1 athenian 1 athens 1 atheroma 6 atheromatous 4 athlete 2 athletes 2 athletic 2 athletics 1 athwart 2 atkinson 1 atlanta 6 atlantic 24 atlas 1 atmosphere 23 atmospheres 2 atom 4 atomic 1 atoms 5 atone 7 atonement 1 atrocious 2 atrocities 4 atrocity 1 atrophic 3 atrophied 2 atrophy 20 atropin 4 att 1 attach 7 attached 53 attaches 6 attaching 5 attachment 14 attachments 5 attack 157 attacked 65 attacker 2 attacking 25 attacks 66 attain 50 attainder 3 attained 32 attaining 5 attainment 10 attainments 2 attains 9 attainted 1 attempt 76 attempted 29 attempting 18 attempts 46 attend 29 attendance 22 attendant 13 attendants 4 attended 132 attendez 1 attending 16 attendre 1 attends 8 attention 191 attentions 9 attentive 17 attentively 32 attenuated 9 attic 5 attica 1 attics 1 attila 1 attire 4 attired 1 attitude 72 attitudes 6 attorney 5 attorneys 1 attract 19 attracted 36 attracting 5 attraction 12 attractions 3 attractive 23 attractively 1 attracts 5 attribute 10 attributed 24 attributes 3 attributing 2 au 18 aubert 1 auckland 1 auction 4 auctions 1 audacious 1 audacity 5 audible 23 audibly 3 audience 22 audiences 1 audit 1 auditing 1 auditor 4 auditoriums 1 auditory 5 auersperg 12 auerstadt 4 aug 1 augesd 5 augezd 1 aught 1 augment 2 augmented 3 augments 1 augury 1 august 70 augusta 2 augustin 2 augustine 1 augustus 1 aunt 52 auntie 3 aureus 13 auricle 5 auricular 10 auscultating 1 auscultation 1 auspices 2 auspicious 1 auspiciously 1 aussi 1 austere 3 austerity 1 austerlitz 51 austin 2 australia 10 australian 10 australians 1 austria 53 austrian 71 austrians 19 austro 2 authentic 3 authenticity 1 author 29 authorise 1 authoritative 2 authoritatively 1 authorities 54 authority 100 authorization 1 authorize 3 authorized 31 authorizing 16 authors 18 auto 3 autobiography 5 autoclave 1 autocracy 1 autocrat 1 autocratic 5 autocrats 2 autogenous 3 automatic 3 automatically 2 automobile 1 autonomous 2 autonomy 7 autoplastic 2 autre 1 autumn 46 autumnal 3 aux 2 auxiliaries 1 avail 19 availability 1 available 37 availed 1 availing 8 avalanche 2 avare 1 avarice 2 ave 1 avec 3 avenge 4 avenged 2 avenue 26 avenues 4 average 18 averaged 1 averages 1 averaging 2 averred 2 averse 7 aversion 5 avert 11 averted 7 averting 3 avez 1 aviation 1 avoid 98 avoidance 2 avoided 56 avoiding 22 avoids 1 avoue 1 avow 1 avowed 8 avulsed 1 avulsing 1 avulsion 9 await 18 awaited 37 awaiting 53 awaits 7 awake 24 awaked 1 awaken 6 awakened 16 awakening 11 award 7 awarded 7 awards 3 aware 52 awareness 2 away 838 awe 11 awed 4 awful 29 awfully 10 awhile 15 awistocwacy 1 awkward 36 awkwardly 15 awkwardness 9 awl 1 awls 1 awoke 19 awry 4 ax 11 axe 1 axes 5 axilla 37 axillary 32 axiom 3 axis 37 axles 1 ay 3 aye 3 ayez 1 aylmer 1 azor 1 azov 1 azur 1 azure 2 b 87 ba 2 babcock 2 babe 2 babel 1 babes 1 babies 3 babinski 1 baboon 4 baby 45 babyhood 1 babylon 1 baccelli 1 bacchus 1 bache 1 bachelor 18 bachelors 2 bacillary 4 bacilli 33 bacillus 68 back 746 backbiter 1 backed 8 backgammon 1 background 11 backing 2 backs 9 backward 25 backwardness 2 backwards 17 backwash 2 backwater 3 backwoods 2 backwoodsman 1 backwoodsmen 1 bacon 10 bacteria 115 bacterial 54 bactericidal 4 bacteriological 5 bacteriology 7 bacterium 3 bad 155 bade 5 baden 2 badge 6 badges 2 badly 55 badness 1 baffled 8 baffling 2 bag 21 baggage 39 baggers 2 bagging 2 baggy 2 bagley 1 bagovut 2 bagration 156 bags 14 bah 2 bail 3 bailey 1 bailiff 2 bait 2 baited 1 baits 1 baize 4 bake 2 baked 5 baker 49 bakers 3 bakeshops 1 baking 3 bal 2 balaga 20 balalayka 6 balance 43 balanced 6 balances 2 balancing 3 balanitis 3 balashav 2 balashev 110 balcony 11 bald 82 baldly 1 baldwin 1 baleful 1 bales 2 balfour 1 balk 3 balkan 1 balked 3 ball 124 ballad 1 ballads 1 ballarat 6 ballasted 1 ballet 4 balloon 9 balloons 2 ballot 49 balloted 1 balloting 1 ballots 3 ballroom 36 balls 50 balmoral 4 balsam 2 baltic 1 baltimore 17 baltimores 1 balustraded 1 balzac 1 bamboo 1 ban 6 banana 1 bancroft 2 bancrofti 3 band 54 bandage 49 bandaged 21 bandages 14 banded 3 bandit 2 banditti 1 bandolier 1 bandoliers 1 bands 27 bandsmen 1 bandy 6 bane 1 bang 7 banged 3 banging 2 banish 1 banished 7 banishment 2 banister 1 bank 109 banker 16 bankers 9 banking 30 bankrupt 3 bankruptcies 2 bankruptcy 5 banks 54 banner 9 banners 6 banquet 7 banter 2 bantering 2 banteringly 1 baptism 2 baptismal 1 baptist 1 baptists 3 baptized 2 bar 25 barbadoes 2 barbara 5 barbarian 2 barbarians 1 barbaric 2 barbarism 3 barbarity 2 barbarous 2 barbed 1 barber 4 barcarolle 2 barclay 52 barclays 1 bardeen 1 bare 74 bared 6 barefoot 7 barefooted 7 bareheaded 6 barely 6 barest 2 bargain 13 bargained 2 bargaining 5 barge 1 bargees 1 barges 2 baring 3 baritone 3 bark 9 barked 1 barker 1 barking 3 barks 1 barley 4 barlow 1 barmaid 3 barn 17 barns 1 barometric 1 baron 12 baroness 1 baronet 1 baronial 3 barony 1 barque 7 barracks 2 barre 3 barred 11 barrel 7 barrelled 1 barrels 5 barren 4 barricade 1 barricaded 2 barrier 24 barriers 8 barring 4 barrington 2 barron 1 barrow 1 barrowloads 1 barry 3 bars 8 bart 1 bartenstein 2 barter 1 bartered 1 bartering 2 barthelemi 1 bartholomew 2 barton 1 baryta 1 basal 2 base 53 based 56 baseless 1 basely 1 basement 1 baseness 10 baser 2 bases 5 bashful 2 bashfully 1 bashfulness 1 basic 6 basically 1 basil 2 basilar 1 basilic 4 basin 7 basins 2 basis 40 bask 1 basket 8 basketful 1 baskets 1 basle 1 basov 1 bass 18 bassano 1 bassett 4 bast 12 bastard 2 bastards 1 bastille 3 bat 2 bataillons 1 batard 1 batch 1 bated 2 bath 22 bathe 4 bathed 10 bathhouse 2 bathing 6 bathroom 2 baths 18 bathtubs 1 batiste 1 batman 1 baton 1 battalion 45 battalions 26 battens 1 battered 5 batteries 17 battery 78 battle 440 battled 2 battlefield 37 battlefields 1 battleground 1 battles 41 battleship 2 battleships 7 battre 1 bavaria 1 bavarians 2 baxter 1 bay 23 baying 2 bayonet 5 bayoneted 1 bayonets 14 bazaar 5 bazaars 1 bazdeev 10 bazdeevs 1 bazin 6 bc 1 be 6155 beach 3 beacon 1 bead 3 beaded 1 beading 1 beads 4 beak 2 beam 3 beamed 10 beaming 19 beams 9 bean 4 beans 1 bear 86 bearable 1 beard 43 bearded 6 beardless 4 beards 3 bearer 2 bearers 9 bearing 42 bearings 5 bears 18 bearskin 2 bearskins 1 beast 26 beastly 1 beasts 6 beat 46 beaten 47 beatific 4 beatified 3 beating 21 beats 4 beatson 5 beau 2 beauche 1 beaucoup 2 beauharnais 2 beaumarchais 3 beausset 25 beauties 2 beautiful 98 beautifully 7 beauty 70 beaux 1 beaver 6 became 314 because 630 becher 3 beck 3 becker 1 beckoned 11 beckoning 2 become 409 becomes 245 becoming 82 bed 221 bedchamber 3 bedclothes 5 bedded 2 bedding 3 bedford 2 bedouin 6 bedridden 2 bedroom 45 bedrooms 3 beds 13 bedside 6 bedstead 9 bedsteads 1 bedtime 1 bee 15 beech 1 beecher 4 beeches 12 beef 10 beekeeper 8 beekeeping 1 been 2599 beer 9 bees 24 beetles 2 befall 3 befallen 3 befalls 1 befell 2 befits 4 befitted 1 befitting 2 before 1363 beforehand 13 befouled 2 befriend 1 befriended 1 beg 56 began 810 beget 2 beggar 10 beggarly 1 beggarman 1 beggars 3 beggary 1 begged 34 begging 18 begin 97 beginning 143 beginnings 17 begins 47 begrudge 1 begrudged 1 begun 99 behalf 24 behave 19 behaved 17 behaves 2 behaving 5 behavior 8 behaviour 5 beheaded 1 beheld 3 behind 401 behindhand 2 behold 4 beige 1 being 918 beings 12 bekker 1 bekleshev 3 belabor 1 belabored 2 belated 3 belauded 1 belaya 3 beleaguered 1 belfast 1 belfry 2 belgian 2 belgians 1 belgium 7 belief 31 beliefs 2 believe 183 believed 89 believer 1 believes 10 believing 11 bell 65 belladonna 4 belle 1 belleau 2 belliard 5 bellicose 1 bellies 1 belligerent 5 belligerents 7 bellowitz 1 bells 38 bellum 1 belly 11 belong 23 belonged 39 belonging 25 belongings 10 belongs 15 belova 12 beloved 19 below 115 belt 12 belted 2 belts 2 belying 1 ben 1 bence 4 bench 26 benches 4 bend 18 bended 1 bending 34 bendings 1 bends 2 beneath 77 benedict 5 benediction 1 benefactions 2 benefactor 31 benefactors 4 beneficent 7 beneficial 19 beneficially 1 beneficiaries 1 beneficiary 2 benefit 46 benefited 3 benefits 5 benevolence 3 benevolent 6 bengal 2 benign 5 benjamin 19 bennett 1 bennigsen 78 bennigsenites 1 bennigsens 1 bennington 1 bent 98 benton 3 benumbed 1 benzol 1 bequeathed 3 bequest 1 berezina 17 berg 98 bergs 4 beri 2 beringed 2 berkeley 1 berks 1 berkshire 4 berlin 13 bermuda 1 bernadotte 1 berne 1 bernhard 1 berth 2 berthier 14 berths 2 berwick 1 beryl 4 beryls 4 besashed 1 beseech 3 beseeching 1 beset 7 beside 218 besides 133 besieged 3 besought 3 besouhoff 1 bespattered 4 bespattering 1 besprinkled 2 bessieres 1 best 268 bestial 1 bestow 6 bestowed 4 besuhof 5 bet 17 beta 1 beth 1 bethink 1 bethlehem 1 betises 2 betokening 1 betook 1 betray 11 betrayal 3 betrayals 1 betrayed 14 betraying 12 betrays 1 betrothal 5 betrothed 18 bets 2 bettah 1 betted 1 better 266 betterment 2 betting 1 between 654 betwixt 1 bevelled 1 beverage 2 beverages 1 beveridge 2 bewail 1 bewails 1 beware 5 bewildered 16 bewilderment 8 bewitching 5 bewitchingly 1 bexar 1 beyond 225 bezubova 1 bezukhob 1 bezukhov 71 bezukhova 25 bias 2 biassed 1 bible 11 bibulous 1 bicarbonate 1 biceps 18 bicipital 2 bickering 1 bicycle 1 bicycling 1 bid 7 bidden 1 bidder 1 bidding 2 bide 1 bids 2 bien 2 bienseance 1 bier 24 bifida 1 bifurcates 2 bifurcation 8 big 82 bigger 7 biggest 1 biglow 1 bigwigs 3 bijou 1 bike 1 bilateral 9 bile 6 bilibin 68 bilious 2 bill 99 billet 4 billeted 2 billets 1 billion 10 billions 3 billon 4 billroth 2 bills 34 billy 1 billycock 1 bimetallism 1 bimetallist 1 bin 2 binary 5 bind 22 binder 1 binding 18 binds 1 biniodide 3 biochemical 1 biographical 12 biographies 5 biography 5 biological 2 biology 2 bipolar 2 bipp 3 bipped 1 birch 19 birchbark 1 birches 9 birchmoor 1 birchwood 2 bird 36 birdie 1 birds 15 biretta 1 birmingham 5 birney 1 birth 28 birthday 6 birthdays 1 birthplace 2 birthright 2 births 1 biscuit 10 biscuits 8 bisecting 1 bishop 8 bishops 4 biskra 2 bismarck 2 bismuth 20 bisulphate 1 bit 63 bitch 12 bite 22 biter 1 bites 10 biting 9 bits 8 bitski 4 bitten 13 bitter 47 bitterest 2 bitterly 14 bitterness 15 biurate 1 bivouac 4 bivouacking 5 bivouacs 3 bizarre 5 bl 1 black 235 blackened 5 blackest 2 blackgaurds 2 blackguard 4 blackguards 3 blackish 1 blackmailed 1 blackmailing 1 blacksmith 2 blacksmithing 1 blacksmiths 1 bladder 15 blade 11 bladed 1 blades 4 blaine 6 blame 71 blamed 13 blameless 1 blamelessly 1 blameworthy 3 blaming 4 blanche 3 blanched 1 bland 6 blandly 9 blank 5 blanket 5 blankets 6 blasius 1 blasphemies 2 blasphemous 3 blasphemy 1 blast 7 blasted 1 blasting 1 blasts 1 blaze 5 blazed 6 blazers 2 blazing 7 blazoned 1 bleached 2 bleak 4 bleared 1 bleating 1 blebs 4 bled 5 bleed 20 bleeder 4 bleeders 11 bleeding 80 bleeds 2 blemishes 1 blend 4 blended 5 blending 3 bless 10 blessed 10 blessedness 7 blessing 17 blessings 4 blest 1 blew 11 blight 1 blind 23 blinded 1 blindfold 4 blindfolded 4 blinding 1 blindman 4 blindness 3 blinds 7 blink 2 blinked 2 blinking 5 bliss 12 blissful 9 blissfully 1 blister 22 blistering 4 blisters 30 bloated 2 bloc 1 bloch 1 block 14 blockade 21 blockaded 3 blockades 2 blockading 3 blocked 30 blockhead 5 blockhouses 1 blocking 22 blockquote 1 blocks 5 bloke 1 blonde 9 blood 548 blooded 3 bloodgood 1 bloodless 9 bloodlessly 2 bloodshed 4 bloodshot 5 bloodstained 11 bloodstains 2 bloodthirsty 5 bloody 14 bloom 5 blooming 1 bloomsbury 1 blossom 5 blossoming 2 blossoms 2 blot 2 blotch 3 blotched 1 blotches 3 blotted 3 blotting 2 blow 72 blowing 15 blown 12 blows 16 blubberers 1 bludgeon 1 blue 143 bluebeard 1 bluestocking 2 bluff 5 bluish 21 blunder 5 blundered 4 blundering 3 blunders 6 blunt 15 blunted 1 bluntly 5 bluntness 2 blur 1 blurred 1 blurs 1 blurt 1 blurted 1 blush 9 blushed 48 blushes 3 blushing 30 blushingly 1 bluster 1 boa 1 board 34 boarded 3 boarding 3 boards 15 boast 4 boasted 9 boastful 1 boasting 5 boat 11 boatload 2 boatmen 1 boats 11 bob 3 bobby 1 bobtail 1 bobtailed 5 boded 1 bodes 1 bodice 5 bodices 2 bodied 4 bodies 92 bodily 6 body 337 bodyguard 2 boer 1 boeuf 2 bog 2 bogart 4 bogdanich 14 bogdanovich 1 bogdanovna 10 boggy 2 bogota 1 bogucharovo 48 bohemia 15 bohemian 8 boil 17 boiled 15 boiler 5 boilers 3 boiling 17 boils 17 boire 1 boisterous 4 bold 38 bolder 1 boldest 2 bolding 1 boldly 36 boldness 10 bolivia 1 bolkhovitinov 13 bolkonskaya 10 bolkonski 178 bolkonskis 2 bolotnoe 1 bolsheviki 1 bolshevism 1 bolshevists 1 bolster 1 bolt 5 bolted 3 bolts 4 bomb 2 bombard 1 bombarded 1 bombardment 3 bombay 1 bomber 1 bombs 4 bonanza 1 bonaparte 94 bonapartist 3 bond 26 bondage 15 bondarchuk 2 bondarenko 2 bonded 1 bondholders 1 bondman 2 bondmen 13 bonds 52 bone 625 boned 5 bones 262 bonfire 3 bonfires 4 bonheur 1 bonjour 3 bonne 2 bonnet 8 bonniest 1 bonny 1 bons 2 bonus 2 bony 37 booby 1 book 125 bookcase 2 bookcases 1 booked 1 booking 1 bookish 2 booklet 1 books 59 bookshop 1 boom 14 boomed 5 booming 4 boon 5 boone 13 boonesboro 1 boor 1 boorishness 3 boost 2 boot 22 booted 2 booth 1 booths 1 bootmaker 1 bootmakers 2 boots 91 booty 9 boracic 16 bordeaux 4 border 47 bordered 5 bordering 2 bordermen 1 borders 17 bore 46 bored 10 boredom 1 borgeaud 1 boring 6 boris 293 borisov 1 born 38 borne 40 borodino 108 borough 1 boroughs 3 borovitski 1 borovsk 2 borrow 6 borrowed 16 borrowers 3 borrowing 3 borrowings 1 bory 5 borzoi 18 borzois 34 borzozowska 1 boscombe 16 bosnia 1 bosom 21 bosoms 1 boss 5 bosse 2 bossed 1 bosses 10 bossing 4 boston 64 boswell 1 botanist 3 botany 2 both 529 bother 4 bothering 2 bothnia 1 bottle 46 bottles 14 bottom 42 bottoms 2 bough 1 boughs 1 bought 55 bougies 1 boulevard 6 boulevards 2 boulogne 4 boulton 1 bounce 1 bound 95 boundaries 14 boundary 27 bounded 10 bounding 3 boundless 5 bounds 13 bounteous 1 bounties 8 bounty 3 bouquet 4 bourbon 2 bourbons 8 bourgeois 2 bourienne 130 bout 2 bouts 2 bovine 6 bow 43 bowdoin 3 bowed 71 bowel 4 bowels 10 bower 4 bowie 2 bowing 28 bowl 6 bowled 1 bowler 1 bowls 2 bows 8 bowwowing 1 box 75 boxed 1 boxer 7 boxers 2 boxes 16 boxing 3 boy 169 boyars 7 boycott 1 boycotted 1 boyfriend 1 boyhood 3 boyish 4 boys 21 br 1 brace 4 braced 5 bracelets 2 braces 3 brachial 22 brachialis 5 brachio 1 bracket 1 brackets 1 braddock 5 bradford 2 bradley 1 bradshaw 2 bradstreet 12 brag 1 bragg 2 braggart 1 bragging 2 braided 2 braiding 1 brain 58 brains 8 brake 2 bramble 1 bramwell 2 branch 52 branched 1 branches 66 branchial 4 branching 3 brand 4 branded 5 branding 1 brandish 1 brandishing 2 brandon 1 brandy 15 brandywine 3 brasdor 3 brass 8 brassy 2 brat 1 braunau 14 bravado 1 brave 28 braved 5 bravely 3 braver 2 bravery 4 bravest 5 braving 1 bravo 5 bravoure 1 brawler 1 brawls 1 brawny 2 brazen 5 brazier 2 brazil 4 breach 21 breaches 2 bread 34 breadth 12 break 96 breakdown 1 breakers 2 breakfast 33 breakfasting 2 breakfasts 2 breaking 61 breaks 17 breakup 1 breast 86 breasted 1 breastpin 1 breasts 2 breath 38 breathe 10 breathed 9 breathes 1 breathing 43 breathless 13 breathlessly 5 breckinridge 15 bred 10 breech 2 breeches 21 breed 6 breeding 4 breeds 1 breeze 6 breezy 1 bremen 1 brest 1 brethren 6 brevis 1 brewer 1 brewery 1 brewing 1 brian 1 briar 1 bribe 2 bribed 4 bribery 3 bribes 3 brick 14 brickish 1 bricklayers 2 bricklaying 1 bricks 7 bridal 2 bride 11 bridegroom 8 bridge 156 bridged 1 bridgehead 3 bridges 17 bridging 3 bridle 5 bridled 3 bridles 2 brief 25 briefer 1 briefest 2 briefly 16 briefs 1 brig 1 brigade 7 brigadier 1 brigand 7 brigands 6 brigham 5 bright 114 brighten 1 brightened 15 brightening 4 brightens 2 brighter 16 brightest 4 brightly 29 brightness 7 brilliance 2 brilliancy 2 brilliant 85 brilliantly 5 brim 5 brimful 1 brimmed 4 brimming 1 brims 1 brindled 1 bring 165 bringing 48 brings 10 brink 4 briony 11 brisk 10 brisker 1 briskly 19 briskness 3 bristled 1 bristling 2 bristly 1 bristol 9 britain 77 britannica 3 british 265 briton 1 brittle 9 brixton 6 broad 92 broadcast 4 broadcloth 1 broaden 2 broadened 5 broadening 1 broader 6 broadest 3 broadly 4 broadsheet 6 broadsheets 11 broadsides 2 broadway 1 brochure 1 brodie 14 broke 95 broken 127 broker 1 bromides 3 bronchial 8 bronchiectasis 1 bronchitis 1 broncho 1 bronnikov 1 bronnitski 1 bronnitskis 1 bronze 3 bronzes 3 brooch 1 brood 6 brooded 1 brooding 3 brook 7 brooklyn 1 brooks 4 broom 3 brothels 1 brother 177 brotherhood 19 brotherhoods 3 brotherly 7 brothers 50 brougham 4 brought 406 broussier 5 brow 21 browed 1 brown 71 brownish 14 brows 32 browsing 1 brozin 1 bruce 4 bruin 2 bruise 5 bruised 21 bruises 5 bruising 9 bruit 10 brumaire 2 brunette 1 brunn 12 brunswick 1 brunt 2 brush 18 brushed 21 brushes 1 brushing 1 brushwood 1 brusque 3 brusquely 1 brussels 1 brutal 6 brutally 2 brute 7 brutes 2 brutus 1 bryan 25 bryant 1 bryce 5 bryn 1 bu 1 bubble 1 bubbles 1 bubbling 1 bubo 9 buboes 2 bubonic 1 buchanan 7 bucharest 3 buck 2 bucket 3 buckle 4 buckled 4 buckles 1 bucks 1 buckwheat 5 bud 3 buddha 1 buddhist 1 budding 2 budge 3 budget 4 buds 6 buena 1 buff 3 buffalo 12 buffaloes 1 buffets 2 buffoon 10 buffoons 1 bug 1 buggy 1 bugle 2 bugler 4 build 17 builder 3 builders 8 building 53 buildings 19 built 77 bulb 2 bulbous 6 bulgaria 3 bulge 2 bulged 2 bulges 2 bulging 2 bulk 9 bulkier 1 bulkiest 1 bulky 8 bull 6 bullae 5 bulldog 2 bullet 46 bulletin 3 bullets 43 bullion 2 bully 3 bulwark 2 bulwarks 1 bulwer 1 bumblebee 1 bumblebees 1 bump 4 bumped 1 bumping 1 bunch 5 bunches 3 bundle 13 bundles 24 bunion 2 bunker 4 bunks 1 bunsen 1 bunt 1 bunting 1 bunyan 1 buonaparte 30 buonapartes 1 buonapartists 1 buoyant 2 buoyed 1 burden 34 burdened 9 burdening 2 burdens 9 burdensome 4 burdino 1 bureau 19 bureaucracy 1 bureaucratic 1 buren 12 burgess 1 burgesses 3 burgher 1 burghers 1 burglar 1 burglaries 1 burglars 1 burgled 2 burgoyne 7 burgundy 1 burial 2 buried 21 burke 23 burlington 1 burly 1 burn 40 burned 77 burning 83 burnished 1 burnol 2 burnoose 1 burns 58 burnside 1 burnt 8 burnwell 7 burr 6 burri 2 burroughs 1 burrow 3 burrowing 2 burrows 2 bursa 75 bursae 38 bursal 16 bursata 2 bursitis 16 burst 73 bursting 16 bursts 9 bury 8 burying 3 bus 1 bush 8 bushel 5 bushels 4 bushes 29 bushy 9 busied 2 busier 1 busily 4 business 316 businesslike 5 businessman 1 businessmen 2 bust 3 bustle 12 bustled 2 bustling 7 bustlingly 1 busts 1 busy 55 busybody 1 busying 1 but 5653 butcher 3 butchers 1 bute 1 butler 14 butt 7 butte 1 butted 1 butter 3 butterflies 1 butterfly 2 buttermilk 2 buttock 23 buttocks 6 button 14 buttoned 10 buttonhole 1 buttoning 8 buttons 8 butts 1 buxhowden 13 buxton 2 buy 50 buyer 2 buyers 2 buying 15 buzz 5 buzzed 1 buzzing 10 bweak 3 bweed 1 bwethwen 1 bwicks 1 bwing 6 bwinging 1 bwother 2 bwought 1 bwushed 1 bwute 2 by 6738 bye 7 bykov 1 byrom 2 byron 1 bystanders 1 byways 1 c 143 ca 1 cab 33 cabal 2 cabalistic 2 cabbage 5 cabby 1 cabin 9 cabinet 18 cabins 4 cable 3 cabman 8 cabmen 1 cabot 3 cabriolet 1 cabs 3 cachectic 1 cachets 1 cachexia 6 cackle 1 cacodylate 1 cactus 1 cadaver 2 cadaverous 1 cadet 25 cadets 1 cady 3 caecum 2 caesar 10 caesars 3 cafe 1 caffein 1 cage 5 caged 1 cahd 2 cain 1 caird 1 cairo 1 caisson 1 caissons 2 cajolery 1 cake 6 cakelike 1 cakes 5 cal 1 calamine 1 calamities 6 calamitous 1 calamity 17 calcanean 2 calcaneus 14 calcareous 6 calcification 17 calcified 9 calcined 1 calcis 1 calcium 5 calculate 7 calculated 19 calculating 2 calculation 7 calculations 4 calculus 1 calcutta 2 calder 2 caldrons 3 caleb 1 caleche 29 caleches 3 calendar 2 calendars 1 calf 17 calhoun 38 calibre 5 calibres 1 calico 1 california 55 californian 1 californians 1 californy 1 calkers 1 call 197 called 450 callender 23 callers 2 calling 62 callings 1 callosities 7 callosity 4 callous 12 calls 29 callus 10 calm 91 calmed 3 calmer 6 calmette 1 calming 2 calmly 28 calmness 3 calms 1 calomel 7 calorie 1 caltrops 1 calumny 1 calvaria 1 calves 3 calvin 2 camberwell 2 cambon 1 cambric 2 cambridge 7 camden 6 came 979 camel 3 camelia 3 cameo 2 camera 2 cameron 1 camlet 1 camp 138 campaign 190 campaigned 1 campaigner 1 campaigning 3 campaigns 21 campan 8 campbell 1 camped 1 campfire 18 campfires 31 camphor 1 camping 1 campo 1 camps 9 campstool 3 can 1095 canada 28 canadian 5 canadians 2 canal 72 canalised 1 canals 35 cancel 1 canceled 3 cancellated 1 cancellation 1 cancelli 1 cancellous 13 cancer 170 cancerous 17 cancers 12 cancrum 7 candid 6 candidacy 2 candidate 56 candidates 28 candidly 1 candle 36 candlelight 1 candles 28 candlestick 3 candlesticks 1 candor 1 candy 1 cane 5 canister 1 canned 1 canneries 1 canning 2 cannon 94 cannonade 12 cannonading 2 cannons 1 cannot 277 cannula 8 canoe 1 canon 4 canonized 1 canopy 4 canst 1 cantata 2 canteen 6 canteenkeeper 1 canter 1 cantharides 3 cantharidis 1 canthus 2 cantigny 2 canton 2 canvas 4 canvass 1 canyon 1 cap 97 capabilities 2 capability 1 capable 54 capacious 1 capacities 1 capacity 39 cape 3 caper 1 capered 1 capers 2 capillaries 17 capillary 24 capitaine 1 capital 144 capitale 1 capitalism 1 capitalist 4 capitalists 12 capitally 3 capitals 5 capitation 1 capitis 1 capitol 2 capitulation 6 capless 2 capotes 1 caprice 8 caprices 1 capricious 1 capriciously 1 caps 19 capsicum 1 capsular 11 capsulatus 3 capsule 33 capsules 1 captain 127 captaincy 2 captains 12 captivated 2 captivating 1 captive 7 captives 1 captivity 10 captors 2 capture 44 captured 55 captures 2 capturing 6 car 7 carabineers 1 caraffe 1 caravan 3 caravans 2 carbohydrates 1 carbolic 31 carbolised 1 carbon 12 carbonate 6 carbuncle 17 carbuncles 2 carcinoma 10 carcinomatous 1 card 30 cardboard 8 cardiac 14 cardinal 4 cardinell 1 carding 1 cardplayer 1 cards 47 care 106 cared 14 careening 1 career 39 careers 1 carefree 2 careful 43 carefully 72 careless 14 carelessly 14 carelessness 4 carer 1 cares 20 caress 3 caressed 4 caressing 10 caret 1 careworn 3 cargo 5 cargoes 4 caribbean 18 caricature 1 caries 24 carious 9 carl 3 carlo 2 carlsbad 1 carlton 4 carlyle 1 carnage 1 carnegie 3 carnival 1 carnivora 1 carolina 97 carolinas 17 caroline 2 carolinians 1 carotid 26 carousal 1 carousals 3 carp 1 carpal 8 carpenter 4 carpenters 10 carpentry 1 carpet 21 carpeted 3 carpets 13 carpi 6 carping 1 carpus 2 carranza 3 carree 1 carrel 3 carriage 143 carriages 42 carried 282 carrier 2 carriers 6 carries 9 carrion 1 carron 2 carrot 2 carry 103 carrying 87 carryings 1 cars 7 carson 1 cart 56 carta 2 carte 2 carted 5 carter 1 carteret 1 carterets 1 carters 1 cartier 1 cartilage 104 cartilages 10 cartilaginous 26 carting 6 cartload 1 cartloads 1 cartoon 5 cartoons 1 cartridge 2 cartridges 1 carts 83 cartwright 1 carve 2 carved 7 carving 2 cascade 1 case 438 caseated 6 caseating 3 caseation 17 caseful 1 casement 5 caseous 12 cases 453 cash 11 cashbox 1 cashier 2 casket 5 caskets 1 casque 1 cassel 2 cassette 1 cassock 2 cast 54 castanet 1 castanets 1 caste 2 casting 11 castle 14 castor 2 castrated 1 castres 2 casts 1 casual 9 casually 10 casualties 1 casualty 2 cat 10 cataclysm 2 cataclysms 1 catacombs 3 catafalque 1 catalepsy 2 catalogue 2 cataloguers 2 catarrh 4 catastrophe 8 catch 45 catcher 1 catches 5 catching 18 catchplay 1 catchwords 1 catechism 1 catechisms 1 categories 3 category 9 cater 1 catgut 22 catharine 1 cathcart 2 cathedral 13 cathedrals 1 catherine 26 catheter 3 catheterising 1 catholic 10 catholicism 1 catholics 9 catiche 10 catlike 1 cats 2 cattle 42 cattlemen 1 caucasus 2 caucus 9 caucuses 3 caught 90 caulaincourt 6 cauldron 2 cauliflower 7 causal 2 causalgia 1 causation 15 causations 1 causative 5 causatively 1 cause 376 caused 102 causeless 1 causes 149 causing 54 caustic 13 caustics 3 caustique 2 cauteries 1 cauterisation 4 cauterise 1 cauterised 7 cautery 19 caution 18 cautioned 1 cautious 10 cautiously 12 cava 3 cavae 1 cavalcade 1 cavalier 3 cavaliers 1 cavalry 79 cavalryman 5 cavalrymen 6 cave 3 caved 1 cavern 2 cavernous 12 caverns 2 cavities 29 cavity 96 cawing 2 cawolla 1 ce 11 cease 38 ceased 63 ceaseless 4 ceaselessly 1 ceases 13 ceasing 2 cecil 1 cecilia 1 cedar 2 cedars 3 ceded 8 ceding 2 ceiling 15 ceilings 1 cela 2 celebrate 6 celebrated 23 celebrates 1 celebrating 3 celebration 4 celebrations 1 celebres 1 celebrity 1 celerity 2 celestial 3 cell 12 cellar 22 cellaret 1 cellars 3 celled 7 cells 130 cellular 70 cellulitic 1 cellulitis 40 celsus 1 celtic 3 celui 2 cement 4 cemetery 2 censer 1 censers 1 censor 2 censorship 5 censure 9 censured 3 censuring 1 census 8 cent 77 centennial 1 center 70 centered 13 centers 21 centimetres 1 central 76 centralization 3 centralized 2 centre 50 centred 2 centres 7 centrifugal 1 cents 11 centuries 12 century 93 cependant 1 cephalic 4 cereal 1 cereals 2 cerebellum 1 cerebral 8 cerebritis 1 cerebro 5 ceremonial 4 ceremonies 6 ceremonious 2 ceremoniously 2 ceremony 17 certain 361 certainly 119 certains 1 certainty 13 certificate 2 certificates 6 certify 2 cervera 1 cervical 40 ces 1 cessation 5 cession 12 cessions 1 cet 1 cette 6 cf 11 ch 3 chadwick 3 chafe 1 chafed 3 chaff 1 chaffed 2 chaffering 2 chaffing 5 chaffingly 1 chafing 1 chagrin 5 chagrined 3 chain 30 chained 1 chains 14 chair 135 chairman 7 chairs 29 chaise 1 chaises 1 chale 3 chalice 1 chalk 13 chalked 1 chalks 1 chalky 2 challenge 31 challenged 12 challenges 2 challenging 5 challengingly 1 chalme 1 chamber 35 chamberlain 3 chambers 6 chamois 3 champ 1 champagne 10 champing 1 champion 9 championed 4 champions 3 championship 2 champs 1 chance 96 chanced 8 chancellor 7 chancery 1 chances 18 chancre 30 chancres 8 chancroid 3 chandelier 1 chandeliers 1 change 150 changed 134 changers 1 changes 168 changing 44 channel 16 channels 14 channing 5 chant 1 chante 1 chanter 3 chanters 2 chanting 3 chantry 3 chaos 8 chap 9 chapel 8 chaplain 1 chaps 6 chapter 464 chapters 3 character 174 characterise 5 characterised 25 characterises 1 characteristic 97 characteristically 6 characteristics 14 characterize 2 characterized 15 characters 69 charcoal 10 charcot 19 charge 70 charged 28 charges 18 charging 4 charing 2 chariot 1 charitable 7 charities 3 charity 7 charlatan 1 charles 40 charleston 24 charlie 1 charlotte 1 charm 31 charmant 3 charmante 3 charme 1 charmed 4 charmee 1 charmer 3 charming 62 charmingly 1 charms 3 charon 2 charpie 1 charred 9 charring 4 chart 12 charter 32 chartered 9 chartering 1 charters 12 charts 2 chary 1 chas 1 chase 20 chased 5 chasers 1 chasing 2 chasm 2 chasseur 1 chasseurs 7 chaste 1 chastened 1 chat 9 chateau 3 chateaubriand 5 chatham 3 chatrov 1 chats 1 chattanooga 3 chatted 5 chattel 6 chatter 8 chattered 5 chattering 4 chatting 2 chatty 1 chaucer 1 cheadle 1 cheap 15 cheaper 4 cheapest 2 cheaply 2 cheapness 3 cheat 4 cheating 3 check 38 checked 22 checkerboards 1 checking 5 checkmate 1 checkmated 1 checks 6 cheek 43 cheekbones 4 cheeked 1 cheeks 47 cheer 5 cheered 10 cheerful 52 cheerfully 13 cheerfulness 5 cheerily 2 cheering 2 cheerless 2 cheers 6 cheery 3 cheese 5 cheetah 6 chef 2 cheilotomy 1 chekmar 3 cheloid 1 chemical 35 chemically 1 chemicals 1 chemiotaxis 1 chemise 1 chemist 3 chemistry 6 chemists 1 chemotaxis 1 cheque 2 cher 25 chere 9 cherish 6 cherished 14 cherishing 2 chernyshev 8 cherokee 1 cherokees 1 cherry 9 cherubini 1 chesapeake 3 chess 5 chessboard 1 chessmen 3 chessplayer 1 chest 81 chester 3 chesterfield 1 chestnut 15 chests 1 chevalier 4 chevaliers 2 chew 1 chewed 1 chewing 4 cheyenne 1 chi 1 chicago 28 chichagov 10 chickamauga 2 chicken 6 chickens 3 chiding 1 chief 359 chiefly 134 chiefs 3 chieftain 2 chiene 1 chiffon 1 chiffonier 3 chigirin 2 chigoe 4 chilblain 4 chilblains 7 child 176 childbearing 1 childbed 1 childhood 41 childish 25 childishly 2 childishness 2 childless 1 childlike 24 children 231 childwen 1 chile 1 chill 16 chilled 2 chillicothe 1 chilliness 5 chills 2 chilly 4 chime 1 chimed 8 chimera 1 chimerical 1 chimes 2 chiming 1 chimney 11 chimneys 3 chimpanzee 1 chin 30 china 43 chinaware 1 chinchilla 1 chinese 24 chink 2 chinks 1 chinoises 1 chins 1 chintz 2 chip 5 chipault 1 chips 1 chiropodists 1 chirped 2 chirping 2 chirruping 1 chisel 12 chiselled 2 chiselling 1 chit 4 chivalrous 3 chivalry 6 chloral 4 chlorate 1 chloride 7 chlorine 3 chloroform 4 chloroma 2 chlorosis 1 choate 1 chocolate 6 choice 46 choicest 2 choir 8 choirs 2 choke 2 choked 14 choking 10 cholera 1 choleric 2 cholestrol 3 chondral 3 chondro 13 chondroma 27 chondromas 14 chondromata 1 chondromatosis 2 choose 54 chooses 1 choosing 20 chop 1 chopped 1 choppers 1 chopping 2 chord 6 chordoma 2 chords 3 chorea 1 choroiditis 3 chorus 6 chose 34 chosen 73 chris 1 christ 32 christendom 1 christened 3 christian 16 christianity 5 christians 7 christine 1 christmas 24 christmastime 1 christopher 3 chromatic 2 chromic 1 chromicised 1 chronic 121 chronicle 7 chronicler 1 chroniclers 1 chronicles 3 chronological 2 chubb 1 chubby 1 chuck 1 chucked 2 chuckle 2 chuckled 7 chuckling 1 chum 1 church 117 churches 34 churchill 1 churchyard 1 churlish 1 churned 1 churning 1 chyle 8 chylo 2 chylorrhoea 2 chylous 3 chyluria 1 cicatrices 6 cicatricial 41 cicatrisation 7 cicatrise 1 cicatrix 16 cicero 1 cider 1 cigar 15 cigarette 6 cigarettes 1 cigars 7 ciliary 2 cincinnati 6 cinder 1 cinema 1 circassian 6 circle 78 circled 1 circles 36 circlet 1 circuit 4 circuiting 1 circuits 1 circular 24 circulate 4 circulated 5 circulates 1 circulating 22 circulation 93 circulatory 3 circumcision 2 circumference 2 circumflex 3 circumscribed 24 circumscribes 1 circumspect 2 circumspection 1 circumspectly 2 circumstance 7 circumstances 107 circumstantial 3 circumstantially 1 circumvented 2 circus 1 cirrhosis 2 cirsoid 9 citadel 5 cite 1 cited 10 cities 77 citizen 28 citizenesses 1 citizens 109 citizenship 14 citrate 1 city 180 civic 3 civics 1 civil 177 civilian 19 civilians 12 civilisation 2 civilised 2 civilities 2 civility 2 civilization 41 civilized 11 clad 14 cladius 1 claim 43 claimant 1 claimants 1 claimed 22 claiming 6 claims 40 clair 27 clamber 1 clambered 3 clammy 5 clamor 10 clamored 3 clamp 3 clamped 4 clamping 1 clamps 1 clan 1 clandestine 2 clang 5 clanging 3 clank 1 clanking 4 clannish 1 claparede 5 clapped 7 clapper 2 clapping 6 clara 2 clare 1 clarendon 2 claret 3 clarification 1 clarify 2 clarifying 1 clarion 1 clarity 1 clark 13 clarke 1 clash 16 clashed 3 clashes 2 clasp 3 clasped 11 clasping 3 claspings 1 class 73 classed 2 classes 30 classic 6 classical 6 classically 1 classification 14 classified 6 classify 1 classroom 3 clatter 12 clattered 3 clattering 3 claude 1 claudication 2 clause 15 clauses 3 clausewitz 1 claviceps 1 clavichord 22 clavicle 20 clavicles 1 clavicular 9 claw 5 claws 3 clay 72 clayton 5 clean 61 cleaned 6 cleaner 1 cleanest 2 cleaning 6 cleanliness 13 cleanly 3 cleanse 5 cleansed 5 cleansing 5 clear 233 clearance 1 clearcut 1 cleared 53 clearer 11 clearest 2 clearheadedness 1 clearing 29 clearings 3 clearly 130 clearness 12 clears 2 cleavage 1 cleaver 2 cleaving 1 cleft 1 clefts 3 clemenceau 3 clemency 3 clement 1 clench 1 clenched 4 clenching 3 cleopatra 1 clergy 19 clergyman 9 clergymen 3 clerical 8 clerk 25 clerks 8 cleveland 42 clever 56 cleverer 3 cleverest 2 cleverly 2 cleverness 6 click 6 clicked 3 client 33 clients 3 cliff 2 clifford 1 cliffs 3 climate 15 climax 8 climb 6 climbed 13 climber 1 climbing 3 clinch 2 clinched 1 clinching 1 cling 4 clinging 9 clinic 1 clinical 160 clinically 27 clinics 1 clink 3 clinked 1 clinking 3 clinton 4 clip 5 clipped 3 clipping 2 clips 2 cloaca 2 cloacae 4 cloak 62 cloaks 9 clock 120 clocks 1 clodhoppers 1 cloister 1 clonic 6 close 219 closed 174 closely 95 closeness 3 closer 35 closes 6 closest 2 closet 1 closing 35 closure 6 clot 70 cloth 38 clothe 3 clothed 6 clothes 62 clothing 26 cloths 5 clotilde 1 clots 10 clotted 1 clotting 3 cloud 30 clouded 6 cloudless 3 cloudlets 2 clouds 44 cloudy 3 clown 2 clowns 1 club 71 clubbing 2 clubs 7 clucked 1 clue 19 clues 3 clump 4 clumps 1 clumsily 2 clumsy 8 clung 18 cluster 5 clustered 1 clusters 4 clutch 3 clutched 13 clutches 4 clutching 14 clymer 1 cm 2 cms 1 co 30 coach 26 coaches 3 coachman 52 coachmen 6 coagula 1 coagulability 2 coagulate 4 coagulated 4 coagulates 5 coagulating 2 coagulation 11 coagulum 3 coal 39 coaled 1 coalesce 3 coalescence 3 coaling 2 coalition 4 coaptation 3 coarse 28 coarsely 2 coarseness 1 coarser 1 coarsest 1 coast 40 coastal 1 coasts 4 coat 172 coated 2 coating 1 coats 39 coax 1 coaxing 1 cob 1 cobb 2 cobbler 1 cobblestones 1 coburg 9 cobwebby 1 cobwebs 1 cocain 1 cocaine 4 cocci 10 coccygeal 2 cochon 2 cock 9 cockcrow 1 cocked 10 cocking 2 cockroaches 4 cocks 5 cocksure 2 cocktail 1 cocoa 1 cocottes 1 cod 6 code 13 codein 1 codes 9 codman 1 cody 1 coeliac 2 coerce 2 coerced 2 coercion 3 coeur 4 coexist 2 coexistence 1 coexisting 1 coffee 24 coffeepot 1 coffin 13 cogency 1 cogently 2 cognition 2 cognitive 1 cognizable 1 cognizance 2 cognizant 1 cogs 1 cogwheel 1 cogwheels 3 cohens 1 coherence 4 coherent 2 cohnheim 1 coiffure 7 coiffures 1 coil 5 coiled 2 coiling 1 coils 2 coin 22 coinage 13 coincide 5 coincided 4 coincidence 12 coincidences 1 coincident 4 coincidently 4 coincides 4 coinciding 2 coiners 1 coins 5 col 1 cold 257 colder 2 coldly 27 coldness 13 coleridge 1 coley 2 colfax 1 coli 7 colic 2 collaboration 1 collahs 1 collapse 17 collapsed 12 collapses 1 collapsing 3 collar 37 collarbones 1 collars 2 collateral 21 collaterals 1 colleague 7 colleagues 10 collect 24 collected 40 collecting 17 collection 27 collections 7 collective 28 collectively 3 collector 2 collectors 3 collects 3 college 36 colleges 11 collegiate 1 colles 4 collide 1 collided 3 collides 1 colliding 1 collins 1 collision 12 collisions 4 collodion 11 colloid 9 colloidal 2 colloquies 1 cologne 3 colombia 3 colombian 2 colon 9 colonel 143 colonels 1 colonial 182 colonies 207 colonists 63 colonization 18 colony 57 color 42 colorado 13 coloration 7 colored 24 coloring 3 colors 5 colossal 3 colosseum 1 colossus 2 colostomy 1 colour 95 coloured 21 colourful 1 colourless 4 colours 1 colt 2 columbia 11 columbus 6 column 62 columnar 4 columns 49 com 4 coma 4 coman 17 comb 4 combat 11 combatant 1 combatants 3 combated 1 combating 6 combative 1 combatted 1 combed 3 combers 1 combination 43 combinations 33 combine 10 combined 43 combining 4 combs 3 come 934 comedian 2 comedy 5 comely 3 comes 91 comet 10 cometh 1 comfort 34 comfortable 22 comfortably 12 comforted 10 comforting 12 comforts 11 comic 4 comical 5 coming 217 comings 1 comite 1 comma 2 command 151 commanded 25 commandeered 1 commander 310 commanders 64 commanding 32 commands 35 comme 3 commence 11 commenced 7 commencement 19 commences 15 commencing 6 commend 2 commendation 3 commended 2 commending 1 commensurable 1 commensurate 2 comment 10 commentaries 2 commentary 1 commentator 1 commented 2 commenting 1 comments 5 commerce 119 commercial 68 commercialism 1 comminuted 2 comminution 3 commiserating 1 commiseration 4 commissariat 14 commissaries 3 commissary 1 commission 62 commissionaire 4 commissioned 4 commissioner 8 commissioners 16 commissions 21 commit 17 commitment 1 commits 4 committed 51 committee 39 committeeman 1 committeemen 2 committees 21 committing 3 commodities 11 commodity 2 commodore 10 commodores 1 common 287 commoner 3 commoners 2 commonest 27 commonly 60 commonplace 14 commonplaces 2 commons 22 commonsense 3 commonwealth 11 commonwealths 5 commotion 5 commotions 1 communal 2 commune 7 communicable 1 communicate 15 communicated 14 communicates 4 communicating 11 communication 42 communications 3 communicative 1 communing 1 communion 8 communis 8 communism 5 communist 4 communistic 4 communities 9 community 21 commuted 1 commuting 1 compact 21 compactly 1 compacts 2 compagne 1 compagnie 1 companies 73 companion 81 companions 18 companionship 2 company 192 comparable 6 comparative 11 comparatively 60 compare 29 compared 49 compares 2 comparing 5 comparison 26 comparisons 1 compartment 5 compartments 2 compass 6 compasses 4 compassion 4 compassionate 2 compassionately 3 compatible 6 compatriot 1 compatriots 1 compel 9 compelled 48 compelling 6 compensate 3 compensated 4 compensation 19 compensatory 1 compete 1 competence 2 competent 8 competing 2 competition 23 competitive 3 competitor 2 competitors 5 compilation 3 compile 1 compilers 1 complacency 3 complacent 4 complacently 4 complain 14 complained 17 complaining 6 complains 19 complaint 20 complaints 8 complement 3 complementary 1 complements 1 complete 145 completed 25 completely 95 completeness 4 completing 2 completion 3 complex 25 complexion 3 complexity 2 compliance 17 complicate 2 complicated 29 complicates 2 complicating 1 complication 11 complications 31 complied 2 compliment 7 complimentary 1 complimented 3 compliments 4 comply 19 complying 8 component 5 components 4 compose 4 composed 91 composer 3 composing 6 composite 3 composition 12 compositor 1 composure 10 compound 20 compounds 1 comprehend 9 comprehended 4 comprehensible 13 comprehension 5 comprehensive 4 comprendre 1 comprenez 1 compress 5 compressed 34 compresses 2 compressible 8 compressing 5 compression 39 comprise 1 comprising 1 compromise 71 compromised 2 compromiser 1 compromises 5 compromising 4 comptez 1 comptrollers 1 compulsion 3 compulsory 10 compunction 3 compute 1 computer 12 computers 7 computing 1 comrade 24 comrades 46 comte 5 comtesse 1 con 1 conan 4 concatinatae 1 concave 3 concavo 1 conceal 31 concealed 29 concealing 10 concealment 3 concede 2 conceded 3 conceding 1 conceit 3 conceited 4 conceivable 6 conceive 16 conceived 7 conceives 1 concentrate 5 concentrated 31 concentrating 5 concentration 10 concentric 4 concentrically 3 concept 7 conception 81 conceptions 8 concepts 1 conceptual 1 concern 32 concerned 80 concerning 38 concerns 16 concert 6 concerted 3 concerts 3 concession 7 concessions 14 conciliate 2 conciliated 1 conciliating 1 conciliation 11 conciliatory 3 concise 4 concisely 2 conclaves 1 conclude 9 concluded 57 concluding 3 conclusion 58 conclusions 14 conclusive 9 conclusively 1 conclusiveness 1 concomitant 1 concomitants 1 concord 5 concourse 2 concrete 4 concur 3 concurrence 5 concurrent 2 concurrently 3 concussion 1 cond 1 conde 2 condemn 11 condemnation 5 condemnations 1 condemned 30 condemning 15 condensation 3 condensed 5 condensing 1 condescend 5 condescending 6 condescendingly 3 condescension 6 condign 1 condiments 1 condition 346 conditional 4 conditionally 4 conditioned 2 conditions 242 condolence 1 conduce 1 conduced 2 conducing 1 conduct 63 conducted 25 conducting 12 conductivity 1 conductor 3 conductors 1 conducts 1 condy 1 condylar 1 condyle 7 condyles 3 condylomata 7 condylomatous 1 cone 5 confectioner 1 confederacy 30 confederate 34 confederated 4 confederates 14 confederation 47 confer 14 conference 31 conferences 12 conferred 25 conferring 6 confers 2 confess 36 confessed 12 confession 14 confessor 4 confidant 4 confidante 1 confide 6 confided 6 confidence 53 confident 32 confidential 9 confidentially 4 confidently 8 confiding 3 configuration 3 confine 12 confined 60 confinement 5 confinements 1 confines 3 confining 3 confirm 16 confirmation 12 confirmatory 1 confirmed 36 confirming 3 confirms 6 confiscate 2 confiscated 5 confiscation 7 conflagration 7 conflagrations 3 conflict 75 conflicting 9 conflicts 13 confluence 3 confluent 4 conform 6 conforming 1 conformists 1 conformity 1 conforms 1 confound 6 confounded 2 confounding 1 confront 1 confrontation 1 confronted 12 confronting 2 confuse 1 confused 67 confusedly 1 confusing 4 confusion 58 confuted 1 cong 1 congealed 2 congenial 2 congenital 31 congenitally 1 congested 10 congestion 21 congestive 1 congratulate 21 congratulated 7 congratulating 1 congratulation 1 congratulations 6 congregated 1 congregation 9 congregations 3 congress 445 congresses 4 congressional 11 congressmen 4 conical 5 coniston 1 conjecture 10 conjectured 3 conjectures 8 conjecturing 1 conjoined 1 conjugal 2 conjunction 9 conjunctiva 5 conjunctivae 2 conjunctival 2 conjunctivitis 1 conjure 1 conjuror 1 conkling 4 connais 1 connaissez 1 connect 4 connected 52 connecticut 51 connecting 10 connection 103 connections 30 connective 100 connexion 1 connivance 2 connived 2 connoisseur 1 connoisseurs 3 conquer 9 conquered 12 conquering 7 conqueror 9 conquerors 7 conquest 28 conquests 5 conscience 25 consciences 3 conscientious 5 conscientiously 2 conscious 68 consciously 1 consciousness 78 conscripted 3 conscription 5 conscripts 1 conscwiption 1 consecrated 1 consecutive 4 consensus 1 consent 52 consented 7 consenting 1 consents 1 consequence 28 consequences 18 consequent 8 consequential 8 consequently 29 conservation 16 conservatism 1 conservative 44 conservatives 5 conservatories 2 conservatory 10 conserve 4 conserved 1 conserving 2 consider 98 considerable 173 considerably 18 considerate 4 consideration 36 considerations 30 considered 164 considering 53 considers 10 consigne 1 consigned 3 consist 29 consisted 38 consistence 19 consistency 3 consistent 12 consistently 8 consisting 25 consistory 1 consists 139 consolation 18 consolations 2 consolatory 1 console 7 consoled 4 consoler 1 consolidate 2 consolidated 9 consolidating 1 consolidation 7 consoling 5 consonant 1 consonants 1 consortium 1 conspicuous 12 conspiracies 2 conspiracy 14 conspiratorial 1 conspirators 1 conspired 5 conspiring 1 constable 6 constables 3 constabulary 2 constancy 1 constant 73 constantine 4 constantinople 1 constantly 48 consternation 7 constipated 1 constipation 4 constituency 1 constituent 6 constituents 3 constitute 25 constituted 15 constitutes 28 constituting 13 constitution 292 constitutional 92 constitutionality 6 constitutionally 3 constitutions 38 constrain 1 constrained 7 constrains 1 constraint 8 constricted 2 constricting 11 constriction 7 constricts 1 construct 6 constructed 21 constructing 4 construction 25 constructionists 1 constructive 6 construed 8 consul 4 consuls 3 consult 19 consultant 1 consultation 11 consultations 5 consulted 6 consulting 13 consults 1 consume 4 consumed 5 consumer 3 consumers 2 consuming 3 consummate 2 consummated 1 consumption 4 consumptive 2 contact 87 contagion 1 contagious 1 contagiousness 6 contain 26 contained 20 container 1 containing 68 contains 36 contaminated 14 contamination 4 contemplate 9 contemplated 4 contemplation 7 contemplative 1 contemporaneously 1 contemporaries 27 contemporary 10 contempt 39 contemptible 9 contemptuous 17 contemptuously 17 contend 3 contended 9 contending 4 content 29 contente 1 contented 13 contentedly 1 contention 6 contentions 2 contentment 1 contents 50 contest 54 contestants 4 contested 4 contests 10 context 3 contez 1 contiguous 2 continent 37 continental 46 continents 3 contingencies 9 contingent 3 continual 15 continually 91 continuance 6 continuation 3 continuations 1 continue 50 continued 291 continues 24 continuing 20 continuity 20 continuous 47 continuously 13 contorting 1 contortions 1 contour 11 contra 8 contraband 4 contrabass 1 contract 31 contracted 21 contractility 1 contracting 6 contraction 61 contractions 3 contractor 2 contractors 3 contracts 13 contractual 1 contracture 28 contradict 13 contradicted 4 contradicting 2 contradiction 20 contradictions 7 contradictory 11 contraire 1 contralto 2 contrary 158 contrast 50 contrasted 5 contrasting 2 contrasts 3 contrat 3 contre 2 contribute 9 contributed 12 contributes 1 contributing 7 contribution 4 contributions 13 contributory 1 contrition 1 contrivance 1 contrive 2 contrived 6 contrives 2 control 122 controlled 31 controlledly 1 controller 1 controlling 8 controls 3 controversial 2 controversies 14 controversy 33 controverted 1 contused 16 contusion 17 contusions 9 conundrums 1 convalescence 11 convalescent 3 convene 1 convened 4 convenience 9 convenient 25 conveniently 7 convent 5 convention 151 conventional 5 conventionalities 1 conventionality 1 conventions 29 converge 3 converging 2 conversant 3 conversation 181 conversational 1 conversations 20 converse 7 conversed 2 conversely 3 conversing 13 conversion 7 convert 10 converted 19 convertible 1 converting 3 converts 3 convex 5 convey 13 conveyance 7 conveyances 1 conveyed 26 conveying 7 conveys 2 convict 7 convicted 6 conviction 48 convictions 8 convicts 8 convient 1 convince 16 convinced 82 convinces 4 convincing 14 convoked 1 convoluted 3 convoy 27 convoyed 2 convoyman 1 convoys 2 convulse 1 convulsed 2 convulsion 1 convulsions 5 convulsive 6 convulsively 6 conway 2 cooee 7 cooing 1 cook 27 cooked 4 cookers 1 cooking 6 cooks 3 cookshop 1 cookshops 2 cool 11 cooled 3 coolest 1 coolidge 2 cooling 4 coolly 3 coolness 3 cooped 1 cooper 7 cooperate 4 cooperated 2 cooperating 1 cooperation 21 cooperative 9 coordinate 5 cop 1 cope 3 copeland 1 copenhagen 2 copernicus 4 copied 9 copier 1 copies 26 copious 9 copper 26 coppers 2 coppery 2 copse 9 copses 2 copy 46 copying 14 copyright 69 coquet 1 coquetry 3 coquette 1 coquettish 6 cor 1 coraco 1 coracoid 1 coral 3 corbin 2 cord 46 cordage 1 corded 4 cordial 12 cordiality 3 cordially 11 cording 1 cordon 2 cords 23 cordwainers 2 core 7 corium 5 cork 9 corked 2 corks 1 corn 45 cornea 7 cornell 2 corner 128 cornered 4 corners 16 cornet 8 cornetcy 1 corneum 3 cornfield 1 cornfields 1 cornice 1 cornified 2 corns 10 cornwall 2 cornwallis 10 corollary 1 corona 1 coronado 1 coronary 1 coronation 3 coroner 18 coronet 29 coronoid 1 corpora 2 corporal 29 corporals 1 corporate 5 corporation 34 corporations 26 corps 50 corpse 8 corpses 9 corpulence 1 corpulent 2 corpus 10 corpuscles 13 corradi 8 corrals 1 correct 38 corrected 14 correcting 3 correction 6 corrections 4 corrective 1 correctly 11 correctness 2 corrects 1 correlation 2 correspond 15 corresponded 4 correspondence 24 correspondent 5 corresponding 26 correspondingly 4 corresponds 8 corridor 35 corridors 1 corrigan 2 corroborate 1 corroboration 2 corrosive 3 corrupt 10 corrupted 2 corrupting 1 corruption 10 corruptly 2 corset 1 corsican 1 cortes 2 cortex 11 cortez 1 cortical 5 cortlandt 1 corvisart 1 corydon 1 cos 1 cosaques 1 cosmetic 1 cosmography 1 cosmopolitan 3 cossack 83 cossacks 84 cost 65 costa 1 costal 4 coster 1 costing 5 costly 10 costo 3 costs 8 costume 16 costumes 5 cosy 1 cot 12 cotillion 2 cotillions 1 cottage 5 cottages 1 cotterill 3 cotton 80 cottons 1 cottonwood 1 cotyledons 1 couch 15 couched 1 couches 1 cough 14 coughed 12 coughing 8 could 1700 couldn 11 couldst 1 couler 1 council 76 councillor 1 councilor 2 councilors 3 councils 11 counsel 10 counseled 2 counselling 1 counsellor 2 counselor 1 counselors 1 counsels 7 count 748 counted 20 countenance 9 countenances 2 counter 15 counteract 8 counteracted 2 counteracting 3 counteraction 1 counterattack 1 countered 2 counterfeiting 1 countermanded 1 countermarches 1 countermovement 4 counterorders 1 counterpaned 1 counterpart 1 counterpoise 1 counters 1 countess 497 countesses 1 counties 13 counting 15 countinghouse 1 countless 8 countries 54 country 423 countryman 3 countrymen 24 countryside 9 counts 2 countwy 1 county 17 coup 2 couple 45 coupled 4 couples 10 coupon 2 courage 41 courageous 2 courant 1 courier 24 couriers 2 course 389 courses 9 coursing 1 court 173 courte 2 courted 3 courteous 8 courteously 4 courtesan 1 courtesy 12 courthouse 1 courtier 8 courtierlike 2 courtiers 20 courting 2 courtly 4 courts 44 courtship 2 courtyard 19 courtyards 1 cousin 40 cousinage 2 cousine 2 cousinhood 2 cousins 5 couture 1 covenant 7 covenants 2 covent 3 coventry 2 cover 38 coverage 1 covered 169 covering 40 coverings 2 coverlet 1 covers 10 covert 5 covertly 1 coveted 10 cow 7 coward 8 cowardice 7 cowardly 1 cowards 2 cowboy 9 cowboys 4 cowhouse 1 cowpens 3 cows 3 cowshed 3 cox 2 coxa 2 coxcombs 1 coyness 1 coyote 1 crab 2 crack 20 cracked 13 cracking 5 crackings 3 crackle 4 crackled 3 crackling 16 cracks 3 cradle 4 craft 15 crafts 6 craftsman 1 craftsmanship 1 craftsmen 4 crafty 5 craggy 1 craig 1 crammed 1 cramp 4 cramped 2 cramps 4 crane 1 cranial 7 craniotabes 8 cranium 2 crank 2 cranks 2 crash 12 crashed 1 crashing 1 crass 2 crate 3 crater 1 crateriform 2 crates 1 cravat 2 cravats 1 cravatte 1 craving 1 crawford 3 crawl 7 crawled 4 crawling 3 crazy 10 creak 9 creaked 11 creaking 11 creaks 1 cream 14 creamy 2 crease 1 creases 6 create 17 created 62 creates 2 creating 24 creation 16 creative 2 creator 6 creature 28 creatures 7 credentials 1 credibility 1 credit 61 creditable 1 creditor 2 creditors 23 credits 1 creed 2 creek 3 creeks 1 creep 3 creeping 7 creolin 1 creosote 1 crepitans 1 crepitant 3 crepitating 1 crepitation 4 crepitus 3 crept 9 crescent 1 crescentic 2 cresol 2 crest 7 crestfallen 1 cret 1 crew 11 crewe 1 crews 1 crib 2 cribriform 1 cricket 5 crickets 1 cried 283 cries 31 crile 3 crime 61 crimea 1 crimean 5 crimes 21 criminal 30 criminals 15 crimson 13 cringe 2 cringing 2 crinkled 1 cripple 8 crippled 9 crippling 6 crisis 33 crisp 6 crisply 1 cristal 2 criterion 2 critic 1 critical 22 criticise 1 criticising 1 criticism 34 criticisms 7 criticize 7 criticized 7 criticizes 1 criticizing 4 critics 13 critique 1 crittenden 3 croaked 1 croats 1 crockery 3 crockett 3 crocuses 1 croix 2 croly 1 cromwell 3 crony 1 crooked 4 crooking 2 crop 24 cropped 5 crops 24 crosart 1 cross 96 crossbeam 1 crossed 75 crosses 11 crossing 54 crossings 1 crossly 6 crossness 1 crossroads 4 crossway 1 crotchety 1 crouch 2 crouched 4 crouching 2 croup 1 croupous 1 croups 1 croupy 1 crow 2 crowd 225 crowded 55 crowder 3 crowding 18 crowds 34 crowed 3 crowing 3 crown 61 crowned 10 crowning 2 crowns 2 crows 6 crucial 3 crucified 1 crucify 2 crude 5 crudele 2 crudest 2 cruel 41 cruelly 9 cruelty 25 cruise 1 cruisers 4 crumbled 2 crumbles 2 crumbling 5 crumbly 1 crumpled 9 crumpling 3 crunching 3 crupper 3 crural 3 crureus 1 crusade 1 crusades 3 crush 24 crushed 29 crushing 22 crust 10 crusted 2 crusts 3 crusty 1 crutch 7 crutches 2 cruz 2 cry 143 crybabies 1 crybaby 1 crying 27 crystal 6 crystallised 1 crystallized 1 crystals 4 cub 1 cuba 30 cuban 10 cubans 5 cubic 3 cubital 1 cubitus 1 cubs 6 cucumber 1 cucumbers 1 cudgel 8 cudgelled 1 cudgels 1 cuff 2 cuffs 3 cuirasse 2 cuisse 1 cullen 1 culminate 1 culminated 3 culminating 4 culmination 2 culprit 3 culprits 2 cult 1 cultivate 5 cultivated 11 cultivates 1 cultivating 1 cultivation 13 cultural 1 culture 37 cultured 1 cultures 5 cum 1 cumberland 12 cumbrous 1 cummins 2 cumulative 2 cunctators 1 cuneiform 1 cunning 26 cunningly 3 cup 26 cupboard 9 cupboards 3 cupful 1 cupidity 1 cupolas 3 cupping 5 cups 1 curate 1 curative 4 curb 4 cure 71 cured 8 cures 3 curetting 1 curing 1 curiosities 1 curiosity 61 curious 29 curiously 3 curl 5 curled 13 curling 9 curlpapers 1 curls 10 curly 24 currency 50 current 71 currently 2 currents 4 curriculum 2 curse 6 cursed 4 curses 7 cursing 4 curt 2 curtail 1 curtailed 2 curtain 22 curtained 1 curtains 5 curtis 8 curtly 2 curtseying 1 curtsied 5 curtsy 1 curvature 6 curvatures 2 curve 9 curved 17 curves 4 curving 10 cusack 3 cushay 1 cushing 3 cushion 7 cushioned 1 cushions 7 cusp 1 custer 1 custodian 1 custody 6 custom 25 customary 19 customer 3 customers 4 customs 16 cut 199 cutaneous 42 cutis 6 cutler 1 cutlery 1 cutlets 2 cuts 5 cutters 2 cutting 34 cuttings 1 cutup 1 cuvier 1 cweation 1 cweep 1 cwoss 1 cwow 1 cy 1 cyanide 2 cyanosis 6 cycle 1 cyclical 1 cycling 1 cygne 2 cylinder 8 cylinders 17 cylindrical 1 cymbals 1 cynical 3 cynically 1 cyril 14 cyrus 1 cyst 67 cystic 34 cystica 2 cystitis 2 cysts 66 czar 6 czartoryski 4 czech 1 czechoslovakia 2 czechs 1 d 180 da 4 dactylitis 18 dad 7 daddy 6 dagger 11 daggers 3 dahe 1 daily 44 daintiest 1 dainty 3 dairy 2 daisy 1 dakin 2 dakota 18 dakotan 1 dakotans 1 dakotas 5 dale 2 dallas 1 dalliance 1 dallied 1 dallying 1 dalmatic 1 dam 30 damage 25 damaged 37 damages 29 damaging 1 damascus 1 damask 2 dame 3 dames 1 damn 4 damned 7 damning 2 damp 29 damper 1 dampness 1 dams 4 damsel 1 dan 2 dance 40 danced 26 dancer 13 dancers 8 dances 8 dancing 45 dandies 3 dandin 1 dandling 2 dandy 2 dane 1 danger 124 dangereux 2 dangerous 92 dangerously 3 dangers 15 dangles 1 dangling 4 daniel 57 danilov 1 danilovna 11 danish 7 dank 2 dans 6 danser 1 danseuse 1 danube 17 danzig 2 dappled 1 dare 43 dared 33 daredevil 3 daren 2 dares 3 daresay 5 daring 22 dark 181 darkened 8 darker 5 darkly 2 darkness 68 darling 38 darlings 2 darlington 1 dart 2 darted 9 darting 3 dartmouth 3 dartos 1 darwin 1 das 1 dash 9 dashboard 1 dashed 23 dashing 14 dat 2 data 17 database 1 date 48 dated 6 dates 9 dating 4 dato 1 daubed 1 daubing 1 daughter 183 daughters 30 daunted 4 dave 1 davenport 1 david 10 davis 18 davout 42 davy 3 davydov 3 dawbarn 1 dawdling 4 dawn 22 dawned 3 dawning 2 dawson 1 day 819 daybreak 6 daydreams 2 daylight 15 days 453 daytime 5 dayton 1 dazed 8 dazzled 4 dazzling 6 dazzlingly 2 de 237 deacon 10 deacons 1 dead 164 deadliest 2 deadline 1 deadlock 8 deadlocked 1 deadly 18 deadness 1 deaf 10 deafened 3 deafening 12 deafeningly 1 deafness 4 deah 1 deal 69 dealer 7 dealers 4 dealing 42 dealings 3 deals 4 dealt 26 dean 1 deane 4 dear 449 dearer 1 dearest 20 dearly 8 death 330 deathbed 1 deathbeds 1 deathlike 2 deathly 1 deaths 3 debate 37 debated 5 debates 15 debauchery 5 debilitated 10 debility 4 debit 1 debonair 1 debouching 1 debris 4 debs 6 debt 65 debtor 3 debtors 7 debts 62 debut 2 dec 2 decade 14 decadence 1 decades 12 decalcified 1 decanter 2 decanters 1 decapsulation 1 decatur 3 decay 5 decaying 1 decays 1 decease 1 deceased 12 deceit 4 deceitful 1 deceive 13 deceived 16 deceiver 1 deceivers 1 deceiving 3 december 40 decency 2 decent 9 decently 5 deception 10 deceptions 2 deceptive 2 decide 33 decided 149 decidedly 9 decides 3 deciding 8 decision 61 decisions 17 decisive 24 decisively 3 deck 3 decked 1 decks 1 declaimed 2 declaration 50 declarations 4 declaratory 3 declare 25 declared 141 declares 4 declaring 34 decline 26 declined 17 declining 3 declivity 1 decolorised 1 decomposes 1 decomposing 3 decomposition 7 decorate 1 decorated 6 decorating 1 decoration 6 decorations 14 decorative 1 decorous 1 decorum 5 decoyed 3 decrease 5 decreased 2 decreases 3 decree 21 decreed 9 decrees 7 decrepit 3 decrepitude 1 decried 1 dedicate 1 dedicated 13 dedicates 1 deduce 14 deduced 12 deductible 9 deduction 12 deductions 7 deductive 1 deed 37 deeds 14 deem 6 deemed 14 deeming 1 deep 215 deepen 1 deepened 4 deepening 1 deepens 1 deeper 58 deepest 15 deeply 77 deeps 1 deer 5 def 2 defame 1 default 1 defeat 46 defeated 31 defeating 2 defeats 5 defect 23 defection 2 defective 21 defects 23 defence 6 defenceless 1 defend 29 defendant 1 defended 22 defender 4 defenders 5 defending 21 defense 67 defenseless 1 defensive 10 defer 2 deference 9 deferens 1 deferential 3 deferentially 2 deferred 3 deferring 2 defiance 9 defiant 3 defiantly 1 deficiencies 1 deficiency 5 deficient 6 deficit 1 defied 2 defile 2 defiled 1 defiles 1 defiling 1 define 13 defined 55 defines 2 defining 5 definite 78 definitely 35 definiteness 1 definition 24 definitions 3 deflected 1 deflecting 1 deflection 1 defoe 1 deformans 43 deformed 8 deformities 27 deformity 53 defrauded 1 defray 1 defraying 2 deft 2 deftly 4 defy 4 degenerate 5 degenerated 4 degenerates 2 degenerating 1 degeneration 63 degenerative 8 deglutition 4 degradation 3 degraded 7 degrading 1 degree 94 degrees 29 degwaded 1 dehydrate 1 dehydrated 4 dehydrates 1 deign 5 deigned 4 deities 1 deity 12 dejected 9 dejection 2 del 1 delaware 35 delay 47 delayed 27 delaying 2 delays 4 delegate 9 delegated 6 delegates 55 delegation 6 delegations 2 delete 4 deleterious 2 deletions 2 delhi 5 deliberate 16 deliberately 23 deliberating 1 deliberation 7 deliberations 5 deliberative 1 delicacy 11 delicate 54 delicately 3 delicious 10 delight 43 delighted 38 delightedly 3 delightful 23 delights 2 delimited 1 delirious 11 delirium 34 deliver 12 deliverance 3 delivered 23 deliverer 1 delivering 4 delivers 2 delivery 4 deltoid 14 delude 1 deluded 2 deluding 1 deluge 2 deluged 1 delusion 6 delusions 1 delve 1 delving 1 dem 8 demagogues 2 demain 1 demand 77 demande 2 demanded 66 demandent 1 demanding 12 demands 32 demarcation 14 demean 3 demeanour 1 dementat 1 dementia 2 dementyev 1 demerara 1 demkin 1 democracy 97 democrat 13 democratic 81 democrats 93 demolish 1 demolished 1 demon 2 demonetization 3 demonetized 1 demonstrable 1 demonstrate 8 demonstrated 21 demonstrates 1 demonstrating 5 demonstration 9 demonstrations 8 demonstrator 1 demoralization 2 demoralized 1 demosthenes 1 demurely 1 demyan 2 den 17 denial 7 denied 30 denis 1 denisov 432 denmark 3 denomination 3 denominations 5 denote 7 denoted 1 denotes 1 denouement 1 denounce 4 denounced 32 denouncing 4 dense 44 densely 4 denser 12 density 8 dental 4 dentigerous 3 dentine 2 dentist 2 dentition 2 denuded 1 denunciation 6 denunciations 1 denver 2 deny 10 denying 5 deodorant 1 depart 4 departed 6 departing 3 department 34 departmental 1 departments 9 departure 60 departures 2 depend 41 depended 25 dependence 19 dependencies 3 dependency 3 dependent 30 dependents 3 depending 9 depends 52 depict 1 depicted 7 depicting 1 depleted 1 deplorable 3 deplored 8 deploring 1 deploy 1 deployed 1 deploying 2 depopulated 1 deported 3 deportment 1 depose 2 deposed 3 deposes 1 deposit 25 depositaries 1 depositary 1 deposited 12 depositing 1 deposition 5 depositors 1 deposits 9 depot 3 depraved 7 deprecate 1 deprecated 2 deprecating 1 depreciation 3 depredations 2 depress 2 depressed 32 depressing 12 depression 26 depressions 1 deprivation 1 deprive 20 deprived 35 deprives 4 depriving 9 depth 30 depths 22 depuis 1 deputation 9 deputations 1 deputies 2 deputy 3 depwavity 1 der 5 deranged 2 derangements 2 derbies 1 derby 1 dercum 2 dere 1 deride 1 derision 5 derisive 2 derisively 1 derivative 7 derivatives 1 derive 16 derived 69 derives 1 deriving 5 derma 3 dermal 1 dermatitis 8 dermatocele 1 dermoid 8 dermoids 24 dernburg 1 derogates 1 derogation 2 derogatory 1 des 10 descend 10 descendant 3 descendants 5 descended 31 descending 16 descends 2 descent 15 describe 51 described 151 describes 6 describing 16 descried 3 description 27 descriptions 8 descriptive 2 descry 1 desecrate 2 desecration 1 deseret 1 desert 25 deserted 32 deserter 3 deserters 1 desertest 1 deserting 2 desertion 2 deserts 5 deserve 7 deserved 15 deserves 6 deserving 2 design 16 designate 1 designation 3 designed 34 designer 1 designing 1 designs 15 desirability 2 desirable 16 desire 96 desired 51 desires 22 desiring 6 desirous 3 desist 1 desisted 1 desk 11 desktop 1 desolate 1 desolation 5 despair 45 despaired 2 despairing 12 despairingly 2 despatch 2 despatched 1 desperate 32 desperately 11 desperation 11 despicable 2 despise 11 despised 17 despises 1 despising 1 despite 93 despoil 1 despoiled 1 despondency 1 despondent 2 despot 3 despotic 1 despotism 7 desquamated 1 desquamation 2 dessaix 4 dessalles 37 dessert 1 dessicans 2 destination 10 destined 29 destinies 1 destiny 22 destitute 3 destitution 1 destroy 57 destroyed 127 destroying 35 destroys 5 destruction 111 destructions 1 destructive 28 desultory 4 detach 5 detached 34 detaching 2 detachment 37 detachments 15 detail 38 detailed 12 detailing 1 details 67 detain 8 detained 12 detect 5 detected 24 detection 2 detective 9 detector 1 detention 1 deter 2 deteriorate 1 deteriorated 1 determination 20 determine 39 determined 64 determines 8 determining 14 deterred 1 detest 1 detestable 3 detestation 2 detested 4 dethrone 1 dethroned 1 detonate 1 detonators 1 detour 1 detoxicated 1 detracted 1 detractors 1 detriment 2 detrimental 1 detritus 1 detroit 5 detruite 1 deuce 3 deux 1 devait 1 devastated 7 devastating 1 devastation 1 develop 56 developed 51 developer 1 developing 12 development 113 developmental 2 developments 3 develops 14 deviate 2 deviated 3 deviating 2 deviation 6 deviations 4 device 19 devices 16 devil 72 devilish 3 devils 12 devise 9 devised 36 devises 1 devising 1 devitalise 2 devitalised 12 devoid 13 devoirs 1 devolve 2 devonshire 1 devote 12 devoted 41 devotedly 3 devotee 1 devotees 1 devoting 2 devotion 29 devotional 2 devotions 2 devour 1 devoured 4 devouring 2 devout 5 devoutly 1 devriez 1 dew 10 dewey 16 dews 1 dewy 3 dexter 1 dexterity 1 dexterous 3 dey 1 di 2 diabetes 12 diabetic 8 diable 3 diabolical 1 diadem 1 diagnose 2 diagnosed 16 diagnosing 2 diagnosis 114 diagnostic 11 diagonal 1 diagram 3 dial 1 dialect 2 dialogue 2 diam 10 diameter 8 diametrically 2 diamond 9 diamonds 8 diana 3 diapedesis 2 diaphanous 1 diaphragm 4 diaphysial 2 diaphysis 14 diaries 1 diarrhoea 8 diarsenol 4 diary 16 diathesis 2 diaz 6 dice 2 dichotomy 1 dick 1 dickens 2 dickinson 1 dickson 1 dicrotic 1 dictate 3 dictated 5 dictates 1 dictating 3 dictation 1 dictator 2 dictatorship 4 dictionaries 1 dictionary 2 dictum 1 did 1875 diderot 1 didn 67 didst 3 die 86 died 83 diego 1 dies 17 diese 1 diet 13 dietary 1 dieted 1 dietetic 2 dieu 12 differ 15 differed 10 difference 46 differences 14 different 274 differential 21 differentiate 11 differentiated 15 differentiating 3 differentiation 3 differently 25 differing 3 differs 11 difficult 148 difficulties 48 difficulty 110 diffidence 1 diffident 1 diffuse 65 diffused 15 diffusely 3 diffusing 4 diffusion 3 dig 5 digastric 2 digest 4 digested 5 digesting 1 digestion 8 digestive 1 digging 4 diggings 2 dighton 1 digit 3 digital 16 digitalin 1 digitalis 2 digitorum 3 digits 4 dignified 18 dignitaries 2 dignitary 3 dignity 52 digs 1 dihydrochloride 1 dilapidated 2 dilatation 17 dilatations 2 dilate 9 dilated 24 dilates 1 dilatory 1 dilemma 4 dilettanti 1 diligence 2 diligent 7 diligently 3 dilly 1 diluent 1 dilute 4 diluted 4 diluting 1 dim 24 dimension 1 dimensions 11 diminish 19 diminished 44 diminishes 11 diminishing 14 diminution 10 diminutive 2 dimly 23 dimmed 3 dimmler 18 dimness 3 dimple 6 dimpled 3 dimples 3 dimpling 1 din 5 dinah 1 dine 14 dined 19 dingley 5 dingy 2 dining 31 dinned 1 dinner 184 dinnerless 1 dinners 15 dinnertime 3 dint 3 dio 1 dioxide 8 dioxydiamido 1 dip 9 diphtheria 22 diphtheriae 2 diphtheritic 7 diplo 1 diplococci 3 diplococcus 1 diploe 5 diploma 1 diplomacy 35 diplomas 1 diplomat 9 diplomatic 54 diplomatist 9 diplomatists 9 diplomats 5 dipped 2 dipping 3 dire 3 direct 141 directed 89 directeur 1 directing 13 direction 146 directions 40 directive 1 directly 104 directness 2 director 14 directors 8 directory 5 directs 3 dirk 1 dirt 14 dirty 38 dis 1 disabilities 9 disability 20 disabled 6 disablement 3 disabling 1 disadvantage 7 disadvantageous 2 disadvantageously 1 disadvantages 4 disaffected 1 disagree 3 disagreeable 15 disagreeably 2 disagreed 2 disagreement 5 disagreements 3 disagrees 1 disallowance 1 disappear 45 disappearance 34 disappeared 58 disappearing 3 disappears 18 disappoint 8 disappointed 5 disappointing 7 disappointment 12 disappointments 3 disappoints 1 disapproval 8 disapprove 3 disapproved 5 disapproving 3 disapprovingly 8 disarmed 3 disaster 16 disasters 4 disastrous 15 disastrously 1 disavow 2 disavowing 2 disbanded 1 disbanding 1 disbelieve 2 disbelieved 2 disbelieving 1 disc 6 discard 2 discarded 4 discarding 1 discern 5 discerned 4 discernible 3 discerning 3 discharge 100 discharged 18 discharges 5 discharging 4 disciple 2 disciples 1 disciplinarian 2 disciplinary 1 discipline 25 disciplined 3 disciplining 1 disclaim 3 disclaimed 3 disclaimer 9 disclaimers 7 disclaims 5 disclose 7 disclosed 5 discloses 1 disclosing 1 disclosure 1 disco 1 discoid 1 discoloration 12 discoloured 11 discomfiture 4 discomfort 15 discomforts 1 discomposure 1 disconcert 2 disconcerted 13 disconcerting 1 disconnected 8 disconnectedly 1 disconsolately 1 discontent 13 discontented 7 discontentedly 1 discontents 1 discontinuance 1 discontinue 3 discontinued 1 discontinuous 2 discord 7 discordant 4 discordantly 1 discount 2 discountenanced 1 discourage 3 discouraged 8 discouragement 1 discourages 1 discouraging 1 discourse 4 discover 28 discoverable 3 discovered 45 discoveries 4 discovering 7 discovers 1 discovery 25 discredit 2 discreditable 1 discredited 6 discreet 4 discrepancy 1 discrete 3 discretion 13 discriminate 2 discriminated 1 discriminating 4 discrimination 9 discriminations 7 discriminatory 1 discs 3 discuss 36 discussed 31 discusses 1 discussing 13 discussion 31 discussions 16 disdain 5 disdainful 2 disdainfully 6 disdaining 1 disease 615 diseased 33 diseases 136 disengaged 5 disengaging 2 disentangle 1 disentangled 4 disfavor 5 disfigured 5 disfigurement 9 disfiguring 4 disfranchise 1 disfranchised 4 disfranchisement 5 disfranchisements 1 disgrace 12 disgraced 7 disgraceful 9 disgraces 1 disgracing 1 disgruntled 3 disguise 10 disguised 5 disguises 1 disguising 1 disgust 14 disgusted 1 disgusting 4 dish 13 disharmony 1 dishes 11 disheveled 7 dishonest 3 dishonesty 1 dishonor 3 dishonorable 9 dishonored 3 dishonour 1 dishonourable 1 dishonoured 3 disillusion 1 disillusioned 2 disillusionment 5 disillusionments 1 disinclination 1 disinclined 2 disinfect 2 disinfectant 1 disinfected 12 disinfecting 5 disinfection 10 disintegrate 2 disintegrated 4 disintegrates 2 disintegrating 1 disintegration 12 disinterested 5 disinterestedly 2 disjecta 1 disjointed 1 disk 10 disks 1 dislike 9 disliked 20 dislikes 1 disliking 1 dislocate 1 dislocated 9 dislocating 1 dislocation 38 dislocations 8 dislodge 1 disloyal 2 disloyalty 1 dismal 5 dismally 2 dismantled 3 dismay 20 dismayed 3 dismembered 2 dismemberment 1 dismiss 3 dismissal 4 dismissals 1 dismissed 13 dismount 5 dismounted 26 dismounting 5 disobedience 4 disobey 4 disobeying 2 disobeys 1 disorder 36 disordered 13 disorderly 8 disorders 14 disorganisation 7 disorganised 4 disorganization 1 disorganized 8 disown 1 disowned 2 disparage 1 disparity 3 dispassionate 1 dispatch 21 dispatched 18 dispatches 3 dispatching 4 dispel 1 dispelled 3 dispensations 1 dispense 7 dispensed 2 disperse 17 dispersed 18 disperses 2 dispersing 7 dispersion 3 dispirited 3 displace 3 displaced 21 displacement 26 displaces 3 displacing 6 display 19 displayed 17 displaying 15 displays 3 displease 2 displeased 19 displeases 1 displeasing 1 displeasure 8 disport 1 disposal 12 dispose 13 disposed 18 disposing 4 disposition 37 dispositions 35 disproportionate 1 disproportionately 2 disproving 2 disputatious 1 dispute 48 disputed 13 disputes 27 disputing 12 disqualification 1 disqualify 1 disquiet 1 disquieted 1 disquieting 3 disregard 6 disregarded 5 disregarding 6 disreputable 3 disrepute 3 disrespectful 2 disrespectfully 1 disrobe 1 disrupt 1 disrupted 3 disrupting 1 disruption 4 dissatisfaction 18 dissatisfied 34 dissect 3 dissected 5 dissecting 5 dissection 12 dissections 2 disseminate 1 disseminated 4 dissemination 14 dissension 2 dissensions 15 dissent 8 dissented 3 dissenters 8 dissenting 8 dissipated 7 dissipation 4 dissipations 2 dissociated 2 dissolute 2 dissolution 21 dissolve 5 dissolved 18 dissolving 1 dissuade 2 dissuasions 1 distaff 1 distal 28 distally 1 distance 118 distances 3 distant 51 distend 2 distended 15 distending 1 distends 1 distension 9 distilled 3 distilleries 1 distillers 1 distinct 43 distinction 19 distinctions 6 distinctive 7 distinctly 37 distinctness 3 distinguee 1 distinguish 34 distinguished 68 distinguishes 2 distinguishing 8 distort 1 distorted 20 distortion 3 distract 5 distracted 11 distractedly 1 distracting 1 distraction 4 distractions 3 distraught 4 distress 25 distressed 10 distressful 1 distressing 10 distribute 26 distributed 41 distributing 19 distribution 62 distributor 3 district 37 districts 10 distrust 8 distrusted 4 distrustful 1 disturb 15 disturbance 42 disturbances 14 disturbed 36 disturber 1 disturbing 9 disturbs 2 disunion 2 disuse 5 ditch 9 ditches 4 ditching 1 dites 3 diuretics 1 diurnal 1 divan 3 dive 1 dived 1 diverge 1 diverged 1 divergence 1 divers 1 diverse 18 diversification 2 diversified 5 diversion 6 diversions 1 diversities 1 diversity 17 divert 6 diverted 10 diverticula 2 diverticulum 2 diverting 2 divest 1 divested 1 divide 14 divided 127 dividend 1 divides 1 dividing 12 divine 34 divined 4 divinely 1 diving 1 divining 2 divinities 1 divinity 6 division 113 divisions 20 divorce 8 divorced 3 dix 1 dixon 1 dizziness 1 dizzy 2 dmitri 13 dmitrich 11 dmitrievna 105 dmitrov 1 dmitrovsk 1 dnieper 7 do 1503 dobroe 3 dock 8 docketing 1 docks 3 dockyard 1 docs 2 doctor 183 doctors 45 doctrine 65 doctrines 14 document 20 documentary 18 documentation 1 documents 11 dodd 4 doddering 1 dodge 2 doe 1 doers 2 does 358 doesn 40 doffed 5 doffing 2 dog 64 dogma 1 dogmatism 1 dogs 38 dohkturov 2 doing 178 doings 11 dokhturov 27 dole 1 doled 1 doleful 1 dolefully 1 dolens 2 doles 1 dolgorukov 45 doll 11 dollar 19 dollars 46 dolls 1 dolokhov 329 dolokhova 1 dolorosa 3 dolphin 1 domain 62 dome 3 domes 2 domestic 74 domestics 2 dominance 10 dominant 8 dominate 6 dominated 11 dominating 3 domination 5 domingo 10 dominican 2 dominicans 1 dominion 32 dominions 18 domo 13 don 581 donald 1 donate 14 donation 10 donations 47 donc 1 done 428 donelson 2 donets 4 donkey 1 donna 1 donne 1 donned 7 donning 3 donor 2 donors 6 dont 2 doom 6 doomed 5 door 498 doorpost 4 doors 47 doorway 16 doorways 2 dooties 1 doppelkummel 1 dora 1 doran 12 dormant 2 dormir 1 dorogobuzh 3 dorogomilov 9 dorokhov 4 dorothea 1 dorothy 1 dorr 4 dorsal 15 dorsales 1 dorsalis 1 dorsi 1 dorsiflex 2 dorsiflexed 4 dorsiflexion 3 dorsum 20 dosage 3 dose 25 doses 28 dost 1 dot 2 dotage 1 dotard 2 doth 1 doting 1 dots 1 dotted 8 dottles 1 double 49 doubled 12 doubles 2 doubling 1 doubly 9 doubt 152 doubted 10 doubter 1 doubtful 19 doubtfully 2 doubting 4 doubtless 13 doubts 39 douceur 1 douched 2 douches 1 douching 6 dough 1 doughy 6 douglas 29 douleurs 1 doute 1 dove 3 dover 3 dovey 1 dowager 6 dowden 3 dowerless 2 down 1128 downcast 14 downed 1 downfall 4 downhill 11 download 5 downloading 5 downright 1 downstairs 26 downward 19 downwards 22 downy 8 dowry 11 doyen 1 doyle 5 doze 2 dozed 7 dozen 36 dozens 9 dozhoyveyko 1 dozing 5 dr 48 drab 1 draft 30 drafted 18 drafting 3 drafts 2 drag 10 dragged 34 dragging 22 dragnet 1 dragon 3 dragoon 8 dragoons 27 drags 2 drain 18 drainage 29 drained 12 draining 2 drains 2 drake 1 dram 11 drama 7 dramas 1 dramatic 10 dramatically 1 dramatized 1 drams 3 dramshop 2 drank 25 draped 2 draping 1 drastic 21 draught 7 draughts 2 draw 55 drawback 2 drawer 13 drawers 7 drawing 240 drawingroom 2 drawings 5 drawled 2 drawn 147 draws 2 draymen 1 dread 12 dreaded 11 dreadful 68 dreadfully 10 dreading 3 dream 45 dreamed 18 dreamer 2 dreamers 1 dreamest 1 dreaminess 1 dreaming 7 dreams 16 dreamt 1 dreamy 3 dreary 5 dred 11 dredge 1 dregs 3 drenched 5 dresden 3 dress 138 dressed 102 dresser 3 dressers 5 dresses 27 dressing 129 dressings 36 dressmaker 2 dressmakers 1 drew 153 dried 26 dries 4 drift 23 drifted 5 drifting 7 drill 8 drilled 4 drilling 1 drills 1 drink 55 drinker 1 drinkers 2 drinking 23 drinks 6 drip 2 dripping 4 drissa 22 drive 86 driven 66 driver 31 drivers 7 drives 12 driving 48 drizzling 1 droits 1 droll 1 dron 54 drone 3 droned 1 drones 4 droning 1 dronushka 10 droop 3 drooped 4 drooping 17 drop 47 droplets 3 dropped 59 dropping 18 drops 28 dropsical 1 dropsy 1 drought 1 drove 114 droves 1 drown 9 drowned 14 drowning 7 drowns 1 drowsily 1 drowsiness 4 drowsing 2 drowsy 3 drubetskaya 10 drubetskoy 19 drubetskoys 1 drudgery 1 drug 21 druggist 1 drugs 16 drum 7 drummed 1 drummer 17 drummers 1 drumming 2 drums 11 drunk 32 drunkard 9 drunkards 1 drunken 21 drunkenness 7 dry 131 dryden 1 drying 11 dryly 5 dryness 5 du 12 dual 3 dub 1 dubbed 2 dubious 1 dubiously 2 dublin 2 dubuque 1 duc 11 duchenne 5 duchenois 1 duchess 3 duchy 4 duck 4 ducked 4 ducks 1 ducrey 5 duct 22 ducts 10 dudgeon 1 due 249 duel 31 dueling 1 duelist 2 duels 2 dues 3 duets 1 dug 15 dugout 2 duke 46 dukes 5 dull 74 dulled 2 dullest 1 dullness 1 dulness 1 duly 16 dum 2 dumb 6 dumbfounded 1 dumbly 1 dumfound 1 dummy 4 dump 2 dumped 4 dumping 1 dumps 1 dun 2 duncan 9 dundas 1 dundee 5 dung 3 dungeon 1 duniway 1 dunning 4 dunyasha 34 duodenal 3 duodenum 2 dupe 1 dupes 1 duplicate 1 duplicates 1 duplicity 1 duport 8 dupuytren 1 duquesne 2 dura 3 duration 25 durham 1 during 503 durings 1 duroc 2 durosnel 1 durrenstein 3 durst 1 durum 1 dusk 10 duskier 1 dusky 9 dussek 1 dust 39 dustcoat 1 dusted 4 dusting 7 dusty 16 dutch 29 duties 84 dutiful 1 dutifully 1 duty 136 dvina 1 dwagging 1 dwarf 5 dwarfed 2 dwarfing 4 dwarfs 2 dwell 8 dweller 1 dwellers 2 dwelling 6 dwellings 1 dwelt 9 dwindled 2 dwink 3 dwive 1 dwown 1 dwy 1 dwyer 2 dy 1 dye 2 dyed 2 dyeing 1 dying 80 dynamic 1 dynamite 2 dynasty 2 dynia 2 dysentery 2 dyspepsia 1 dyspnoea 5 e 136 each 411 eager 50 eagerly 39 eagerness 8 eagle 9 eagles 1 ear 46 earache 1 earl 4 earle 1 earlier 33 earliest 17 early 270 earn 13 earned 10 earner 1 earners 8 earnest 10 earnestly 10 earnestness 3 earning 5 earnings 8 earrings 4 ears 58 earshot 1 earth 117 earthen 2 earthly 11 earthquake 1 earthquakes 1 earthwork 4 earthworks 1 earthy 1 ease 44 easier 26 easiest 3 easily 114 easing 1 east 130 easter 1 easterly 1 eastern 50 easterners 1 eastward 7 eastwards 2 easy 122 easygoing 1 eat 54 eaten 18 eaters 3 eating 24 eats 8 eau 3 eaves 1 eavesdroppers 1 ebb 2 ebbed 1 ebbing 1 ebcdic 4 ebook 87 ebooks 54 ebullient 1 eburnation 4 eccentric 5 eccentricities 1 eccentricity 2 ecchondroses 2 ecchymosed 1 ecchymoses 1 ecchymosis 6 ecclesiastical 5 echelons 1 echinoccus 1 echinococcal 1 echinococcus 3 echkino 2 echo 7 echoed 4 echoes 2 echoing 1 echthyma 1 ecka 1 eckmuhl 4 eclairaient 1 eclipsed 2 eclipses 2 economic 120 economical 4 economically 2 economics 4 economies 1 economist 4 economists 2 economized 1 economy 23 ecossaise 8 ecstasies 1 ecstasy 8 ecstatic 12 ecstatically 6 ecthyma 1 ecuador 1 eczema 10 ed 14 eddied 1 eddies 1 eddy 2 eddying 1 eden 1 edentulous 1 edgar 1 edge 60 edged 5 edges 70 edgeware 2 edifice 4 edifices 1 edifying 2 edin 1 edinburgh 25 edit 4 edited 8 edith 2 editing 6 edition 21 editions 17 editor 17 editorial 2 editorially 1 editorials 3 editors 5 edmund 12 educate 2 educated 21 education 57 educational 16 edward 7 edwards 1 eerie 1 efface 1 effaced 1 effacing 1 effect 187 effected 21 effecting 4 effective 27 effectively 6 effectiveness 2 effects 82 effectual 3 effectually 2 efferent 2 effervescing 1 effete 1 efficacious 9 efficacy 3 efficiency 8 efficient 22 efficiently 6 effigy 4 effort 130 efforts 103 effrayee 1 effrontery 1 effused 7 effusion 34 effusions 1 effusive 2 efim 3 eg 1 egerton 1 egg 14 egged 1 eggleston 1 eggs 8 eggshell 1 eglises 2 eglonitz 1 eglow 1 ego 1 egotism 8 egotistic 1 egotists 2 egress 1 egria 1 egypt 6 egyptian 3 egyptians 1 eh 89 ehrlich 4 eight 128 eighteen 24 eighteenth 22 eighth 21 eighths 1 eighties 2 eightpence 1 eighty 21 ein 6 either 293 ejaculated 10 ejaculating 1 ejaculation 3 ejected 1 ekonomov 3 el 1 elaborate 5 elaborated 4 elapse 5 elapsed 24 elapses 2 elastic 50 elasticity 8 elated 4 elation 2 elba 2 elbe 1 elbow 92 elbowed 2 elbowing 1 elbows 24 elbridge 2 elchingen 1 elder 40 elderly 33 elders 10 eldest 29 elect 12 elected 44 electing 4 election 119 elections 37 elective 8 elector 3 electoral 20 electorate 1 electors 29 electric 21 electrical 11 electricity 18 electrode 4 electrolysis 11 electron 1 electronic 58 electronically 11 electronics 1 electrotyped 1 elects 1 elegance 3 elegant 9 elegantly 5 element 27 elemental 4 elementary 6 elements 69 elephant 3 elephantiasis 30 elephants 1 elets 1 elevate 5 elevated 20 elevates 1 elevating 3 elevation 16 elevator 3 elevators 1 eleven 21 eleventh 7 eley 1 elias 4 elicit 2 elicited 15 elided 1 eligible 7 elihu 2 elijah 1 eliminate 5 eliminated 7 eliminates 1 eliminating 4 elimination 3 elisabeth 1 elisaveta 1 elise 1 elite 2 eliza 3 elizabeth 9 elkins 2 ellen 1 ellet 1 ellipse 2 elliptical 1 ellis 1 ellsworth 4 elm 1 elocution 1 elohim 1 elongated 8 elongates 1 elongation 1 elope 5 elopement 1 elopements 1 eloquence 6 eloquent 12 eloquently 4 else 201 elsewhere 24 elson 41 elucidate 1 elude 1 elusive 1 ely 2 em 5 emaciated 9 emaciates 1 emaciation 4 email 13 emanated 1 emanating 2 emanations 3 emancipate 1 emancipated 10 emancipation 23 emancipators 1 embankment 3 embankments 1 embargo 7 embargoes 1 embark 5 embarked 4 embarrassed 22 embarrassing 11 embarrassment 19 embarrassments 1 embassage 1 embassy 10 embedded 27 embedding 1 embellish 2 embers 4 embezzlement 2 embitter 1 embittered 5 emblem 2 embodied 3 embodiment 1 embody 1 embodying 1 emboldened 2 emboli 12 embolic 11 embolism 25 embolus 19 embossed 1 embrace 17 embraced 46 embraces 5 embracing 15 embroidered 10 embroidering 1 embroidery 7 embryo 6 embryonic 4 embryos 1 emerald 2 emerge 8 emerged 18 emergence 5 emergencies 3 emergency 6 emerges 2 emerging 8 emerson 6 emetin 1 emigrant 4 emigrants 5 emigrate 1 emigrated 2 emigration 7 emigre 2 emigree 1 emigres 1 emilie 1 emily 1 eminence 3 eminences 3 eminent 12 eminently 2 emissaries 1 emissary 2 emission 1 emit 3 emitted 4 emitting 3 emma 2 emolument 2 emoluments 2 emotion 36 emotional 9 emotions 10 empereur 22 emperor 639 emperors 35 empewah 2 empewo 2 emphasis 11 emphasise 1 emphasised 2 emphasize 4 emphasized 6 emphasizing 2 emphatic 4 emphatically 4 emphysema 3 emphysematous 6 empia 1 empire 72 empires 3 empirical 1 empirically 1 emplastrum 1 employ 17 employe 2 employed 156 employee 8 employees 37 employer 15 employers 29 employing 7 employment 24 employments 2 employs 2 empower 1 empowered 12 empowering 1 empress 27 empresses 1 emprosthotonos 2 emptied 17 emptiest 1 emptiness 2 empting 1 empty 61 emptying 5 empyema 10 emulated 1 emulating 2 emulation 2 emulsion 3 emunctories 2 en 25 enable 24 enabled 14 enables 4 enabling 6 enact 11 enacted 34 enacting 1 enactment 9 enacts 1 enamel 3 encamp 1 encamped 5 encampment 5 encapsulated 13 encapsulates 2 encapsulation 2 encapsuled 1 encased 1 encephaloid 3 enchanted 8 enchanting 18 enchantment 2 enchantress 4 enchondroma 1 encircled 1 enclose 1 enclosed 10 enclosing 2 enclosure 7 enclosures 1 encoding 5 encompass 3 encompassed 1 encounter 27 encountered 16 encountering 6 encounters 5 encourage 20 encouraged 24 encouragement 8 encourages 1 encouraging 10 encroached 1 encroaches 3 encrustation 1 encumbered 1 encumbering 1 encyclopaedia 5 encyclopaedias 1 encyclopedia 4 encysted 1 end 465 endanger 8 endangered 3 endangering 1 endarteritis 8 endeared 1 endearment 1 endearments 1 endears 1 endeavor 5 endeavored 2 endeavors 3 endeavour 3 endeavoured 11 endeavouring 8 endeavours 1 ended 39 endell 1 endemic 3 ending 18 endings 1 endless 25 endo 2 endocarditis 4 endocardium 1 endoneural 1 endoneurium 2 endorse 4 endorsed 10 endorsement 1 endorsing 1 endothelial 9 endothelioid 1 endothelioma 5 endotheliomas 1 endotheliomata 1 endothelium 14 endow 1 endowed 14 endowing 1 endowment 1 ends 103 endurance 8 endure 27 endured 9 enduring 7 enema 1 enemata 2 enemies 39 enemy 292 energetic 26 energetically 8 energies 5 energique 1 energy 45 enfant 2 enfants 2 enfeebled 5 enfin 1 enfolded 1 enforce 29 enforced 12 enforcement 21 enforcing 2 enfranchise 1 enfranchised 8 enfranchisement 6 engage 9 engaged 87 engagement 48 engagements 5 engaging 7 engendered 1 enghien 5 engine 13 engineer 12 engineered 1 engineering 2 engineers 4 engines 2 england 311 englanders 1 engle 1 english 211 englishman 24 englishmen 3 engorged 1 engorgement 3 engrained 1 engraved 5 engrele 1 engrossed 14 engrossing 1 engulfed 1 engulfing 1 enhance 5 enhanced 6 enhancing 1 enigma 1 enigmatical 1 enjoin 2 enjoined 1 enjoining 1 enjoy 24 enjoyable 4 enjoyed 35 enjoying 17 enjoyment 21 enjoys 4 enlarge 14 enlarged 69 enlargement 54 enlargements 3 enlarges 2 enlarging 3 enlighten 2 enlightened 3 enlighteners 1 enlightenment 8 enlist 3 enlisted 9 enlistment 1 enliven 3 enlivened 2 enmeshed 1 enmities 1 enmity 5 ennemi 1 enns 10 ennui 2 enormous 73 enormously 12 enough 175 enquire 1 enquiry 1 enraged 4 enraptured 9 enrich 2 enriched 3 enriches 4 enriching 1 enrolled 12 enrollment 6 ensign 2 enslaved 1 ensnared 1 ensue 22 ensued 17 ensues 25 ensuing 4 ensuit 1 ensure 14 ensures 3 ensuring 5 entail 3 entailed 3 entailing 3 entails 3 entangle 1 entangled 9 entanglement 1 entanglements 3 entangling 1 entendent 1 entente 1 enter 107 entered 282 entering 68 enterprise 72 enterprises 11 enterprising 5 enters 16 entertain 12 entertained 9 entertaining 10 entertainment 7 enthusiasm 40 enthusiasms 1 enthusiast 3 enthusiastic 17 enthusiastically 3 entice 1 enticed 1 enticingly 1 ention 1 entire 63 entirely 90 entirety 7 entitle 1 entitled 15 entitlement 1 entitles 1 entitling 1 entity 10 entr 2 entrance 59 entrances 1 entreat 6 entreated 6 entreaties 7 entreating 2 entreaty 9 entree 1 entrench 1 entrenched 6 entrenchment 5 entrenchments 8 entrez 3 entries 4 entrust 2 entrusted 29 entrusting 2 entrusts 1 entry 21 entweat 1 enucleated 1 enucleation 2 enucleators 1 enumerate 14 enumerated 5 enumeration 5 enunciated 1 enunciation 2 envelope 26 enveloped 11 enveloping 1 envied 2 envious 9 enviously 1 environment 6 environmental 1 environs 1 envisage 1 envisagez 1 envoy 9 envoys 2 envy 14 envying 1 enwich 1 enwrapped 1 enzyme 1 enzymes 1 eosinophile 3 eosinophilia 1 epaulet 1 epaulets 4 epaulettes 3 ephraim 1 epi 3 epiblast 1 epic 1 epicritic 7 epics 1 epicurean 1 epidemic 1 epidermis 49 epigastrium 1 epigram 2 epigrams 1 epilation 1 epilepsy 3 epileptic 1 epileptics 1 epileptiform 1 epilogue 2 epineurium 1 epiphany 1 epiphyses 9 epiphysial 25 epiphysiolysis 2 epiphysis 20 epiphysitis 5 episcopal 1 episcopalian 2 episcopate 1 episode 11 episodes 2 epispasticus 4 epistaxis 2 epistle 4 epistles 1 epithelial 30 epithelioid 3 epithelioma 47 epitheliomas 3 epitheliomatous 1 epitheliomatus 1 epithelionia 1 epithelium 55 epithet 3 epithets 1 epitrochlear 1 epoch 16 epochs 2 eprouver 1 epulis 2 equal 108 equaled 2 equaling 2 equality 40 equalled 2 equally 77 equals 3 equation 2 equations 2 equator 1 equestrian 1 equilibrium 4 equine 1 equino 2 equinoctial 3 equip 3 equipage 2 equipages 1 equipment 21 equipped 10 equitable 3 equities 1 equity 4 equivalent 15 equivocate 1 er 5 era 10 eradicate 1 eradicated 1 eradicating 1 eradication 1 erased 1 erases 1 erb 5 ere 1 erect 17 erected 14 erecting 1 erection 5 erector 1 erfurt 6 ergot 5 ergotin 1 eric 1 erie 14 ermine 1 ermishin 1 ermolov 32 ermolovs 1 ernest 1 erode 1 eroded 6 erodes 2 eroding 2 erosion 22 erpassed 1 err 2 errand 7 errands 1 errare 1 erratic 9 erratically 1 erred 2 erroneous 7 erroneously 2 error 18 errors 16 erudite 1 erupt 4 erupted 1 erupting 1 eruption 19 eruptions 9 eruptive 1 erupts 7 erysipelas 33 erysipelatous 1 erythema 7 erythematous 2 erza 9 es 3 esaul 32 escapade 3 escape 96 escaped 30 escapes 30 escaping 17 esch 2 eschar 6 escharotic 1 escharotics 1 eschars 1 escort 17 escorted 5 escorting 1 esmarch 2 esp 1 especial 3 especially 403 espied 3 espionage 4 espousal 1 espouse 1 espoused 6 esq 3 essay 2 essaying 1 essayist 1 essays 3 essen 1 essence 31 essential 92 essentially 17 essentials 2 essex 1 est 29 establish 45 established 129 establishes 1 establishing 22 establishment 40 establishments 7 estate 88 estates 59 esteem 12 esteemed 2 esteeming 1 esther 1 esthonia 1 estimable 2 estimate 13 estimated 16 estimates 1 estimating 3 estimation 2 estime 2 estranged 1 estrangement 6 et 19 etait 1 etat 1 etats 1 etc 21 eternal 26 eternally 3 eternity 9 etes 2 etext 6 ethel 1 ether 8 etherege 1 ethical 3 ethics 4 ethnic 1 ethnographic 1 ethyl 3 etiological 1 etiology 8 etiquette 3 eton 1 etranger 2 etre 4 ety 1 eucalyptus 2 euer 1 eugene 6 eunuchs 1 europe 153 european 99 europeans 1 eusol 10 eustace 1 eustachian 2 eut 1 ev 1 eva 1 evacuate 1 evacuated 5 evacuation 9 evade 2 evaded 3 evaluate 1 evaluation 1 evanescent 9 evangelists 1 evans 1 evaporating 5 evaporation 5 evasive 1 eve 30 even 946 evening 265 evenings 10 evenly 8 event 111 events 203 eventual 2 eventualities 3 eventuality 2 eventually 33 ever 274 everett 2 evergreen 2 everlasting 3 evermore 1 everted 9 every 650 everybody 127 everyday 14 everyone 236 everything 451 everywhere 60 evewy 1 evewybody 1 evewyone 1 evewything 1 evidence 79 evidenced 2 evidences 4 evident 110 evidently 374 evil 55 evildoer 1 evils 18 evince 2 evinced 1 evincing 1 evoke 3 evoked 17 evoking 3 evolution 15 evolutionary 2 evolutions 1 evolve 3 evolved 8 evstafey 2 ewing 1 ex 18 exacerbations 5 exact 26 exacted 2 exacting 6 exactions 1 exactitude 3 exactly 47 exactness 1 exaggerate 2 exaggerated 28 exaggeration 4 exalt 4 exaltation 2 exalted 13 exalting 1 exalts 1 exam 1 examination 72 examinations 5 examine 22 examined 49 examiner 1 examines 4 examining 35 example 286 examples 23 exasperated 7 exasperating 2 exasperation 6 excavated 1 excavating 1 excavation 2 excavations 2 excedens 1 exceed 8 exceeded 14 exceeding 9 exceedingly 32 exceeds 4 excellence 4 excellency 128 excellent 62 except 164 excepted 1 excepting 7 exception 33 exceptional 36 exceptionally 7 exceptions 15 excess 25 excesses 4 excessive 42 excessively 3 exchange 36 exchanged 28 exchanges 1 exchanging 15 exchequer 1 excise 18 excised 20 excises 3 excising 10 excision 35 excitability 7 excitable 2 excite 7 excited 86 excitedly 8 excitement 62 excites 1 exciting 18 exclaim 3 exclaimed 118 exclaiming 4 exclamation 10 exclamations 4 exclude 14 excluded 30 excludes 1 excluding 9 exclusion 13 exclusionist 1 exclusions 3 exclusive 10 exclusively 21 excoriated 1 excoriations 1 excrement 1 excretory 2 excruciating 4 excursion 3 excursions 4 excusable 1 excuse 53 excused 4 excuses 6 excusing 2 execrable 1 execute 19 executed 40 executing 9 execution 36 executioner 5 executioners 1 executions 6 executive 53 executor 1 exemplar 1 exemplary 4 exempt 9 exempted 1 exempting 1 exemption 2 exemptions 2 exercise 54 exercised 17 exercises 16 exercising 6 exert 8 exerted 12 exerting 4 exertion 19 exertions 3 exerts 3 exfoliation 2 exhaled 1 exhales 1 exhaust 4 exhausted 45 exhausting 1 exhaustion 12 exhaustive 1 exhibit 18 exhibited 4 exhibiting 3 exhibition 2 exhibits 6 exhilarating 2 exhort 2 exhortation 2 exhortations 1 exile 11 exiled 4 exist 44 existed 41 existence 64 existing 34 exists 29 exit 18 exophthalmos 3 exorbitant 1 exorcise 1 exostoses 14 exostosis 19 exotic 2 exotoses 1 expand 6 expanded 13 expanding 6 expands 1 expanse 8 expanses 1 expansile 8 expansion 24 expansions 1 expect 61 expectancies 1 expectancy 3 expectant 4 expectantly 1 expectation 18 expectations 12 expected 126 expecting 66 expects 5 expedient 8 expedite 1 expedition 31 expeditionary 3 expeditions 7 expeditiously 1 expel 4 expelled 6 expelling 1 expend 3 expended 4 expenditure 6 expenditures 8 expends 3 expense 33 expenses 21 expensive 16 experience 108 experienced 102 experiences 11 experiencing 9 experiment 27 experimental 8 experimentally 4 experimented 1 experimenting 2 experiments 14 expert 7 expertise 1 experts 2 expiate 2 expiation 1 expiration 7 expire 1 expired 3 expiring 3 explain 123 explained 60 explaining 25 explains 11 explanation 58 explanations 11 explanatory 3 expletives 2 explicit 4 explicitly 6 explique 1 explode 2 exploded 2 exploding 2 exploit 12 exploitation 1 exploited 2 exploits 11 exploration 12 explorations 3 exploratory 4 explore 5 explored 8 explorer 2 explorers 2 exploring 10 explosion 5 explosions 3 explosive 1 explosives 5 export 14 exportation 2 exported 2 exporting 3 exports 6 expose 16 exposed 80 exposes 2 exposing 14 exposition 8 expostulated 1 expostulating 1 exposure 49 exposures 3 expound 4 expounded 3 express 87 expressed 135 expresses 9 expressing 31 expression 321 expressionless 4 expressions 15 expressive 6 expressly 13 expulsion 5 expunge 1 expunging 1 exquisite 6 exquisitely 1 exsiccat 1 exsiccated 1 ext 1 extant 1 extemporised 1 extend 47 extended 75 extending 35 extends 28 extension 58 extensions 1 extensive 51 extensively 8 extensor 17 extensors 11 extent 99 extenuate 1 extenuating 1 exterior 1 exterminate 2 extermination 4 externa 5 external 100 externally 18 externals 1 extinct 2 extinction 3 extinguish 1 extinguished 5 extinguishes 1 extirpate 1 extirpated 1 extirpation 6 extolled 1 extolling 1 extorted 2 extortion 2 extra 22 extract 8 extracted 5 extraction 2 extracts 2 extraneous 4 extraordinarily 7 extraordinary 74 extravagance 2 extravagant 3 extravasated 14 extravasation 8 extravasations 4 extreme 72 extremely 51 extremes 4 extremist 1 extremists 2 extremites 1 extremities 27 extremity 52 extricate 3 extricated 1 extruded 4 extrusion 3 exuberant 6 exudate 22 exudates 1 exudation 11 exude 2 exuded 1 exudes 4 exultantly 5 exultation 2 exulting 2 eye 110 eyeball 3 eyebrow 1 eyebrows 36 eyed 20 eyeglass 1 eyeglasses 1 eyelashes 1 eyelid 7 eyelids 10 eyes 939 eyford 9 eying 1 eykhen 2 eylau 5 ezekiah 2 f 152 fable 3 fabric 3 fabrication 1 fabulous 1 fabvier 6 facade 2 face 1125 faced 53 faces 162 facet 1 faceted 2 facetious 1 fachons 1 facial 9 facies 5 facilitate 9 facilitated 1 facilitating 2 facilities 9 facility 10 facing 41 fact 291 faction 9 factions 6 factious 2 facto 2 factor 41 factories 29 factors 24 factory 24 factotum 1 facts 72 facultative 1 faculties 8 faculty 7 fad 1 faddy 2 fade 6 faded 9 fades 2 fading 1 fads 2 faecal 2 fagged 2 fahrenheit 1 fail 40 failed 63 failing 29 fails 20 failure 39 failures 5 fain 3 faint 19 fainted 6 fainter 3 faintest 1 fainthearted 1 fainting 7 faintly 6 faintness 2 faints 1 fair 55 fairbank 3 fairbanks 3 fairchild 1 faire 8 fairer 2 fairest 1 fairfield 1 fairies 1 fairly 25 fairness 4 fairy 7 fairyland 2 fait 5 faites 1 faith 64 faithful 20 faithfully 9 faithless 1 faithlessness 1 faiwy 1 falaba 1 falcon 3 fall 124 fallacies 1 fallacious 1 fallacy 1 fallen 72 falleth 1 fallibility 1 falling 54 fallopian 2 fallow 2 falls 25 false 64 falsehood 10 falsehoods 1 falsely 2 falsified 1 falsity 3 faltered 5 faltering 1 fame 15 famed 2 fameuse 1 familiar 79 familiarity 8 families 45 family 210 famine 3 famished 3 famous 59 fan 8 fanatical 1 fancied 14 fancier 2 fancies 14 fanciful 3 fancy 50 fancywork 1 faneuils 1 fangled 1 fangs 3 fanlight 1 fanned 3 fanning 3 fanny 1 fantastic 13 fantasy 1 fanwise 1 far 408 faradic 4 faraway 4 farce 1 farcy 7 fare 7 fared 1 fareham 1 fares 1 farewell 13 farintosh 2 farm 50 farmer 27 farmerettes 1 farmers 112 farmhouse 3 farmhouses 2 farming 18 farms 35 farnham 1 faro 1 farrand 1 farrington 1 farther 103 farthest 12 farthing 2 fas 1 fascia 41 fasciae 11 fascial 1 fasciculated 1 fascinate 3 fascinating 13 fascination 4 fashion 49 fashionable 13 fashionably 2 fashioned 15 fashioning 1 fashions 1 fast 39 fasted 1 fasten 4 fastened 18 fasteners 1 fastening 2 faster 27 fastidious 1 fasting 3 fastness 1 fat 89 fatal 63 fatale 1 fatalism 1 fatally 5 fate 98 fated 7 fateful 10 fates 1 father 533 fatherland 33 fatherless 1 fatherly 1 fathers 18 fathom 8 fathomed 2 fatigue 11 fatigued 2 fatigues 2 fats 1 fatted 1 fatten 1 fattened 4 fattening 1 fattest 1 fatty 23 fauces 6 fault 50 faultfinding 1 faults 7 faulty 1 faust 2 faut 4 favor 81 favorable 23 favorably 5 favored 42 favoring 9 favorite 44 favorites 3 favoritism 3 favors 11 favour 26 favourable 28 favourably 2 favoured 11 favouring 4 favourite 7 favours 10 fawningly 1 fax 1 fe 8 fear 166 feared 62 fearful 7 fearfully 1 fearing 20 fearless 6 fearlessly 3 fears 21 feasible 7 feast 8 feasting 2 feat 4 feather 20 featherbeds 1 feathered 1 feathers 4 feats 1 feature 61 featureless 2 features 191 feb 1 febrile 5 february 39 fed 24 fedchenko 1 federal 185 federalism 1 federalist 31 federalists 53 federals 1 federate 3 federated 2 federation 45 federations 3 federative 1 fedeshon 1 fedor 2 fedorovich 1 fedorovna 16 fedotov 1 fedya 6 fee 29 feeble 44 feebleness 3 feebly 10 feed 10 feedback 1 feedeth 1 feeding 15 feel 161 feeling 362 feelings 78 feels 31 fees 15 feet 179 feigned 6 feind 1 felicitations 1 felicities 1 felicity 1 felix 1 fell 177 feller 1 felling 1 fellow 233 fellows 47 fellowship 1 felo 1 felon 1 felonies 1 felony 6 felstein 1 felt 697 felted 1 felts 1 felty 1 female 18 females 5 femgalka 1 feminine 17 feminist 1 femme 5 femmes 1 femora 3 femoral 39 femorals 1 femoris 3 femur 66 fence 24 fenced 1 fencer 1 fences 4 fenchurch 2 fencing 8 fenton 2 feoklitych 1 feoktist 2 fera 3 ferapontov 19 ferdinand 9 ferguson 4 fergusson 1 ferment 8 ferments 3 feroce 2 ferocious 4 ferociously 1 ferocity 3 ferons 1 ferret 2 ferri 1 ferries 1 ferry 8 ferrymen 1 fertile 17 fertility 3 fertilizes 1 fervent 2 fervently 2 fervor 5 fess 1 fester 1 festering 3 festival 3 festive 4 festivities 3 festivity 1 fetch 29 fetched 9 fetching 4 fete 11 fetes 2 fettered 2 fetters 1 feu 1 feudal 15 feudalism 2 fever 75 feverish 24 feverishly 7 feverishness 1 fevers 2 few 458 fewer 16 fewest 1 fez 1 ff 190 fiance 2 fiancee 6 fiat 1 fibre 2 fibres 64 fibrillated 2 fibrillation 1 fibrils 1 fibrin 16 fibrinous 13 fibro 14 fibroblasts 12 fibroid 8 fibroids 3 fibroma 32 fibromas 4 fibromatosis 24 fibrosa 14 fibrosis 6 fibrositis 16 fibrosum 7 fibrous 103 fibula 15 fichte 2 fichu 2 fiction 3 fictitious 2 fiddle 1 fidelity 4 fidgeted 1 fidgeting 1 field 212 fieldglass 1 fields 77 fieldwork 1 fiend 1 fiends 1 fierce 12 fiercely 15 fiery 8 fiew 1 fifteen 61 fifteenth 19 fifth 60 fifths 5 fiftieth 1 fifty 94 fig 320 figaro 1 fight 96 fighter 3 fighting 67 fights 2 figner 1 figs 12 figure 103 figured 5 figurehead 1 figures 50 filament 3 filaments 9 filaria 3 filarial 5 filbert 1 filched 1 file 22 filed 5 filename 3 files 8 filez 2 fili 9 filial 2 filiform 1 filing 2 filipino 4 filipinos 6 fill 41 filled 120 filler 1 filling 30 fillmore 5 fills 12 film 8 films 3 filmy 1 fils 1 filter 4 filtered 1 filters 1 filth 1 filthy 4 final 66 finally 156 finance 25 financed 3 finances 15 financial 40 financially 3 financier 7 financiers 7 financing 6 find 294 finder 1 finding 60 findings 1 finds 23 fine 175 fined 3 finely 11 finer 6 fines 4 finesse 1 finest 11 finger 122 fingerboard 1 fingered 4 fingering 5 fingers 146 fingertips 2 finish 49 finished 96 finishing 21 finite 1 finland 3 finnish 2 finns 1 finsen 2 fir 6 fire 274 firearms 6 firebrand 1 fired 36 firelight 2 firemen 1 fireplace 5 fires 38 fireside 3 firewood 3 fireworks 5 firhoff 2 firing 90 firm 141 firmament 3 firmer 6 firmly 73 firmness 20 firms 1 firs 3 first 1177 firstly 3 fiscal 6 fish 21 fished 1 fisheries 5 fisherman 2 fishermen 2 fishery 1 fishes 3 fishing 11 fiske 14 fission 4 fissure 2 fissured 3 fissures 5 fissuring 1 fist 8 fists 9 fistula 13 fistulae 5 fistulas 1 fit 52 fitch 1 fitful 1 fitness 8 fits 14 fitted 23 fitting 21 five 279 fiver 2 fix 27 fixation 8 fixed 147 fixedly 15 fixes 1 fixing 18 fixity 2 fixture 1 fjords 1 flabby 5 flaccid 5 flag 31 flagella 2 flagellae 2 flagged 3 flagging 1 flagrant 3 flags 8 flagstaff 2 flail 4 flair 1 flakes 4 flame 15 flamed 4 flames 23 flaming 8 flammes 1 flanders 1 flank 100 flanked 1 flanking 1 flanks 6 flannel 3 flap 27 flapped 3 flapping 3 flaps 8 flare 1 flared 11 flares 1 flaring 5 flash 10 flashed 17 flashes 3 flashing 4 flask 5 flat 34 flatboat 2 flatly 2 flats 1 flatten 2 flattened 5 flattening 3 flatter 7 flattered 17 flattering 13 flatters 1 flattery 4 flatulence 1 flaubert 1 flaunt 1 flavor 3 flavour 2 flaw 4 flaws 1 flax 6 flay 2 flayed 1 flaying 1 flea 2 fleas 3 fleches 20 fleck 1 flecked 2 fled 40 flee 11 fleecy 3 fleeing 13 fleet 24 fleeting 3 fleets 1 fleissig 1 flesh 26 fleshless 2 fleshy 4 fletcher 1 fleur 1 flew 49 flex 6 flexed 32 flexibility 2 flexible 5 flexibly 1 flexile 1 flexing 6 flexion 18 flexor 23 flexors 2 flexure 1 flexures 3 flick 1 flicked 2 flickering 3 flicking 1 flies 8 flight 48 flights 1 fling 5 flinging 3 flings 1 flint 5 flints 4 flirt 4 flirtatiousness 1 flirted 2 flirting 1 flitted 8 flitting 1 float 6 floated 8 floating 13 flock 6 flocked 2 flocking 1 flog 2 flogged 6 flogging 3 flood 14 flooded 8 flooding 4 floods 2 floor 106 flooring 2 floors 4 flop 2 flopped 4 floppy 1 flora 9 florence 2 florid 2 florida 20 floridas 6 florists 1 flotation 1 floundered 1 floundering 4 flour 14 flourish 11 flourished 16 flourishing 21 flout 1 flouted 1 flow 48 flowed 27 flower 18 flowered 1 flowering 1 flowerpots 1 flowers 14 flowing 20 flown 3 flows 6 fluctuated 1 fluctuates 1 fluctuating 13 fluctuation 19 fluff 1 fluffy 5 fluid 100 fluids 16 flung 30 flurried 5 flurries 1 flurry 1 flurrying 1 flush 12 flushed 78 flushing 15 flustered 2 flute 1 flutter 2 fluttered 6 fluttering 8 fly 39 flying 35 fn 1 fo 4 foal 1 foam 4 foaming 2 foams 1 foch 3 foci 17 focus 37 focused 2 fodder 7 foe 21 foes 10 foetal 5 foetid 3 foetus 3 fog 23 foggy 3 fogs 1 foh 1 foi 3 foibles 1 foie 1 foil 1 foka 3 fold 23 folded 24 folding 8 folds 15 foliaceous 1 foliage 4 foliated 1 folio 1 folk 37 folks 10 follette 5 follicle 4 follicles 10 follicular 3 follow 117 followed 329 follower 2 followers 23 following 208 follows 67 folly 19 foment 2 fomentation 6 fomentations 11 fomented 1 fond 61 fonder 4 fondest 2 fondly 2 fondness 3 font 3 fontanelle 1 fontanelles 1 foo 1 food 75 foods 4 foodstuffs 1 fool 52 fooled 2 foolish 20 foolishly 1 foolishness 2 fools 9 foolscap 2 foot 200 football 2 footboard 1 footfall 2 footfalls 2 footgear 2 foothold 2 footing 15 footlights 1 footman 48 footmarks 3 footmen 31 footnotes 4 footpace 7 footpaths 1 footprints 1 footstep 6 footsteps 31 foppishness 1 for 6941 forage 7 foragers 1 foraging 6 foramen 4 forays 1 forbade 17 forbear 1 forbearance 1 forbid 11 forbidden 20 forbidding 20 forbids 1 force 239 forced 76 forceful 3 forceps 15 forcer 1 forces 176 forci 3 forcible 10 forcibly 11 forcing 6 ford 7 fordham 2 fords 1 fore 1 forearm 48 forearms 1 foreboding 4 forebodings 2 forecast 5 forecasting 1 forecastle 1 forecasts 1 foreclosing 1 forefather 2 forefathers 1 forefinger 7 forefingers 1 forefront 1 forego 2 foregoing 2 foregone 1 foreground 1 forehead 66 foreheads 2 foreign 177 foreigner 12 foreigners 22 foreleg 2 forelegs 2 foreman 5 foremen 1 foremost 16 forenoon 1 forepaws 1 forerunner 1 forerunners 2 foresaw 9 foresee 9 foreseeing 3 foreseen 22 foresees 3 foreshadowed 1 foreshadowing 2 foresight 12 forest 76 forestall 3 forestalled 2 forestalling 4 foresters 1 forestry 4 forests 44 foretaste 1 foretell 1 foretold 7 forever 58 forevermore 1 forewarned 1 forfeit 9 forfeited 1 forfeiture 1 forfeitures 1 forgathered 1 forgave 4 forge 12 forged 4 forger 1 forgeries 1 forgery 3 forges 5 forget 84 forgetful 1 forgetfulness 6 forgets 8 forgetting 31 forging 2 forgive 64 forgiven 9 forgiveness 16 forgiving 3 forgo 3 forgot 27 forgotten 64 fork 3 forks 2 forlorn 5 form 507 formal 21 formalin 4 formalities 6 formality 4 formally 6 format 10 formation 215 formations 3 formats 5 forme 1 formed 235 former 177 formerly 77 formication 1 formidable 25 forming 62 forminsk 8 formio 1 formless 1 forms 255 formula 4 formulate 3 formulated 8 formulating 2 formulation 1 forsake 2 forsaken 4 forsaking 1 forsook 2 fort 19 forth 82 forthcoming 9 forthwith 3 forties 2 fortification 4 fortifications 4 fortified 14 fortify 4 fortifying 1 fortitude 3 fortnight 29 fortnightly 1 fortress 4 fortresses 4 forts 8 fortuitously 2 fortunate 21 fortunately 16 fortune 43 fortunes 46 forty 106 forum 5 forward 229 forwarded 4 forwards 18 fossa 4 fossae 2 fossil 1 foster 6 fostered 5 fostering 1 fouche 2 fought 52 foul 20 foulis 1 found 549 foundation 86 foundations 22 founded 76 founder 4 founders 5 founding 8 foundling 2 foundries 1 foundry 1 fountain 3 four 289 fourchette 1 fournier 1 fours 3 fourteen 29 fourteenth 27 fourth 78 fourthly 3 fourths 14 fowl 3 fowler 6 fowls 6 fox 23 foxes 1 foxy 1 fr 5 fraction 2 fractions 1 fracture 64 fractured 9 fractures 34 fraenkel 5 fraenum 2 fragile 1 fragilitas 4 fragility 4 fragment 16 fragmentary 1 fragments 21 fragrance 5 fragrant 4 frail 6 frailty 1 frambesia 1 frame 36 framed 12 framers 4 frames 2 framework 23 framing 9 francais 2 francaise 1 france 170 frances 1 franchise 5 franchises 5 francis 22 francisco 14 franco 1 francs 2 frank 31 frankfort 2 franklin 54 franklins 1 frankly 23 frankness 9 frantic 4 frantically 4 franz 5 fraser 3 fraternal 1 fraternity 2 fraternizing 1 fratricidal 1 fraud 15 frauds 3 fraudulent 2 fraught 2 fraulein 1 fray 2 frayed 1 freak 3 freakish 1 freaks 1 freckled 3 fred 1 frederick 8 free 421 freebody 1 freed 16 freedman 2 freedmen 15 freedom 172 freehold 24 freeholder 2 freeholders 10 freeholds 2 freeing 1 freely 67 freemason 7 freemasonry 20 freemasons 12 freemen 4 freer 1 frees 1 freesoil 1 freest 1 freewill 1 freeze 1 freezing 8 freight 16 fremitus 1 fremont 7 french 1070 frenchie 1 frenchies 2 frenchified 1 frenchman 102 frenchmen 50 frenchwoman 12 frenchy 3 freneau 1 frenzied 1 frenzy 8 frequency 34 frequent 51 frequented 4 frequently 218 frere 2 fresh 160 freshened 1 freshly 12 freshness 9 fresno 2 fret 4 fretful 2 fretted 1 friable 3 friant 6 friar 1 friction 19 friday 11 fridge 1 fried 1 friedland 5 friedlander 3 friedrich 1 friend 283 friendliest 1 friendliness 4 friendly 56 friends 156 friendship 44 friendships 3 frieze 10 frigate 3 fright 18 frighten 10 frightened 145 frightening 4 frightful 8 frightfully 1 frigid 3 frill 3 frilled 1 fringe 6 fringed 1 fringes 16 frisco 4 frise 1 fritz 2 frivolity 2 frivolous 4 frivolously 1 fro 16 frock 13 frocked 1 frocks 2 frog 3 frogged 1 frola 3 frolic 1 frolicking 1 from 5709 front 359 frontal 11 fronted 1 frontenac 1 frontier 71 frontiers 12 frontiersman 2 frontiersmen 5 fronts 1 frost 37 frosted 1 frosts 4 frosty 7 frothingham 1 frothy 2 frowde 1 frown 23 frowned 43 frowning 49 frowningly 1 froze 1 frozen 17 frugal 3 fruhstuck 1 fruit 20 fruitful 5 fruition 1 fruitless 5 fruits 14 fruschtique 1 frustrate 3 frustrated 1 frustration 1 frye 1 ft 2 ftp 5 fuchsin 1 fuck 1 fucking 2 fuel 8 fugitive 10 fugitives 11 fugue 2 fulfil 3 fulfill 20 fulfilled 21 fulfilling 5 fulfillment 9 fulfilment 1 fulfils 3 full 267 fuller 12 fullest 1 fulling 1 fullness 4 fully 69 fulminating 2 fulness 1 fulton 5 fumbled 1 fumbling 6 fumed 1 fumes 1 fuming 1 fun 25 function 57 functional 9 functionary 1 functionate 3 functionating 1 functions 22 fund 14 fundamental 21 fundamentally 2 fundamentals 1 funded 1 funding 13 fundraising 3 funds 27 fundus 1 funeral 12 fungate 3 fungated 1 fungates 1 fungating 9 fungus 7 funke 3 funnel 1 funnier 1 funniest 2 funny 25 fur 38 furies 1 furieuse 1 furious 9 furiously 6 furlough 3 furnace 4 furnaces 1 furnish 29 furnished 28 furnishes 7 furnishing 4 furniture 26 furred 1 furrow 3 furrowed 2 furrows 2 furry 1 furs 10 further 138 furthermore 8 furthest 2 furtive 2 furtively 2 furunculus 2 fury 19 fuse 6 fused 6 fuses 1 fusiform 12 fusillade 1 fusing 1 fusion 6 fuss 11 fussed 1 fussily 1 fussing 1 fussy 1 futile 15 futilities 1 futility 6 future 126 fwashing 1 fwiend 4 fwo 1 fwom 6 g 56 ga 1 gabions 1 gables 1 gabriel 6 gachina 1 gadsden 4 gag 2 gage 4 gaiety 14 gaily 38 gain 44 gained 45 gainer 1 gainful 1 gainfully 1 gaining 14 gains 20 gait 8 gaitered 1 gaiters 4 gal 1 galant 1 galaxy 1 gale 6 galere 1 gales 2 galicia 1 galilee 1 galitsyn 1 gall 4 gallant 12 gallantly 2 gallantry 1 gallatin 2 galled 1 galleries 1 gallery 11 galley 1 gallicism 1 gallicisms 1 galling 3 gallon 1 gallop 42 galloped 100 galloping 36 gallops 1 galloway 1 gallows 5 galoshes 2 galvanic 6 galvanised 1 galvanism 1 galvanometer 1 galveston 1 galyl 2 gamble 1 gambler 6 gambling 6 gambols 1 game 55 games 7 gamut 1 gang 10 ganges 1 ganglia 12 ganglion 29 ganglionic 5 gangrene 169 gangrenous 11 gangs 2 gangway 1 gantlet 2 ganze 2 gaol 3 gap 47 gape 7 gaped 3 gapes 1 gaping 6 gaps 1 garage 1 garb 1 garbs 1 garcon 2 garden 68 gardener 8 gardeners 1 gardening 1 gardens 11 gare 1 garfield 9 gargle 1 garlic 1 garment 5 garments 11 garnering 1 garnished 1 garre 2 garrett 1 garrison 11 garrisons 1 garrulous 1 garrulously 1 garter 1 garters 1 gas 16 gascon 1 gasconades 1 gascons 2 gase 1 gaseous 3 gases 8 gasfitters 2 gash 2 gaslight 1 gasogene 1 gasoline 1 gasp 3 gasped 11 gaspee 3 gasping 5 gasps 1 gasserian 2 gastein 1 gastric 5 gastro 6 gastrocnemius 3 gate 65 gates 34 gateway 13 gather 19 gathered 59 gathereth 1 gathering 20 gatherings 5 gathers 2 gauge 2 gaul 2 gaunt 5 gaunter 1 gauntlet 6 gauze 70 gauzy 1 gave 442 gavest 2 gavril 1 gay 35 gaze 28 gazed 94 gazers 2 gazette 6 gazetteer 1 gazettes 1 gazing 67 gbnewby 2 gdp 1 gdrard 1 gear 4 geben 1 gee 1 geese 18 geiser 1 gelatin 6 gelatinous 8 gelding 3 gem 3 gems 15 gen 1 gendarme 1 gendarmes 2 gender 1 gene 1 genealogical 4 genera 1 general 836 generalisation 1 generalised 11 generalities 1 generalization 3 generalizations 1 generalized 2 generalizing 1 generally 91 generals 117 generate 1 generation 33 generations 22 generative 1 generaux 1 generosity 12 generous 20 generously 3 genesee 1 genesis 1 genet 5 genetic 1 geneva 5 genevese 1 genewal 1 genial 7 geniality 2 genii 1 genital 8 genitals 17 genito 1 genius 74 geniuses 2 genlis 6 genoa 4 genteel 1 gentian 1 gentile 1 gentille 1 gentle 58 gentlefolk 2 gentleman 99 gentlemanly 1 gentlemen 100 gentleness 6 gentlest 1 gentlewoman 1 gently 37 gentry 19 genu 3 genug 1 genuine 15 genuinely 4 genus 1 geoffrey 1 geographic 1 geographical 9 geography 6 geological 2 geologists 1 geology 2 geometric 1 geometrical 2 geometry 6 george 150 georges 2 georgetown 1 georgia 54 georgian 2 gerakov 1 gerard 7 gerasim 26 germ 7 germain 1 german 196 germanic 1 germans 64 germantown 4 germany 69 germicides 2 germinal 1 germination 1 germs 3 gerry 5 gertrude 1 gervais 4 gervinus 2 gesellschaft 1 gesticulated 1 gesticulating 8 gesticulations 1 gesture 60 gestures 8 get 468 gets 22 getting 92 gettysburg 7 gewiss 1 ghastly 3 ghent 1 ghost 7 ghostly 1 ghosts 1 giant 28 giantism 2 giants 2 gibb 1 gibbon 4 gibe 2 gibraltar 3 gibrard 1 gibson 1 giddiness 4 giddy 3 gideon 2 giemsa 1 gifford 1 gift 11 gifted 8 gifts 6 gig 3 gigantic 23 giggler 1 gilbert 2 gilded 1 gillies 2 gilman 2 gilt 8 gimlet 1 gin 5 ginger 1 gingerbread 3 gipsies 7 gipsy 1 girchik 1 gird 1 girdle 3 girdled 2 girdles 1 girl 166 girlfriend 1 girlhood 2 girlish 8 girlishly 1 girls 71 girt 3 girth 10 girths 3 gist 3 git 1 give 523 given 364 gives 88 giving 186 glad 150 gladden 1 gladdening 2 glade 4 gladly 11 gladness 3 gladsome 1 gladstone 2 glairy 3 glamour 3 glance 91 glanced 176 glances 26 glancing 98 gland 52 glanders 13 glands 275 glandulae 1 glandular 16 glans 6 glare 5 glared 2 glaring 4 glasgow 1 glass 116 glasses 31 glassy 2 glazed 7 gleam 12 gleamed 15 gleaming 5 gleaned 1 glee 3 gleeful 4 gleefully 3 glen 1 glenoid 1 glide 2 glided 7 gliding 7 glimmer 4 glimmered 3 glimpse 18 glimpses 6 glinka 1 glint 2 glints 1 glio 3 glioma 4 gliomatous 4 glisten 1 glistened 1 glistening 8 glitter 10 glittered 16 glittering 34 gloat 2 global 2 globe 16 globular 7 glogau 2 gloom 22 gloomier 3 gloomily 13 gloomy 36 gloria 1 glories 2 glorify 1 glorious 11 glory 49 gloss 2 glossal 1 glossy 7 glottis 4 gloucester 1 glove 16 gloved 5 gloves 29 glow 22 glowed 3 glowing 14 glued 4 glum 1 glumly 1 gluteal 10 gluteus 3 gluttony 1 glycerin 9 glycerine 6 glycogen 4 glycosuria 6 gnarled 3 gnashed 1 gnashing 1 gnawing 3 gnaws 1 go 905 goaded 1 goading 1 goal 28 goalkeeper 1 goals 2 goat 3 goats 1 goatskin 1 gobble 1 gobelin 1 god 363 goddaughter 1 goddess 2 godfather 4 godfrey 6 godfreys 4 godlike 1 godly 2 godmother 1 gods 3 godson 2 goes 60 goeth 2 going 376 goings 2 goitre 2 gold 125 goldbach 1 golden 24 golf 1 golfer 2 goliath 4 golitsyn 6 golukhovski 1 gomez 1 gompers 8 gone 240 gong 1 gonococcal 7 gonococci 1 gonococcus 3 gonorrhoea 13 gonorrhoeal 19 good 744 goodby 1 goodge 2 goodhearted 3 goodly 1 goodness 38 goods 81 goodwill 1 goodwins 1 goose 32 goot 3 gorchakov 1 gordon 3 gorge 2 gorgeous 1 gorges 2 gorilla 1 gorki 9 gory 3 gosling 1 gosp 1 gospel 14 gospels 4 gossamer 1 gossip 25 gossiping 1 gossips 3 gossner 1 got 280 gothic 2 gott 1 gotten 2 gottsreich 1 gouge 6 gouged 1 gout 12 gouty 25 gouvernement 1 gouverneur 6 govern 14 governed 20 governeor 1 governess 14 governesses 11 governing 16 government 698 governmental 5 governments 34 governor 145 governors 31 governs 2 gowers 1 gown 53 gowns 3 gr 4 grab 1 grabbed 4 grabern 14 grabs 1 gracchus 1 grace 21 graceful 11 gracefully 6 graces 2 gracieux 1 gracilis 1 gracious 29 graciously 9 grade 11 grades 7 gradual 24 gradually 89 graduate 4 graduated 6 graduates 1 grady 1 graecorum 1 graf 1 graft 18 grafted 3 grafting 55 grafts 36 graham 1 grain 56 grains 15 gram 6 grammar 2 grammatical 1 granaries 2 granary 3 grand 81 grandchildren 1 granddad 6 granddaughter 2 grande 4 grandee 5 grandees 1 grandeur 12 grandfather 16 grandfathers 1 grandiloquent 1 grandiloquently 1 grandly 1 grandmother 5 grands 1 grandson 8 granger 2 grangers 6 granges 2 granite 1 granny 1 grant 61 granted 46 granting 18 grants 21 granular 7 granulating 11 granulation 82 granulations 60 granules 3 granuloma 2 granulomata 1 granulosum 1 grape 4 grapes 1 grapeshot 13 graph 1 graphics 1 grappled 1 gras 1 grasp 36 grasped 17 grasping 14 grass 40 grasseyement 1 grasshoppers 1 grassland 1 grassy 1 grate 5 grated 2 grateful 24 gratefully 13 gratification 3 gratified 2 gratify 4 gratifying 2 grating 10 gratitude 20 gratuitous 1 gratuity 1 grave 49 gravel 8 graveled 1 gravely 11 graven 1 graver 2 graves 2 gravesend 4 gravest 1 gravid 1 gravitated 1 gravitation 6 gravity 27 gray 89 grayish 1 graze 1 grazed 2 grazing 7 grease 4 greasy 8 great 792 greatcoat 15 greatcoats 10 greater 143 greatest 72 greatly 58 greatness 24 grecian 1 grecque 2 greece 5 greed 1 greedily 6 greediness 2 greedy 4 greek 5 greeks 3 greeley 9 green 65 greenback 6 greenbackers 6 greenbacks 12 greene 6 greenhouse 1 greenish 11 greenstick 2 greenwich 1 greet 9 greeted 27 greeting 24 greetings 12 gregory 3 grekov 5 grenade 2 grenadier 6 grenadiers 8 grenville 10 grew 166 grewsome 1 grey 39 greyish 14 grice 1 grid 1 gridneva 1 grief 47 grievance 6 grievances 15 grieve 7 grieved 13 grieving 2 grievous 6 griffe 3 griffiths 1 grim 13 grimace 12 grime 1 grimesby 8 grimke 1 grimly 1 grin 8 grind 3 grinder 2 grinding 2 grinned 2 grinning 4 grip 13 grippe 2 gripped 3 gripping 4 grist 1 grit 1 gritti 1 gritty 1 grizzled 9 grizzly 2 grm 7 grms 1 groan 11 groaned 15 groaning 5 groans 14 groat 1 grocer 1 groin 36 groom 29 groomed 4 grooms 2 groove 11 grooved 2 grooves 6 grooving 1 groping 2 gros 1 gross 28 grossich 1 grossly 4 grossvater 1 grosvenor 2 grotesque 3 ground 170 grounded 2 groundless 3 grounds 41 group 139 grouped 5 grouping 2 groups 67 grove 3 grover 6 groves 1 grow 74 growers 3 growing 153 growl 1 growled 4 growling 1 grown 100 grownup 2 grows 30 growth 225 growths 49 grs 2 grudge 11 grudged 2 grudging 2 gruel 2 gruesome 1 gruff 2 gruffly 1 grumble 1 grumbled 6 grumbling 4 grumous 2 grumpy 1 grunt 2 grunted 1 gruntersdorf 1 grunth 4 grunting 2 grunts 1 gruzinski 2 guai 1 guaiacol 1 guam 3 guarantee 16 guaranteed 6 guaranteeing 4 guarantees 2 guard 56 guarded 7 guardhouse 3 guardian 5 guardians 1 guardianship 3 guarding 3 guards 93 guardsman 8 guardsmen 4 guatemala 1 guerre 2 guerrilla 16 guerrillas 3 guess 17 guessed 21 guesses 1 guessing 9 guest 17 guests 72 gueules 2 guewilla 1 guffaw 1 guiana 3 guidance 13 guide 24 guided 17 guideline 1 guides 4 guiding 5 guild 1 guile 1 guilford 4 guillotined 1 guilt 14 guiltlessness 1 guilty 42 guinea 6 guineas 3 guise 8 guitar 10 gulch 3 gulf 13 gulled 1 gullet 3 gullies 2 gully 8 gulp 2 gulped 1 gum 6 gumboil 2 gumma 36 gummata 15 gummatous 31 gummed 1 gums 8 gun 63 gunner 8 gunners 2 gunpowder 13 guns 112 gunshot 6 gurgle 1 gurgling 1 guryev 2 gush 1 gushed 2 gushers 1 gushes 1 gushing 1 gust 2 gustave 1 gusto 1 gut 14 gutenberg 263 guthrie 1 gutta 1 gutted 1 gutter 2 guttered 1 guttering 1 gutters 1 guttural 2 guy 2 gwace 1 gweat 1 gwief 1 gwiska 1 gwovel 1 gwown 1 gwudge 1 gymnastics 1 gypsies 7 gypsy 9 gzhat 1 h 79 ha 75 habeas 8 habeus 1 habit 55 habitat 2 habitation 2 habitations 1 habits 39 habitual 22 habitually 2 hack 4 hacked 1 hacking 2 had 7383 hadn 12 haemangioma 3 haematemesis 4 haematoma 19 haematuria 3 haemic 1 haemoglobin 2 haemolysis 1 haemophilia 11 haemophilic 7 haemophilics 1 haemophylics 1 haemoptysis 2 haemorrhage 153 haemorrhages 14 haemorrhagic 3 haemorrhoids 1 haemostasis 1 haemostatics 3 hafiz 1 haggard 3 hague 8 hail 5 hailed 7 hair 234 hairdressing 1 haired 31 hairless 1 hairs 15 hairy 14 haiti 7 haitian 1 hale 1 haled 1 half 318 halfway 19 halifax 2 hall 83 hallo 2 hallooing 1 halls 4 hallucinations 1 hallux 4 halo 3 halt 20 halted 28 halting 12 halves 5 ham 6 hamburg 3 hamilton 78 hamlet 1 hamlets 1 hamlin 1 hammer 4 hammered 2 hammering 5 hammond 1 hampden 1 hamper 2 hampered 3 hampering 1 hampshire 27 hampton 1 hamstrings 3 hancocks 1 hand 834 handbills 1 handcuffed 1 handcuffs 1 handed 80 handedness 1 handful 14 handicap 2 handicapped 5 handicapping 1 handicaps 2 handicraft 1 handicrafts 3 handiest 1 handing 14 handiwork 1 handkerchief 56 handkerchiefs 6 handle 21 handled 11 handleless 1 handley 6 handling 14 handrails 1 hands 455 handsome 117 handsomely 2 handsomer 2 handsomest 1 handwriting 6 handy 5 haney 1 hang 17 hanged 16 hanging 42 hangings 1 hangs 6 hankey 1 hanna 1 hannah 2 hannibal 1 hanover 5 hanoverian 1 hanoverians 1 hans 1 hansom 6 hansoms 1 happen 99 happened 208 happening 47 happens 64 happier 13 happiest 7 happily 21 happiness 143 happy 218 harassed 3 harassing 1 harbingers 1 harbor 9 harbored 1 harboring 2 harbors 6 harbour 2 harboured 1 hard 180 hardenburg 1 hardened 10 hardening 1 harder 19 hardest 6 hardhearted 2 hardihood 1 harding 12 hardly 173 hardness 5 hardship 7 hardships 6 hardtack 1 hardware 7 hardy 8 hare 36 hares 2 hark 2 harlem 2 harley 1 harm 42 harmed 2 harmful 21 harming 2 harmless 7 harmlessly 2 harmonies 1 harmonious 6 harmonises 1 harmonium 1 harmonize 1 harmonized 1 harmony 15 harms 2 harness 27 harnessed 11 harnessing 1 harold 1 harp 8 harper 5 harpoon 2 harried 3 harrier 1 harriet 9 harris 4 harrisburg 1 harrison 25 harrogate 2 harrow 3 harry 2 harrying 1 harsh 22 harsher 1 harshly 4 hart 49 hartford 13 harvard 11 harvest 13 harvested 2 harvesters 1 harvesting 3 harvests 5 harvey 1 has 1603 hasn 9 hasp 1 hast 8 haste 30 hasten 10 hastened 29 hastening 12 hastens 2 hastily 56 hastings 1 hasty 7 hat 105 hata 2 hatched 1 hatchet 1 hate 20 hated 21 hateful 3 hatest 1 hath 7 hatherley 18 hating 2 hatred 25 hats 10 hatters 1 hatty 3 haughty 4 haugwitz 1 haul 5 hauled 1 haulers 1 hauling 6 haunched 2 haunches 1 haunt 2 haunted 3 haute 1 havana 3 have 3493 haven 39 haversian 8 having 673 havoc 4 hawaii 15 hawaiian 5 hawk 5 hawked 1 hawkers 4 haworth 19 hawthorne 2 hay 42 hayes 12 hayfield 1 hayfork 1 hayling 1 hayn 2 hayne 7 hays 1 hazard 3 hazarded 1 hazardous 1 hazards 3 haze 4 hazel 7 haziness 2 he 12401 head 725 headache 16 headdress 3 headed 37 header 7 headgear 1 heading 10 headings 1 headline 1 headlong 9 headmaster 1 headquarters 46 heads 69 headstrong 1 headwaters 4 headway 1 heah 1 heal 40 healed 16 healers 1 healing 106 heals 12 health 120 healthy 60 heap 17 heaped 3 heaping 5 heaps 3 hear 183 heard 636 hearer 2 hearers 4 hearing 93 hearings 1 hearken 1 hears 11 hearst 1 heart 256 hearted 5 heartfelt 2 hearth 1 heartily 15 heartless 6 heartrending 1 hearts 30 hearty 12 heat 83 heated 15 heath 2 heathen 2 heathens 1 heather 2 heating 1 heave 4 heaved 7 heaven 70 heavenly 7 heavens 17 heavers 1 heavier 18 heaviest 1 heavily 62 heaviness 3 heaving 4 heavy 139 heberden 3 hebrew 4 hecker 1 hectare 1 hectic 8 hedge 4 hedges 2 hedjaz 2 heed 15 heeded 1 heeding 8 heedless 6 heel 21 heeled 1 heelless 1 heels 29 heh 2 height 36 heightened 5 heights 23 heinous 1 heir 10 heiress 12 heiresses 6 heirs 8 held 287 helen 6 helena 5 helene 165 helicopter 1 heligoland 1 heliotherapy 2 hell 4 hellish 3 hello 1 helm 1 helmet 3 helmets 1 heloise 2 help 230 helped 56 helper 2 helpful 8 helping 18 helpless 22 helplessly 7 helplessness 2 helpmeet 1 helps 5 helter 1 hem 4 hemiplegia 2 hemisphere 8 hemmed 7 hemoplastin 1 hemp 11 hempen 2 hen 6 hence 32 henceforth 5 hendricks 1 hendrikhovna 21 henker 1 henri 1 henrietta 1 henry 51 hepatic 2 hepburn 4 her 5284 herald 2 heralds 1 herb 5 herbert 2 herbivora 1 herculean 1 hercules 4 herd 15 herder 1 herds 3 herdsman 2 here 691 hereafter 2 hereby 2 hereditary 14 hereford 2 herefordshire 2 herein 4 hereinbefore 1 hereof 1 heresy 2 heretofore 5 hereunto 1 heritage 6 hermit 2 hermitage 1 hernia 13 hernial 5 herniated 1 herniotomy 1 hero 55 heroes 25 heroic 26 heroically 1 heroin 6 heroine 1 heroism 13 herpes 2 herr 3 hers 30 herself 341 hesitate 4 hesitated 17 hesitating 16 hesitation 20 hesitations 1 hesse 1 hessian 4 hessians 3 heteroplastic 1 hetty 1 hetzelsdorf 1 hew 1 hewed 1 hewins 1 hewn 2 hey 10 hi 2 hiccough 3 hickory 2 hid 28 hidden 29 hide 40 hideous 10 hides 3 hiding 24 hierarchy 4 hieroglyph 2 hieroglyphics 1 high 290 higher 95 highest 81 highfalutin 1 highlight 2 highly 54 highness 49 highnesses 1 highroad 27 highroads 1 highway 5 highways 11 hildreth 2 hill 107 hillock 3 hills 93 hillsdale 1 hillside 2 hillsides 1 hilltop 1 hilly 1 hilt 3 hilton 8 him 5230 himself 1158 hind 9 hindenburg 1 hinder 14 hindered 10 hindering 4 hinders 5 hindmost 2 hindquarters 3 hindrance 11 hindrances 1 hindu 1 hinge 1 hinges 4 hinsdale 1 hint 13 hinted 11 hinting 2 hints 12 hip 47 hippolyte 51 hips 3 hiram 1 hire 5 hired 7 hirelings 1 hiring 2 his 10034 hise 1 hiss 3 hissed 4 hissing 6 histological 4 histologically 1 histology 1 historian 39 historians 129 historic 47 historical 65 historically 1 histories 17 history 439 hit 21 hitched 1 hither 5 hitherto 23 hits 1 hittel 1 hitting 5 hive 21 hives 2 hm 10 ho 9 hoar 5 hoard 3 hoarfrost 6 hoarse 22 hoarsely 8 hoarseness 4 hoax 1 hobart 1 hobbies 1 hobbledehoy 1 hobby 4 hobnob 1 hoch 4 hochgeboren 1 hockey 1 hodder 1 hodgkin 5 hoes 1 hoffman 2 hofkriegsrath 7 hofmarschal 1 hofs 2 hogarth 2 hogs 2 hohenlohe 1 hohenzollern 1 hoisted 1 holborn 2 hold 114 holder 33 holders 12 holding 144 holdings 6 holds 5 hole 18 holes 7 holiday 13 holidays 6 holies 1 holiness 2 hollabrunn 5 holland 12 hollow 52 hollowed 1 hollows 6 holly 1 holmes 467 holocausts 1 holt 1 holy 52 holyoke 1 homage 3 home 295 homeless 3 homelike 1 homely 8 homemakers 1 homeopaths 1 homer 1 homes 35 homestead 26 homesteaders 1 homesteads 14 homeward 4 homework 1 homicidal 2 homme 6 hommes 2 homogeneous 3 homoplastic 3 homosexual 1 hon 2 honduras 1 honest 23 honestly 7 honesty 2 honeur 1 honey 16 honeyed 1 honeymoon 3 honeymoons 1 hongkong 1 honneur 6 honolulu 1 honor 183 honorable 21 honorably 1 honored 22 honoria 1 honoring 1 honors 18 honour 16 honourable 3 honoured 1 honours 2 honowably 1 hood 14 hooded 1 hoof 2 hoofs 24 hook 7 hooked 3 hooker 6 hooks 1 hooped 1 hoosier 1 hop 1 hope 149 hoped 38 hopeful 5 hopefully 1 hopeless 17 hopelessly 9 hopelessness 5 hopes 41 hoping 24 hopkins 2 hopping 2 horace 10 horatio 1 horde 2 hordes 3 horizon 22 horizons 1 horizontal 5 horizontally 1 horn 18 horned 2 horner 13 hornets 1 horns 12 horny 8 horrible 27 horribly 3 horrid 12 horrified 16 horrify 2 horror 64 horrors 12 hors 3 horse 334 horseback 10 horsecloth 1 horsecloths 4 horseflesh 9 horseflies 1 horseman 6 horsemen 12 horses 262 horsey 2 horsham 10 horsley 2 hosanna 1 hosjeradek 2 hosmer 25 hospitable 6 hospital 46 hospitality 8 hospitals 18 host 23 hostage 1 hostel 1 hostelry 1 hostess 20 hostile 30 hostilities 7 hostility 23 hosts 6 hot 119 hotch 1 hotel 22 hotels 4 hothouse 3 hothouses 2 hotly 5 hottest 1 hough 1 hound 7 hounds 36 hour 157 hourra 1 hours 166 hourwich 1 house 661 houseful 1 household 55 householders 1 households 5 housekeeper 8 housekeeping 1 housemaid 9 housemaids 2 houses 117 housewife 3 housewives 2 housing 3 houston 10 hovels 1 hover 2 how 1315 howard 4 howe 6 however 430 howitzers 3 howl 4 howling 6 howwible 1 hoy 1 htm 1 html 4 http 29 hubbub 3 hubs 1 huckster 1 huddled 9 hudson 15 hue 12 huerta 3 huffed 1 hug 1 huge 89 hugged 5 hugging 4 hugh 7 hughes 6 hugo 1 huguenots 5 hulbert 2 hull 2 hullo 7 hum 25 human 170 humane 7 humanitarian 1 humanity 53 humans 2 humanum 1 humble 13 humbled 1 humbler 1 humbly 3 humbug 5 humbugged 2 humdrum 1 hume 2 humerus 43 humid 1 humidity 1 humiliate 2 humiliated 4 humiliating 14 humiliation 12 humiliations 1 humility 4 hummed 3 humming 7 humor 16 humored 9 humoredly 2 humorist 1 humorous 2 humorously 1 humour 4 humoured 1 humours 1 hump 1 hunchback 1 hunched 1 hunching 1 hundred 229 hundredfold 1 hundreds 48 hundredth 5 hundredweight 1 hundwed 3 hung 45 hungarian 7 hungary 12 hunger 27 hungrily 1 hungry 30 hunt 31 hunted 7 hunter 43 hunterian 4 hunters 13 hunting 35 huntington 1 hunts 2 huntsman 24 huntsmen 14 hur 2 hurled 4 hurling 2 hurrah 60 hurrahs 2 hurricane 1 hurried 58 hurriedly 74 hurry 45 hurrying 24 hurt 34 hurting 3 hurts 8 husband 196 husbandmen 1 husbandry 2 husbands 13 hush 6 hushed 6 hushing 1 huskily 1 husks 1 husky 3 hussar 84 hussars 106 hussies 1 hussy 1 hustling 1 hut 58 hutchinson 15 huts 8 hyaline 9 hydatid 12 hydatids 7 hyde 1 hydra 1 hydrarg 1 hydrarthrosis 1 hydrate 1 hydraulic 10 hydraulics 1 hydrocele 5 hydrocephalus 1 hydrochlorate 1 hydrochloric 2 hydrochloride 1 hydrocyanic 1 hydrogen 12 hydrophobia 6 hydrophobicus 1 hydrops 31 hygienic 2 hygroma 10 hymn 3 hyoid 3 hyoscin 1 hyper 5 hyperaemia 52 hyperaemic 7 hyperaesthesia 2 hyperostosis 12 hyperplasia 2 hyperplastic 1 hypersensitive 2 hypertext 7 hypertonus 2 hypertrophic 6 hypertrophied 10 hypertrophies 1 hypertrophy 6 hypnotics 1 hypochondria 1 hypocrisy 1 hypocrite 1 hypodermic 10 hypodermically 2 hypogastric 2 hypoglossal 3 hypothesis 8 hypothetical 1 hysteria 2 hysterical 12 i 7687 ianovich 1 iberian 6 ibiblio 4 ibid 1 ice 29 icebags 1 icel 1 iceland 1 ices 3 ich 1 ichabod 1 ichorous 2 ichthyma 1 ichthyol 10 ici 2 icon 43 icons 29 icteric 1 icy 2 id 1 ida 2 idaho 8 idea 141 ideal 25 idealists 2 ideally 1 ideals 13 ideas 57 identical 12 identically 1 identification 8 identified 8 identify 9 identity 11 ideological 1 ideology 1 ideville 3 idiocy 1 idioms 1 idiosyncrasies 2 idiosyncrasy 1 idiot 10 idiotic 3 idle 19 idled 1 idleness 12 idler 1 idlers 1 idly 2 idol 2 idolatry 1 idolized 1 if 2373 ignat 4 ignatevna 1 ignatka 1 ignatovich 1 ignatych 1 ignatyevna 3 igni 4 ignoble 2 ignominious 2 ignoramuses 1 ignorance 17 ignorant 12 ignore 5 ignored 3 ignores 1 ignoring 1 ignotum 1 ii 77 iii 91 il 18 ilagin 25 ilagins 1 ilarionovich 6 ileum 1 iliac 30 iliacs 1 iliad 1 iligin 1 ilii 1 ilio 4 ilium 5 ill 138 illegal 9 illegally 3 illegitimate 9 illicit 1 illimitable 1 illinois 41 illiteracy 5 illiterate 2 illiterates 2 illness 47 illnesses 2 illogical 4 ills 3 illuminate 1 illuminated 8 illuminati 1 illumination 2 illuminations 1 illumined 3 illuminism 3 illusion 4 illusory 3 illustrate 9 illustrated 19 illustrates 1 illustrating 5 illustration 285 illustrations 7 illustrious 5 ilya 33 ilyin 39 ilyinka 1 ilynich 2 ilynichna 2 ilyushka 2 image 7 images 4 imaginary 7 imagination 50 imaginations 1 imaginative 3 imagine 96 imagined 48 imagines 4 imagining 16 imaginings 1 imbecile 5 imbecility 2 imbedded 1 imbibe 1 imbibed 1 imbued 4 imitate 7 imitated 3 imitates 1 imitating 4 imitation 7 imitators 1 imlay 1 immaculate 1 immature 2 immeasurable 5 immeasurably 3 immediate 57 immediately 182 immemorial 1 immense 77 immensely 4 immensity 1 immersed 4 immersing 1 immersion 6 immigrant 4 immigrants 42 immigration 66 imminence 3 imminent 7 immobile 1 immobilisation 3 immobilised 6 immobility 4 immoral 3 immortal 7 immortality 2 immortally 1 immovability 1 immovable 1 immovably 2 immune 3 immunise 1 immunised 2 immunities 3 immunity 12 immutability 1 immutable 3 immutably 2 imp 1 impact 4 impacted 5 impaction 9 impair 6 impaired 26 impairing 1 impairment 20 impairs 1 impalpable 1 impart 4 imparted 4 impartial 5 impartiality 1 impartially 1 imparts 5 impassable 7 impassioned 6 impassive 5 impatience 16 impatient 15 impatiently 15 impeached 1 impeachment 9 impeachments 1 impede 1 impeded 5 impedes 2 impediment 1 impeding 1 impel 1 impelled 7 impelling 1 impels 1 impending 24 impenetrable 5 imperative 6 imperatively 1 imperator 1 imperceptible 5 imperceptibly 7 imperfect 16 imperfecta 2 imperfectly 18 imperial 54 imperialism 10 imperialistic 2 imperials 5 imperilled 1 imperious 2 impermeability 1 impersonal 1 impersonate 1 impertinent 4 imperturbable 3 imperturbably 1 impetigo 1 impetuosity 3 impetuous 6 impetuously 6 impetus 9 impinges 2 impious 1 implacable 1 implantation 5 implanted 6 implanting 4 implement 1 implementation 1 implements 3 implicate 12 implicated 25 implicates 5 implicating 5 implication 9 implicit 2 implicitly 2 implied 15 implies 10 implore 5 implored 8 imploring 9 imploringly 4 imply 12 implying 4 impolite 1 impolitely 1 impoliteness 1 import 17 importance 117 important 285 importantly 1 importation 18 imported 9 importers 2 importing 2 imports 11 importunities 1 importunity 1 impose 8 imposed 36 imposes 2 imposing 17 impossibility 14 impossible 250 impost 1 impostor 2 impostors 1 imposts 6 imposture 1 impotence 5 impotent 3 impoverished 3 impracticable 16 impregnable 1 impregnated 5 impress 12 impressed 24 impresses 1 impressing 1 impression 67 impressionable 2 impressions 20 impressive 7 impressively 2 impressment 5 imprint 1 imprison 3 imprisoned 12 imprisonment 11 improbabilities 1 improbable 5 improper 9 improperly 3 impropriety 2 improve 20 improved 24 improvement 32 improvements 27 improves 4 improving 13 improvisations 1 improvised 3 imprudence 2 imprudent 1 imprudently 1 impudence 3 impudent 2 impudently 2 impugned 1 impulse 21 impulses 16 impulsive 5 impulsively 1 impulsiveness 1 impunity 5 impure 2 impurity 1 imputation 2 impute 1 imputed 2 in 22050 inability 14 inaccessibility 1 inaccessible 5 inaccurate 5 inaction 2 inactive 6 inactivity 5 inadequacy 2 inadequate 7 inadequately 1 inadvertent 1 inadvertently 1 inadvisable 2 inalienable 1 inanition 1 inapplicable 2 inappropriate 3 inappropriately 1 inapt 1 inarticulate 1 inasmuch 3 inattention 2 inattentive 2 inattentively 1 inaudible 1 inaudibly 3 inaugural 6 inaugurated 16 inauguration 16 incalculable 4 incapable 16 incapacitate 2 incapacitated 1 incapacitates 1 incapacitating 1 incapacity 7 incarnate 2 incautiously 2 incendiaries 3 incendiarism 2 incendiarisms 1 incendiary 4 incense 2 incensed 2 incentive 1 inception 2 incessant 13 incessantly 20 inch 15 inches 16 incidence 8 incident 27 incidental 6 incidentally 4 incidents 14 incise 2 incised 23 incising 5 incision 46 incisions 18 incisive 3 incisors 1 incited 3 incitement 1 incites 1 inciting 1 incivility 1 inclination 9 inclinations 2 incline 9 inclined 21 inclines 1 inclining 2 inclosure 1 include 34 included 43 includes 16 including 85 inclusion 2 inclusive 2 incognito 2 incoherent 10 incoherently 4 income 47 incomes 12 incommensurable 2 incommensurate 1 incomparably 2 incompatibility 2 incompatible 2 incompetence 1 incompetency 1 incompetent 4 incomplete 19 incompletely 1 incomprehensible 41 inconceivable 6 inconclusive 1 incongruities 2 incongruous 2 inconsequent 1 inconsequential 1 inconsiderable 1 inconsistency 1 inconsistent 5 inconsolable 1 inconstancy 1 incontestable 3 incontestably 1 inconvenience 21 inconveniencing 1 inconvenient 4 inconveniently 1 incorporate 3 incorporated 11 incorporating 1 incorporation 3 incorrect 4 incorrectly 1 incorrigible 2 increase 115 increased 139 increases 43 increasing 69 increasingly 4 incredible 11 incredibly 2 incredulity 2 incredulously 3 incriminate 1 incubating 1 incubation 18 inculpate 2 incumbent 3 incur 2 incurable 1 incurred 10 incurring 2 incursions 1 incurved 1 ind 1 indebted 8 indebtedness 4 indecent 1 indecision 12 indecisive 2 indecorous 1 indeed 139 indefinable 2 indefinite 27 indefinitely 9 indefiniteness 1 indemnify 5 indemnities 1 indemnity 4 indentations 1 indentured 12 indentures 1 independence 151 independency 1 independent 73 independently 25 indescribable 2 indestructible 2 index 23 indexes 3 indexing 1 india 26 indian 46 indiana 27 indianapolis 1 indianians 1 indians 47 indicate 31 indicated 88 indicates 19 indicating 29 indication 34 indications 16 indicative 2 indicator 1 indicted 1 indicting 1 indictment 7 indictments 1 indies 19 indifference 26 indifferent 31 indifferently 5 indigenous 1 indigestion 4 indignant 4 indignantly 3 indignation 6 indignities 1 indignity 1 indigo 2 indirect 13 indirection 1 indirectly 14 indiscreetly 1 indiscretion 4 indiscretions 1 indiscriminately 1 indispensable 9 indisposition 6 indissoluble 3 indistinct 5 indistinctly 4 indistinguishable 2 inditing 1 individu 1 individual 119 individuality 4 individually 4 individuals 32 indolence 5 indolent 21 indolently 3 indomitable 1 indoor 1 indoors 6 indorsed 6 indorsement 1 indrawing 1 indubitable 6 indubitably 5 induce 23 induced 46 inducement 1 inducements 1 induces 5 inducing 13 induction 11 indulge 7 indulged 5 indulgence 9 indulgent 4 indulgently 2 indulging 2 indurated 29 induration 29 industrial 98 industrialism 2 industrialized 1 industrially 1 industries 64 industrious 9 industry 136 ineffective 1 ineffectiveness 1 ineffectives 1 ineffectual 1 ineffectually 1 inefficiency 1 inelegant 1 ineligible 1 inequalities 4 inequality 2 inequitable 1 inert 4 inertia 2 inertiae 1 inevitability 51 inevitable 61 inevitably 32 inexhaustible 4 inexorable 5 inexperience 1 inexperienced 6 inexplicable 6 inexpressible 1 inextricable 2 inextricably 1 infallible 3 infamies 1 infamous 9 infamy 1 infancy 5 infant 17 infantile 3 infantry 84 infantryman 3 infantrymen 5 infants 24 infantwy 2 infatuations 2 infect 9 infected 106 infecting 5 infection 366 infections 24 infectious 3 infective 66 infects 3 infer 3 inference 2 inferences 4 inferior 18 inferiority 1 infernal 2 inferred 5 infested 1 infidelity 1 infiltrate 4 infiltrated 8 infiltrates 2 infiltration 24 infiltrations 1 infinite 28 infinitely 16 infinitesimal 2 infinitesimally 2 infinitesimals 2 infinity 5 infirmaries 1 infirmary 2 infirmity 1 inflamed 53 inflames 1 inflammable 3 inflammation 93 inflammations 10 inflammatory 48 inflated 1 inflation 5 inflict 7 inflicted 25 infliction 1 inflicts 1 inflow 2 influence 138 influenced 21 influences 23 influencing 3 influential 6 influenza 3 influx 4 infolding 1 inform 32 informal 2 informality 1 informally 1 informant 1 information 73 informed 52 informer 1 informing 11 informs 2 infra 3 infraction 1 infractions 1 inframaxillary 1 infraspinous 1 infrastructure 1 infrequent 4 infrequently 13 infringe 1 infringed 3 infringement 7 infringements 1 infringers 1 infringes 1 infuriated 2 infusion 2 infusions 3 ing 3 ingenious 9 ingenuity 8 ingest 1 ingested 1 ingesting 1 ingestion 1 ingram 2 ingratiate 2 ingratiating 4 ingratiatingly 1 ingratitude 6 ingredient 1 ingress 1 ingrowing 5 ingrowth 3 inguinal 19 inhabit 1 inhabitant 7 inhabitants 80 inhabited 6 inhalation 4 inhale 1 inhaled 6 inhaling 3 inherent 11 inherently 1 inheres 1 inherit 7 inheritance 16 inheritances 3 inherited 51 inhibit 6 inhibiting 1 inhibition 1 inhuman 2 inhumane 1 inhumanity 1 inhumanly 1 inimical 3 inimically 1 inimitable 2 inimitably 1 iniquities 1 iniquity 1 initial 19 initially 1 initials 7 initiate 4 initiated 10 initiating 2 initiation 2 initiative 21 initiatives 1 initiator 1 inject 2 injected 34 injecting 5 injection 60 injections 25 injudicious 2 injunction 12 injunctions 6 injure 6 injured 55 injuries 108 injuring 6 injurious 13 injuriously 3 injury 130 injustice 13 ink 14 inkpot 1 inkstand 2 inlaid 3 inland 7 inman 1 inmate 1 inmates 2 inmost 1 inn 26 innards 1 innate 4 inner 60 innermost 1 innervated 2 innervation 4 innkeeper 7 innkeepers 1 innocence 10 innocent 72 innocently 3 innocuous 2 innombrables 2 innominate 11 innovation 2 innovations 4 innovative 1 inns 3 innumerable 38 innyard 2 inoculated 4 inoculation 22 inoculations 1 inoperable 3 inoperative 1 inopportune 1 inordinate 1 input 1 inquest 5 inquire 19 inquired 46 inquirer 1 inquires 1 inquiries 21 inquiring 21 inquiringly 33 inquiry 43 inquisition 2 inquisitive 7 inquisitively 2 inroads 2 insane 18 insanely 2 insanity 7 inscribe 1 inscribed 2 inscription 5 inscrutable 2 insect 4 insects 8 insecure 1 insecurity 1 insensate 1 insensibility 7 insensible 1 insensibly 2 insensitive 13 insensitiveness 1 inseparable 3 inseparably 1 insert 5 inserted 22 inserting 1 insertion 12 insertions 1 inside 43 insider 1 insidious 16 insidiously 4 insight 8 insignia 1 insignificance 11 insignificant 30 insincere 6 insincerity 1 insinuating 2 insist 10 insisted 59 insistence 8 insistent 1 insistently 1 insisting 7 insists 2 insolence 3 insolent 10 insoluble 9 insolubly 1 insomnia 1 insontium 2 inspect 11 inspected 5 inspecting 5 inspection 18 inspector 31 inspiration 11 inspire 8 inspired 19 inspires 3 inspiring 3 inspirited 1 inspissated 1 inst 2 instal 1 install 1 installation 2 installed 4 installment 5 installments 1 installs 1 instance 50 instances 25 instant 101 instantaneously 4 instantly 46 instants 1 instead 137 instep 1 instigating 1 instigation 2 instigator 1 instilled 1 instinct 22 instinctive 4 instinctively 14 instincts 5 institute 2 instituted 15 institutes 1 instituting 1 institution 21 institutional 1 institutions 34 instruct 4 instructed 16 instructing 3 instruction 12 instructions 46 instructive 10 instructor 4 instrument 35 instrumental 1 instruments 21 insubordination 2 insufferable 1 insufficiency 1 insufficient 17 insufficiently 2 insular 2 insulated 2 insulating 2 insult 19 insulted 11 insulting 2 insults 4 insuperable 2 insupportable 1 insurance 7 insure 3 insured 1 insurgency 2 insurgent 1 insurgents 4 insurmountably 1 insurrection 13 insurrectionary 1 insurrectionists 1 insurrections 3 insusceptible 1 intact 20 intake 1 intangible 4 integral 3 integrate 1 integrated 1 integrating 1 integration 2 integrity 9 integument 9 intellect 18 intellects 2 intellectual 41 intelligence 15 intelligent 20 intelligently 2 intelligible 5 intemperance 4 intend 8 intendant 1 intended 58 intending 12 intends 5 intense 34 intensely 2 intensified 8 intensify 1 intensifying 1 intensity 11 intensive 4 intent 13 intention 66 intentional 1 intentionally 5 intentions 20 intently 30 intentness 1 intents 1 inter 7 interact 1 interaction 6 interactions 1 interactive 1 intercarpal 2 intercede 3 interceded 1 intercellular 2 intercept 3 intercepted 1 intercepting 2 interchange 2 interchangeable 1 intercolonial 4 interconnected 1 intercostal 4 intercourse 17 intercurrent 3 interest 222 interested 65 interesting 71 interests 118 interface 1 interfere 49 interfered 20 interference 80 interferes 10 interfering 19 interim 2 interior 56 interjected 3 interlacing 1 interlarding 1 interlines 1 interlocking 1 interlocutor 1 interlopers 1 intermediacy 1 intermediary 3 intermediate 10 interminable 1 interminglings 1 intermission 1 intermit 1 intermittent 8 intermittently 1 intermuscular 5 internal 92 internally 1 international 46 internet 1 internode 1 interossei 2 interosseous 6 interphalangeal 2 interplay 2 interpose 2 interposed 7 interposition 1 interpret 4 interpretation 11 interpretations 2 interpreted 8 interpreter 14 interpreting 2 interregnum 1 interrogative 2 interrogatively 2 interrupt 9 interrupted 107 interrupting 10 interruption 5 intersect 1 intersecting 1 interspersed 1 interstate 21 interstices 1 interstitial 9 intertarsal 1 intertwined 1 interval 32 intervals 39 intervene 8 intervened 5 intervenes 1 intervening 9 intervention 25 intervertebral 2 interview 36 interviews 2 interwoven 1 intestate 1 intestinal 16 intestine 24 intestines 1 intima 10 intimacy 17 intimate 53 intimated 1 intimately 11 intimating 3 intimation 1 intimidate 1 intimidated 6 intimidating 1 intimidation 8 intimite 1 into 2124 intolerable 12 intolerably 2 intolerant 1 intonation 6 intonations 4 intothe 1 intoxicated 7 intoxicating 3 intoxicatingly 1 intoxication 13 intoxications 1 intra 35 intracranial 6 intractable 5 intracystic 2 intravenous 3 intravenously 1 intrench 1 intrenched 5 intrepid 2 intricacy 1 intricate 6 intrigue 11 intriguer 4 intrigues 19 intriguing 4 intrinsic 3 introduce 23 introduced 81 introduces 1 introducing 13 introduction 31 introspect 1 introspective 3 intrude 2 intruder 2 intruding 2 intrusion 7 intrusions 1 intrusted 7 intubation 6 intuition 4 intuitions 1 inunction 5 inured 1 invade 18 invaded 18 invaders 4 invades 6 invading 19 invalid 15 invalidity 3 invaluable 8 invariable 5 invariably 20 invasion 43 invasions 2 invective 1 inveighed 2 invent 10 invented 13 inventing 1 invention 9 inventions 2 inventive 1 inventor 3 inventories 1 inventors 2 inverse 4 inversion 2 inverted 3 invest 3 invested 18 investigate 4 investigated 3 investigation 25 investigations 7 investigator 1 investing 3 investment 5 investments 6 investor 3 investors 1 inveterate 1 invigorating 1 invincibility 2 invincible 5 inviolable 1 inviolate 1 invisible 22 invitation 18 invitations 4 invite 9 invited 44 invites 1 inviting 18 invitingly 1 invoke 1 invoked 1 involucrum 4 involuntarily 78 involuntary 27 involuted 1 involution 1 involve 22 involved 107 involvement 16 involves 21 involving 18 invulnerable 1 inward 8 inwardly 3 inwards 5 iodi 1 iodide 12 iodides 6 iodine 30 iodism 1 iodoform 43 iogel 13 ion 1 iota 1 iowa 20 iowans 1 ipatka 1 ipecacuanha 1 irascibility 1 irate 1 ire 1 ireland 15 irene 18 iridium 2 irina 1 iris 3 irish 48 irishman 1 irishmen 1 iritis 9 irksome 3 iron 78 ironic 11 ironical 11 ironically 16 irons 1 irony 26 irrational 5 irrationally 1 irreconcilable 1 irreconcilables 1 irreconcilably 1 irrecoverable 3 irredeemably 1 irrefutable 4 irregular 50 irregularities 1 irregularity 5 irregularly 15 irregulars 2 irrelevant 2 irreparable 2 irrepressible 14 irrepressibly 1 irreproachable 6 irreproachably 2 irresistible 22 irresistibly 11 irresolute 4 irresolutely 3 irresolution 2 irrespective 2 irresponsibility 2 irresponsible 2 irresponsive 1 irrevocability 1 irrevocable 4 irrevocably 2 irrigate 1 irrigated 4 irrigating 1 irrigation 23 irritability 11 irritable 16 irritably 6 irritant 12 irritants 8 irritate 4 irritated 19 irritating 14 irritation 64 irritations 1 irritative 2 irs 3 irving 2 is 9774 isa 4 isaac 1 isabel 1 isaiah 1 ischaemia 3 ischaemic 6 ischial 5 ischias 2 ischium 1 ishmael 1 island 75 islands 33 isle 3 isles 1 islets 3 ism 1 ismail 3 ismaylov 2 isn 52 iso 2 isolate 2 isolated 21 isolation 8 israel 2 iss 2 issuance 7 issue 101 issued 58 issues 38 issuing 10 ist 1 isthmus 3 it 10681 italian 33 italians 5 italicized 1 italy 26 itchiness 1 itching 8 itchy 1 item 5 items 4 itinerant 1 iting 1 its 1635 itself 273 iv 55 ivan 9 ivanich 2 ivanovich 34 ivanovna 22 ivanovs 1 ivanushka 5 ivanych 9 ivory 14 ivy 3 ix 28 j 92 ja 1 jabber 1 jabbered 2 jabbering 2 jabez 9 jacinto 2 jack 8 jackdaw 3 jacket 34 jackets 2 jacks 1 jackson 92 jacksonian 24 jacob 4 jacobin 3 jacobins 3 jacques 1 jacquot 2 jaded 1 jaffa 1 jagged 2 jail 9 jailed 1 jails 2 jake 1 jam 3 jamaica 2 jamais 1 james 84 jamestown 9 jammed 5 jan 1 jane 2 janet 1 january 41 japan 21 japanese 14 jar 5 jarring 2 jason 2 jaundice 2 jauntily 6 jaunty 3 jaw 36 jaws 18 jay 18 jazz 1 je 17 jealo 1 jealous 22 jealousies 9 jealously 1 jealousy 18 jean 1 jeans 1 jeered 2 jeff 1 jefferson 125 jeffersonian 13 jeffersonians 1 jehovah 1 jelly 8 jem 4 jena 5 jenks 1 jennies 1 jennings 2 jenny 2 jeopardized 1 jeopardy 5 jephro 2 jeremiah 2 jerk 6 jerked 14 jerkily 2 jerkin 1 jerking 3 jerkings 1 jerks 1 jerky 5 jerome 3 jersey 42 jerusalem 7 jest 17 jested 3 jesters 1 jesting 10 jestingly 2 jests 5 jesuit 4 jesus 11 jet 4 jets 4 jeune 2 jew 3 jewel 13 jeweller 1 jewellery 2 jewels 5 jewish 4 jews 9 jezail 1 jigger 2 jim 2 jimmy 1 jingle 2 jingling 9 joan 1 job 11 jobbing 1 jobert 3 jobs 2 jockey 1 joconde 1 jocose 1 jocular 3 jocularity 1 jocularly 1 joe 1 joel 1 john 149 johnny 1 johnson 22 johnston 1 join 62 joined 76 joining 19 joins 3 joint 382 jointly 3 joints 171 joke 36 joked 3 jokes 12 joking 19 jokingly 1 jolies 1 joliet 4 jollification 1 jolly 4 jolt 1 jolted 10 jolting 5 jonathan 6 jones 24 jordan 1 jose 1 joseph 42 joshua 2 josiah 3 jostle 2 jostled 5 jostling 3 jot 2 jottings 1 journ 1 journal 8 journalism 2 journalist 4 journalists 4 journals 2 journey 69 journeyed 4 journeying 1 journeys 7 jove 3 jovial 4 jowl 2 joy 89 joyful 49 joyfully 38 joylessly 1 joyous 25 joyously 6 joyousness 1 joys 15 jr 2 juan 3 jubilant 1 judah 1 judas 1 judge 45 judged 10 judgement 2 judges 33 judgeships 1 judging 21 judgment 33 judgments 1 judicial 29 judiciary 11 judicious 3 judiciously 2 judith 1 judy 1 jug 6 jugoslavia 1 jugs 1 jugular 13 juice 5 juices 2 juiciness 1 julia 6 julian 2 julie 71 juliet 1 julius 1 julner 1 july 40 jumble 1 jump 16 jumped 50 jumper 2 jumping 13 jumps 2 junction 49 junctions 17 juncture 6 june 44 jungle 3 junior 3 juniper 3 junot 5 jupiter 1 juridical 2 jurisdiction 17 jurisprudence 9 jurist 1 jury 25 juryman 1 just 767 justice 85 justices 2 justiciable 1 justifiability 1 justifiable 2 justification 16 justifications 6 justified 19 justify 21 justifying 5 justinian 1 justly 6 justness 1 justo 1 jutted 1 jutting 1 juvenile 1 k 33 ka 1 kaftans 1 kaiser 5 kakistocracy 1 kalamazoo 1 kalaw 1 kalb 3 kalisch 1 kaluga 27 kamenka 3 kamenski 7 kamensky 1 kammer 2 kann 2 kansas 28 karabakh 2 karagina 12 karagins 9 karataev 64 karay 16 kari 1 karl 10 karlovich 1 karp 12 karpushka 2 kashmir 2 kaska 1 kaskaskia 2 kate 5 katherine 1 katie 6 kaysarov 10 kazan 6 ke 2 kearney 1 keen 32 keener 4 keenest 3 keenly 14 keenness 2 keep 142 keeper 19 keepers 1 keeping 56 keeps 11 keg 2 keith 3 keloid 14 kempis 1 kempt 1 ken 5 kendall 1 kennelman 1 kennelmen 1 kenneth 1 kensington 1 kent 5 kentuckians 1 kentucky 62 keogh 1 kepler 1 kept 251 keratitis 6 keratoma 1 keratomata 1 kerchief 11 kerchiefs 1 kerseys 1 kettle 5 kettles 1 key 26 keyboard 2 keyhole 2 keys 13 khamovniki 3 khan 1 khandrikov 1 kharsivan 4 khvostikov 4 kibitka 1 kick 6 kicked 2 kicking 1 kicks 1 kid 2 kidnap 1 kidnapped 1 kidnapping 2 kidney 21 kidneys 11 kiev 18 kikin 1 kilburn 3 kill 57 killed 146 killer 2 killing 28 kills 2 kilometre 1 kin 3 kinaesthetic 1 kind 202 kinder 3 kindest 2 kindhearted 6 kindle 4 kindled 10 kindlier 1 kindliness 4 kindling 4 kindly 86 kindness 16 kindred 3 kinds 29 kinetic 1 king 238 kingdom 26 kingdoms 2 kingly 1 kings 27 kinship 1 kinsman 3 kinsmen 2 kinswoman 1 kirghiz 2 kiril 5 kirilovich 6 kirilych 8 kirk 1 kirsten 5 kiselev 1 kishenev 1 kiss 47 kissed 123 kisses 5 kissing 38 kit 5 kitchen 19 kitchens 5 kite 1 kits 2 kitten 7 kittenish 1 kitty 1 klan 6 klapp 14 klebs 4 klumpke 3 klux 7 klyucharev 6 km 1 knack 1 knaggs 1 knapsack 7 knapsacks 8 knave 2 knaves 2 kneaded 1 kneading 1 knee 171 kneel 3 kneeling 8 knees 55 knell 1 knelt 9 knew 496 knife 42 knight 7 knights 23 knit 14 knitted 8 knitting 10 knives 7 knob 2 knobs 1 knock 18 knocked 26 knocking 8 knockings 1 knocks 2 knoll 41 knot 16 knots 3 knotted 2 knotty 1 knouted 2 know 1048 knowing 97 knowledge 71 known 411 knows 102 knox 2 knuckle 3 knuckles 1 knyazkovo 3 kobelnitz 3 kocher 4 kochubey 13 koko 1 kollezski 2 kolocha 16 kolya 1 kolyazin 3 komarov 1 komoneno 1 kondratevna 1 konig 2 konigsberg 1 konovnitsyn 18 konyusheny 2 kopeks 1 kopf 2 korchevo 3 korniki 1 kosciusko 3 koslovski 1 kosoy 2 kostroma 3 koutouzov 2 kovno 1 kozlovski 17 kramm 2 krasnaya 2 krasnoe 22 kremenchug 1 kremlin 29 krems 14 krieg 1 kriegs 2 krishna 1 krug 1 ku 7 kudrino 1 kuragin 67 kuragina 2 kuragins 3 kurakin 3 kurbski 1 kursk 1 kurskies 1 kutafyev 2 kutaysov 3 kutuzov 530 kuz 1 kuzmich 14 kuzminichna 24 kvas 1 kvass 2 kwudener 1 kyphosis 2 l 68 la 55 lab 1 label 3 labelled 1 labels 3 labia 6 labium 2 labor 328 laboratories 1 laboratory 6 labored 13 laborer 5 laborers 22 laboring 4 laborious 7 laboriously 5 labors 19 labour 10 laboured 3 labourer 3 labourers 1 labouring 2 labours 1 labyrinth 4 lace 11 laced 2 lacerated 19 lacerating 2 laceration 9 lack 33 lacked 13 lackey 5 lackeys 2 lacking 14 lacks 2 laconic 2 lacrymal 1 lactate 1 lactation 3 lacteals 1 lactic 1 lad 70 ladder 7 laden 10 ladies 103 lads 38 lady 177 ladykins 1 ladyship 1 lafa 1 lafayette 5 laggards 1 lagged 7 lagging 5 laguna 1 laid 186 lain 6 lair 1 laissez 1 laity 2 lake 27 lakes 13 lamb 2 lambach 1 lambkin 1 lambs 1 lambskin 2 lame 5 lamely 2 lameness 2 lament 5 lamentable 1 lamentation 1 lamentations 1 lamented 7 lamenting 3 laments 1 lamina 2 laminated 16 lamp 37 lamps 8 lancashire 1 lancaster 4 lance 2 lancers 1 lances 3 lancet 1 lanciers 1 lancinating 2 land 279 landau 4 landed 15 landgrave 1 landing 19 landlady 5 landless 4 landlord 14 landlordism 1 landlords 6 landmarks 1 landowner 16 landowners 5 lands 76 landscape 3 landslide 1 lane 27 lanes 2 lanfrey 1 langeron 13 langham 1 language 61 languages 8 languid 7 languidly 4 languished 1 languor 5 lank 2 lannes 5 lanolin 3 lanoline 2 lanskoy 2 lantern 14 lanterns 6 laocoon 1 lap 11 laparotomy 3 lapse 8 lapsed 3 lapsing 1 large 483 largely 29 larger 101 largest 25 largish 1 lark 1 larks 2 larrey 3 larry 1 larvae 1 laryngeal 2 larynx 25 las 1 lascar 12 laser 1 lash 8 lashed 5 lashes 5 lashing 1 lassies 2 lassitude 3 last 565 lasted 31 lasting 16 lastly 13 lasts 10 lata 4 latane 5 latch 3 late 165 latecomers 1 lately 22 lateness 1 latent 14 later 334 lateral 30 lateralis 1 laterally 9 latest 17 lathe 9 lather 2 lathering 1 latin 17 latissimus 2 latitude 2 latrines 1 latter 129 latterly 9 latvia 1 lauck 1 laudanum 2 laugh 70 laughed 101 laughers 1 laughing 115 laughingly 4 laughingstock 3 laughlin 1 laughs 2 laughter 79 launch 4 launched 15 launching 1 laura 3 laurel 3 laurels 3 lauriston 6 lava 1 lavater 1 lavender 1 lavish 3 lavishly 1 lavra 3 lavrushka 38 lavwuska 1 law 432 lawbreaking 1 lawford 1 lawful 16 lawfully 3 lawfulness 1 lawless 5 lawlessness 1 lawmakers 1 lawn 14 lawrence 6 laws 233 lawsuit 3 lawton 1 lawyer 16 lawyers 13 lax 2 laxity 6 lay 295 layer 51 layers 22 laying 27 layman 1 layout 1 lays 4 lazarchuk 1 lazarev 12 lazily 6 laziness 1 lazy 5 lb 1 le 55 lea 1 lead 137 leaded 1 leaden 1 leadenhall 5 leader 53 leaders 136 leadership 58 leading 115 leads 32 leadville 1 leaf 7 leaflet 2 leaflets 3 leafy 1 league 53 leagues 5 leak 1 leakage 8 leaking 3 lean 12 leaned 39 leaning 55 leap 4 leaped 10 leaping 3 leaps 9 leapt 2 learn 38 learned 100 learner 1 learning 33 learns 2 learnt 1 lease 3 leased 2 leases 2 leash 12 leashes 3 leasing 1 least 194 leather 35 leatherhead 4 leathery 1 leave 300 leavenworth 2 leaves 38 leaving 132 lebanon 1 lech 2 lecky 2 lecture 4 lecturer 1 lectures 6 led 196 ledderhose 1 ledge 5 ledger 6 ledgers 1 lediard 1 lee 27 leech 3 leeches 4 leeds 1 left 834 leg 145 legacy 2 legal 52 legalized 2 legalizing 1 legally 9 legations 1 legend 4 legends 1 legged 11 leggings 1 legible 1 legion 6 legislation 61 legislative 31 legislator 1 legislators 2 legislature 79 legislatures 68 legitimate 15 legitimation 1 legitimist 1 legitimists 2 legree 1 legs 118 leipsic 1 leishman 1 leisler 1 leisure 17 leisurely 9 leiter 2 leland 2 lelorgne 3 lelya 3 lemarrois 1 lembert 1 lemon 6 lemonade 2 lemons 1 len 4 lency 2 lend 11 lender 2 lenders 2 lending 3 lends 3 length 63 lengthen 2 lengthened 3 lengthening 7 lengths 5 lengthy 3 lenient 2 leniently 1 lenity 1 lenox 1 lens 12 lenses 1 lent 21 lentelli 1 lenten 1 leo 6 leon 1 leonine 1 leontiasis 3 leopard 1 leper 1 leppich 5 leprosy 4 leprous 1 les 18 lesion 102 lesions 159 leslie 1 less 367 lessen 2 lessened 3 lessening 1 lessens 1 lesseps 1 lesser 24 lesson 11 lessons 21 lest 25 lestrade 38 let 506 letashovka 1 lethal 2 lethargy 1 lets 7 letter 290 letters 108 letting 43 leucaemia 2 leucin 1 leucocyte 2 leucocytes 57 leucocythaemia 4 leucocytosis 39 leucopenia 3 leucoplakia 2 leukaemia 1 levee 5 level 53 leveled 2 leveling 2 levellers 1 levelling 2 levels 1 lever 3 levers 4 levi 1 leviathan 1 levied 4 levies 1 levity 1 levy 4 levying 3 lewis 5 lexical 1 lexington 8 li 1 liabilities 1 liability 27 liable 146 liaison 1 liar 6 liberal 38 liberalism 1 liberality 1 liberally 1 liberals 3 liberate 4 liberated 10 liberating 1 liberation 5 liberator 2 liberia 1 liberties 11 liberty 78 librarian 1 libraries 3 library 13 lice 3 licence 1 license 40 licensed 6 licenses 4 licensing 3 licentiousness 1 lichen 3 lichtenfels 1 lichtenstein 1 lick 2 licked 2 licking 2 licks 1 lid 14 lidded 1 lids 8 lie 89 liebchen 1 lied 5 lies 86 lieu 7 lieutenant 27 lieutenants 2 life 878 lifeless 12 lifelessly 2 lifespan 1 lifestyle 1 lifetime 4 liffs 1 lift 32 lifted 72 lifting 35 lifts 2 ligament 22 ligaments 25 ligamentum 2 ligate 1 ligated 7 ligating 3 ligation 52 ligature 40 ligatures 10 light 278 lighted 16 lighten 3 lightened 1 lighter 9 lightest 2 lighthearted 5 lightheartedly 1 lighthorse 1 lighting 16 lightly 41 lightness 4 lightning 13 lights 22 ligne 1 like 1080 liked 75 likelier 1 likelihood 2 likely 78 likened 4 likeness 5 likes 8 likewise 30 likhachev 7 liking 9 lilac 7 lilies 1 liliuokalani 1 lily 2 limb 217 limbed 1 limbered 1 limbers 4 limbo 1 limbs 67 lime 23 limes 1 limestone 2 limit 35 limitation 19 limitations 12 limited 80 limiting 5 limitless 2 limits 23 limonade 2 limp 8 limped 2 limpet 2 limping 6 limply 1 limps 1 lincoln 83 line 248 lineage 1 linear 2 lined 32 linen 23 linens 2 liners 2 lines 133 linger 3 lingered 8 lingering 3 lingo 1 lingual 2 linguistic 1 liniment 2 linimentum 1 lining 24 link 12 linked 12 linking 4 links 13 linoleum 1 linseed 1 linsey 1 linstocks 2 lint 13 linz 1 lion 3 lions 1 lip 56 lipetsk 1 lipoid 1 lipoma 32 lipomas 3 lipomatosis 7 lipped 2 lipping 6 lips 146 liquefaction 13 liquefied 3 liquefies 2 liquefy 3 liquefying 1 liquid 10 liquor 13 liquors 2 lis 1 lisa 1 lise 30 lisp 1 lisping 3 lispingly 1 list 48 listed 3 listen 100 listened 156 listener 3 listeners 6 listening 89 listens 2 lister 8 listerian 3 listing 4 listless 12 listlessly 1 listlessness 1 lists 9 lit 74 litany 1 litashevka 1 litchfield 1 literacy 3 literal 1 literally 7 literary 42 literate 1 literature 16 lithe 1 lithuania 1 litigants 1 litigation 1 litre 1 litter 3 littered 5 little 1001 live 128 lived 113 livelier 6 liveliest 2 livelihood 10 liveliness 3 lively 20 liver 40 liveried 3 liveries 1 liverpool 6 livery 2 lives 60 livid 14 living 135 livingston 7 livingstons 2 livonian 1 liza 1 ll 427 llewellyn 1 lloyd 10 lo 1 load 8 loaded 28 loading 5 loads 3 loaf 4 loafer 3 loafing 1 loam 1 loan 10 loans 13 loath 1 loathe 1 loathed 1 loathing 3 loathsome 3 lobby 3 lobingier 1 lobnoe 3 lobster 1 lobulated 8 lobulation 2 lobules 2 local 192 localisation 5 localise 1 localised 43 localising 1 localities 1 locality 14 locally 11 locate 1 located 24 locating 1 location 8 locations 6 lock 33 locke 6 locked 27 locket 2 locking 13 locks 6 lockup 1 locomotion 1 locomotive 10 locomotor 6 loculi 1 locus 1 lodes 1 lodge 86 lodged 12 lodger 2 lodges 11 lodging 8 lodgings 11 lodgment 7 lodi 1 loffler 4 loftiest 1 loftily 1 loftiness 2 lofty 29 log 20 logement 1 logging 1 logic 11 logical 21 logician 1 login 1 logs 8 loi 1 loin 1 loins 1 loitering 1 lolled 2 lolling 1 lombard 1 lome 4 london 76 londoners 1 lone 9 lonelier 1 loneliness 4 lonely 13 lonesome 1 long 991 longed 23 longer 232 longest 2 longfellow 3 longing 7 longitude 2 longitudinal 5 longitudinally 2 longshoremen 1 longtemps 1 longus 14 loofah 1 look 567 looked 760 looking 489 lookout 7 looks 88 loom 2 loomed 5 looming 2 loop 4 loophole 1 loopholes 1 loops 10 loose 90 loosed 3 loosely 10 loosened 4 looseness 1 loosening 1 loot 3 looted 6 looters 2 looting 11 loots 1 lope 3 lopped 1 lopukhin 3 lopukhins 1 loquacious 1 loquacity 1 lord 132 lording 1 lordling 1 lords 13 lordship 4 lore 1 lorgnette 4 lorrain 11 lorraine 2 lorry 1 los 3 lose 51 loses 18 losing 43 loss 143 losses 26 lost 224 lot 35 lothman 1 lotion 19 lotions 8 lots 8 lotteries 2 lottery 1 loud 64 louder 32 loudest 4 loudly 46 louis 44 louisa 4 louise 4 louisiana 62 louisville 3 lounge 4 lounged 3 loungers 2 lounging 5 louse 1 lout 1 lovayski 1 love 484 loved 128 lovejoy 1 loveliness 1 lovely 30 lover 26 lovers 9 loves 21 loving 42 lovingly 2 low 131 lowed 1 lowell 13 lower 196 lowered 33 lowering 19 lowers 1 lowest 17 lowliest 1 lowly 1 lows 1 loyal 20 loyalist 1 loyalists 10 loyally 4 loyalty 16 lozenge 1 lozenges 1 ltd 1 luargol 2 lubomirski 1 lubricant 1 lubyanka 3 lucca 2 lucia 1 lucid 2 lucidum 1 luck 28 luckily 1 luckless 3 lucky 15 lucrative 10 lucretia 1 lucy 4 ludicrous 1 luetin 2 luff 1 luggage 7 lui 4 luke 1 lukich 1 lull 2 lumbago 8 lumbar 6 lumber 14 lumbering 2 lumbo 2 lumbricals 5 lumen 27 luminous 11 lump 12 lumps 2 lunatic 8 lunatics 3 lunch 17 lunched 1 luncheon 2 lunches 2 lunching 1 lunchtime 1 lung 8 lungs 23 lunule 2 lupus 38 lurched 3 lurching 1 lure 8 lured 6 lurid 5 luring 3 lurked 2 lurking 5 lush 1 lusitania 5 lust 5 luster 1 lustre 2 lustrous 1 lusty 1 luteum 1 luther 1 lutheran 1 lutherans 1 luthers 1 luxations 1 luxemburg 1 luxuriant 2 luxuriantly 1 luxuries 4 luxurious 8 luxuriously 1 luxury 8 luzon 2 lvovich 1 lvovna 1 ly 1 lyadov 2 lydia 2 lying 118 lymph 194 lymphadenitis 13 lymphadenoma 9 lymphangiectasis 5 lymphangio 2 lymphangioma 12 lymphangiomas 2 lymphangioplasty 3 lymphangitic 1 lymphangitis 23 lymphatic 25 lymphatics 38 lympho 9 lymphocytes 8 lymphocytosis 2 lymphoid 3 lymphorrhagia 2 lynch 1 lynn 2 lyon 3 lyons 1 lyre 1 lyric 1 lyrical 1 lysander 7 lysol 1 lyubim 1 m 170 ma 31 mabel 1 mac 1 macaulay 5 macdonald 39 macerated 8 maceration 2 macewen 10 macheve 2 machinations 1 machine 39 machinery 27 machines 3 mack 22 macked 1 mackenna 1 mackes 1 mackintosh 1 maclachan 1 macmillan 2 macrophages 2 macular 1 mad 36 madagascar 2 madam 23 madame 43 madcap 1 maddened 1 maddening 2 made 1007 madeira 3 mademoiselle 142 madere 1 madero 3 madison 44 madly 7 madman 4 madmen 1 madmoiselle 1 madness 5 madonna 1 madrid 8 madura 5 magazine 5 magazines 5 magdalenes 2 magellan 2 maggie 3 maggot 1 maggoty 1 magic 10 magical 4 magically 1 magician 3 magistrate 9 magistrates 2 magna 2 magnanimity 15 magnanimous 9 magnanimously 1 magnate 4 magnates 8 magnesium 2 magnet 1 magnetic 2 magnificence 3 magnificent 12 magnifico 1 magnified 1 magnifying 3 magnitski 12 magnitude 13 magnolia 1 magnum 2 magyars 1 mahan 1 mahogany 4 maid 87 maiden 15 maidens 1 maids 30 maidservant 5 maidservants 3 mail 9 mails 5 maim 1 maimed 3 main 109 maine 21 mainframe 1 mainland 3 mainly 75 mains 1 mainspring 2 mainstream 1 maintain 48 maintained 40 maintaining 15 maintains 6 maintenance 10 mais 5 maison 3 maistre 1 maitre 1 maitresse 1 maize 1 majestic 24 majestically 3 majesties 1 majesty 102 major 78 majora 1 majority 121 majus 1 makar 19 makarin 8 makarka 2 makarovna 3 make 504 makeev 4 maker 4 makers 9 makes 54 maketh 1 making 217 makings 1 makins 1 maksim 1 mal 3 mala 1 malacia 4 maladies 1 malady 6 malaise 2 malakhov 1 malaria 3 malarial 1 malasha 7 malay 1 malbrook 1 malcontent 1 malcontents 1 male 40 malefactors 1 males 17 malevolence 4 malevolent 4 malevolently 2 malformation 1 malformations 1 malgre 1 malheureux 1 malice 3 malicious 3 maliciously 2 malign 1 malignancy 12 malignant 88 malignantly 1 malignity 1 malingerers 1 mall 1 mallei 3 mallein 2 malleoli 2 malleolus 9 mallet 5 mallets 2 malnutrition 1 malo 8 malodorous 2 malpighii 4 malt 1 malta 2 malum 2 malvinas 1 malvintseva 7 maman 2 mameluke 1 mamma 117 mammae 3 mammal 1 mammary 4 mammas 1 mammoth 2 mamonov 7 mamontov 1 man 1652 manage 27 managed 63 management 48 manager 19 manageress 1 managerial 1 managers 6 manages 3 managing 6 manchester 5 manchuria 1 mandate 1 mandatories 1 mandatory 2 mandible 11 mandibular 5 mane 9 manes 2 maneuver 7 maneuvered 2 maneuvers 21 manfully 1 mange 1 manger 1 mangled 1 manhattan 1 manhood 22 mania 6 maniac 2 manifessto 1 manifest 29 manifestation 16 manifestations 44 manifested 6 manifesting 1 manifestly 1 manifesto 15 manifestoes 2 manifests 10 manifold 3 manila 9 manipulate 1 manipulated 1 manipulates 1 manipulation 5 manipulations 3 mankind 36 manless 1 manly 13 mann 1 manna 1 manned 4 manner 135 manners 22 manning 1 manoeuvered 1 manoeuvre 1 manoevered 1 manor 5 manorial 3 manors 8 manpower 1 manque 1 manservant 2 mansfeld 1 mansfield 1 mansion 5 mansions 2 mantelpiece 6 mantilla 3 mantle 8 mantles 1 manual 19 manufactory 1 manufacture 19 manufactured 7 manufacturer 8 manufacturers 21 manufactures 43 manufacturing 39 manure 5 manured 1 manures 1 manuscript 6 manuscripts 3 many 609 map 38 mapped 2 mapping 1 maps 7 marat 1 marathon 1 maraude 1 marauder 3 marauders 9 marauding 4 marbank 2 marble 10 marbled 1 marbury 5 march 135 marched 24 marches 10 marching 29 marco 1 marcus 2 mare 5 marechaux 1 marengo 1 margaret 2 margaux 1 margin 28 marginal 2 margins 34 maria 5 marian 1 marie 11 marietta 3 marin 1 marina 2 marine 9 mariners 3 marines 4 marion 3 maritime 5 marius 1 mark 38 marked 138 markedly 8 marker 2 market 52 marketing 1 markets 47 marking 5 markings 1 markov 7 marks 19 marlborough 1 marm 1 marne 1 maroon 4 marque 2 marquette 5 marquis 3 marquise 2 marred 1 marriage 96 marriageable 3 marriages 6 married 107 marries 1 marrow 78 marry 95 marrying 32 mars 3 marseilles 2 marsh 3 marshal 66 marshaled 2 marshall 34 marshalls 1 marshals 26 marshes 1 marshy 2 marston 1 martha 2 martial 16 martialed 2 martin 7 martineau 5 martinet 1 martinists 1 martyr 5 martyrdom 3 martyrlike 1 martyrs 1 marvel 1 marveled 1 marveling 1 marvellous 2 marvelous 3 marvelously 1 marvels 2 marx 1 marxian 1 mary 705 marya 113 maryland 41 masculine 9 mash 2 masha 8 mashka 3 mask 12 masked 2 mason 28 masonic 18 masonry 4 masons 9 mass 101 massachusetts 117 massacre 11 massacred 2 massacres 1 massage 28 massaged 7 massasoit 1 masse 2 masses 70 masseter 2 massive 12 mast 2 master 141 mastered 4 mastering 3 masterly 10 masterpiece 1 masters 37 mastery 7 mastication 4 mastiff 2 mastitis 3 mastoid 18 masts 2 mat 3 matas 8 match 41 matched 1 matches 7 matchless 2 matchmaker 1 matchmaking 4 mate 5 mater 2 material 74 materially 9 materials 35 maternal 4 mates 4 mathematical 4 mathematically 2 mathematician 1 mathematicians 1 mathematics 11 mather 1 matheson 1 mathilde 1 matins 2 matrena 8 matreshka 1 matrevna 1 matrimonial 1 matrix 11 matron 2 mats 2 matt 1 matted 6 matter 365 mattered 3 matters 136 matthew 4 matting 1 mattock 1 mattress 1 mature 6 matured 5 maturing 1 maturity 13 matveich 1 matvevna 5 maude 1 maudlin 1 maudsley 1 maurice 1 mauritius 1 mautern 1 mavra 26 mavrushka 2 mawkish 2 mawr 1 max 2 maxilla 6 maxillae 1 maxillary 5 maxim 4 maximilian 2 maxims 1 maximum 21 maximus 2 maxwell 1 may 2551 maybe 8 mayest 1 mayflower 3 mayo 3 mayonnaise 1 mayor 15 mayors 2 mazurka 11 mazuwka 1 mb 13 mccarthy 37 mccarthys 3 mccauley 2 mcclellan 3 mcclintock 1 mccormick 2 mcculloch 4 mcduffie 2 mcfarlane 1 mckinley 38 mclaughlin 1 mcmaster 10 mcquire 1 md 1 me 1920 mead 2 meade 3 meadow 18 meadows 8 meager 6 meagre 1 meal 15 meals 5 mean 98 meanest 1 meaning 115 meaningful 1 meaningless 18 meaninglessly 1 meanings 1 meanly 3 meanness 3 means 253 meant 113 meantime 17 meanwhile 45 meany 1 measles 4 measurable 1 measure 93 measured 25 measurement 2 measures 179 measuring 7 meat 15 meatal 1 meats 2 meatus 6 mechanical 35 mechanically 12 mechanicks 1 mechanics 24 mechanism 12 meckel 1 mecklenburgers 1 med 2 medal 4 medals 4 meddle 6 meddler 1 meddling 2 media 7 mediaeval 1 medial 30 medially 3 median 24 mediastinal 1 mediastinum 2 mediate 1 mediation 4 mediator 2 mediators 1 medical 22 medicinal 4 medicinally 1 medicine 27 medicines 4 medico 1 medieval 1 meditate 2 meditated 1 meditating 5 meditation 6 meditations 1 meditative 2 meditatively 2 mediterranean 5 medium 44 medius 1 medulla 15 medullary 28 medullated 3 medvedev 1 medyn 1 meek 8 meekest 1 meekly 10 meekness 2 meet 170 meeting 118 meetings 28 meets 3 meg 1 mein 1 meinen 1 melaena 3 melan 2 melancholia 2 melancholie 1 melancholy 32 melanin 4 melanotic 18 melbourne 1 mele 1 melk 1 mellow 2 melodious 1 melodramatically 1 melody 4 melon 8 melt 5 melted 13 melting 11 melts 1 melyukov 2 melyukova 2 melyukovka 4 melyukovs 7 member 50 members 157 membership 4 membra 1 membrane 154 membranes 24 membranosus 3 membranous 3 meme 1 memento 2 memoir 1 memoirs 5 memorable 21 memoranda 1 memorandum 9 memorial 2 memorials 3 memories 31 memory 55 memphis 3 men 1145 menace 16 menaced 2 menacing 13 menacingly 1 menard 1 mend 3 mendacious 1 mended 3 mendicant 1 mendicants 1 mending 2 mendota 1 menendez 1 meningeal 1 meningen 1 meninges 2 meningitis 10 meningocele 1 menisci 2 meniscus 1 menservants 2 mental 37 mentality 1 mentally 20 menthol 1 mention 46 mentioned 66 mentioning 9 mentions 2 menu 1 mercantile 6 mercenaries 1 merchandise 4 merchant 41 merchantability 2 merchantibility 2 merchantmen 3 merchants 54 merci 3 mercies 2 merciful 6 mercifully 2 merciless 2 mercilessly 2 mercurial 5 mercury 36 mercy 42 mere 79 meredith 1 merely 189 merest 4 merge 6 merged 17 merger 1 mergers 2 merges 1 merging 6 meridian 1 merit 24 merite 1 merited 1 meritorious 1 merits 11 merrier 3 merriest 4 merrily 22 merrimac 3 merriment 7 merritt 1 merry 56 merrymaking 2 merryweather 12 merveille 1 mesalliance 1 mesdames 1 mesenteric 3 mesentery 2 mesh 1 meshchanski 1 meshcherski 2 meshes 5 meshkov 1 meshwork 3 mesial 1 mesoblastic 1 mesopotamia 1 mesquite 1 mess 10 message 46 messages 6 messenger 25 messengers 1 messieurs 3 messrs 1 met 544 metabolism 2 metacarpal 9 metacarpals 2 metacarpi 2 metacarpo 3 metacarpus 1 metal 34 metallic 16 metals 3 metamorphosis 1 metaphor 1 metaphorically 1 metaphysical 1 metaphysics 3 metaphysis 2 metaplastic 2 metastases 13 metastasis 11 metastatic 6 metatarsal 8 metatarso 3 metatarsus 1 metchnikoff 5 mete 1 meted 1 metempsychosis 1 metes 1 methinks 1 method 141 methode 1 methodical 1 methodically 1 methodology 1 methods 92 methylated 6 methylene 1 metier 1 metivier 14 metre 1 metronome 1 metropolis 6 metropolitan 6 metternich 3 mettle 1 mettlesome 2 meuse 3 mews 3 mexican 39 mexicans 3 mexico 69 meyer 1 mi 3 mice 3 michael 69 michaud 22 michel 5 michigan 23 micro 18 microbes 1 micrococci 2 micrococcus 2 microphages 2 microphone 1 microscope 3 microscopic 3 microscopical 7 microscopically 1 mid 6 midday 12 middle 192 middlesex 1 middling 1 midfield 1 midges 1 midian 2 midnight 28 midst 50 midsummer 1 midway 4 midwife 5 midwinter 2 mien 2 mifflin 1 might 536 mightier 2 mightily 1 mighty 30 migrate 5 migrated 4 migration 32 migrations 3 migratory 4 mihiel 2 mike 1 mikhaylovich 3 mikhaylovna 131 mikhelson 1 mikolka 1 mikulicz 1 mikulino 4 milan 5 milashka 1 mild 50 milder 9 mildest 3 mildly 5 mildness 5 mile 32 mileage 1 miles 110 miliary 1 militant 2 militarism 1 militarist 1 military 228 militarymen 1 militia 44 militiaman 2 militiamen 29 milk 29 milka 13 milking 1 milky 4 mill 18 millar 5 millard 3 milldam 1 mille 1 millennium 3 miller 5 milliamperes 3 millimetre 1 millimetres 1 milliners 1 million 72 millionaire 3 millionaires 5 millionairess 1 millions 84 millionth 1 millis 1 millpool 1 mills 39 miloradovich 20 miloradoviches 1 milton 1 milwaukee 2 mimetic 4 mimi 3 mimicked 5 mimicking 1 min 1 mind 341 minded 21 mindedly 9 mindedness 9 mindful 5 minds 27 mine 62 mined 4 miner 8 mineral 11 minerals 8 miners 19 mines 22 mingle 4 mingled 32 mingling 11 miniature 4 miniaturist 2 minimal 1 minimise 2 minimize 1 minimizing 1 minims 6 minimum 22 mining 18 minion 1 minister 74 ministerial 1 ministers 34 ministry 14 minnesingers 3 minnesota 13 minor 29 minora 1 minorca 1 minority 13 mint 1 mintage 1 mints 2 minuit 1 minus 1 minute 83 minutely 9 minutemen 1 minuteness 2 minutes 146 minutest 6 mio 2 miracle 5 miracles 1 miraculous 2 miriam 1 mironov 1 mirror 18 mirrorlike 3 mirrors 10 mirth 5 mirthful 1 mirthless 2 misadventure 1 miscalculated 1 miscarriage 2 miscarriages 1 miscarried 1 mischance 1 mischief 6 mischievous 5 misconduct 1 miscreant 1 misdeeds 1 misdemeanors 1 misdirected 2 miserable 13 misericorde 1 misery 18 misfortune 33 misfortunes 15 misgivings 6 misha 2 mishka 4 misinformed 1 misjudged 1 mislead 1 misleading 4 misled 4 mismanaged 1 mismanagement 1 misplaced 1 misrepeated 1 misrule 1 miss 112 missed 28 misses 2 misshapen 6 missile 4 missiles 2 missing 28 mission 34 missionaries 11 missionary 1 missions 3 missis 1 mississippi 78 missouri 58 misspelled 1 missy 1 mist 41 mistake 39 mistaken 59 mistakes 15 mistaking 4 mister 2 mistook 1 mistress 24 mistresses 3 mistrustfully 2 mistrusting 1 mists 1 misty 10 misunderstand 1 misunderstanding 7 misunderstandings 6 misunderstood 1 mitchell 6 mitenka 16 mitigate 2 mitigates 1 mitka 5 mitrich 3 mitrofanych 1 mitya 3 miwacle 1 miwonov 1 mix 4 mixed 62 mixing 2 mixture 13 mlle 1 mm 1 mmm 1 mo 1 moan 10 moaned 6 moaning 13 moans 6 mob 26 mobbed 1 mobbing 1 mobile 3 mobility 15 mobilized 3 mobilizing 2 mobs 5 mock 3 mocked 1 mocking 6 mockingly 1 mode 18 model 13 modeled 2 modeling 2 models 1 moderate 31 moderately 5 moderating 1 moderation 10 modern 49 modes 2 modest 13 modestly 4 modesty 8 modification 10 modifications 8 modified 21 modify 6 module 1 mohawk 2 mohawks 2 moines 1 moist 63 moistened 5 moisture 10 mokhavaya 1 mokhovaya 1 molars 2 molasses 12 mold 2 moldavia 4 moldavian 1 molded 1 molders 4 mole 15 molecular 4 molecule 1 moles 9 molested 1 molibre 1 molle 1 molliten 1 molluscum 7 momburg 1 moment 487 momenta 1 momentarily 1 momentary 13 momentous 7 moments 56 momentum 10 mon 54 monarch 22 monarchical 4 monarchies 2 monarchist 1 monarchists 1 monarchs 14 monarchy 21 monasteries 2 monastery 9 monday 17 mondays 1 monetary 6 money 326 moneyed 1 monger 1 mongrel 1 monica 3 monitor 4 monitoring 1 monitress 2 monk 8 monkey 6 monkeys 3 monks 3 monmouth 4 monocrat 1 monogram 4 monograms 3 monograph 3 monologue 1 monomaniac 1 mononuclear 2 monopolies 10 monopolists 1 monopolized 1 monopolizers 1 monopoly 15 monosyllable 1 monosyllables 4 monotonous 11 monotony 3 monro 1 monroe 47 monseigneur 5 monsieur 45 monster 11 monsters 2 monstrosity 2 monstrous 7 montagu 3 montague 3 montana 16 montcalm 1 montdidier 1 montesquieu 2 montgomery 4 month 64 monthly 8 months 130 montmorencys 1 montreal 4 monument 6 monuments 7 mood 51 moodily 2 moods 5 moody 1 moon 24 moonless 1 moonlight 18 moonshine 3 moor 3 moore 12 moorhof 2 mop 5 mopping 2 moral 51 morale 1 morality 6 morally 9 morals 5 moran 13 morand 5 moravian 1 moravians 2 morbid 15 morcar 4 more 1997 moreau 5 morel 17 moreover 73 morgan 6 morgen 2 mori 1 moribund 1 morio 4 morley 1 mormon 3 mormons 10 morning 337 mornings 3 moroccan 1 morocco 3 morose 14 morosely 7 moroseness 1 moroseyka 2 morphin 9 morrant 1 morris 16 morrises 2 morrison 2 morristown 1 morrow 22 morse 4 morsel 1 morsels 1 mort 2 mortal 14 mortality 6 mortally 6 mortals 1 mortar 2 mortem 5 mortemart 9 mortgage 8 mortgaged 2 mortgages 7 mortier 6 mortification 4 mortified 7 mortify 1 mortifying 1 mortimer 1 morton 1 mosaic 2 moschcowitz 1 moscou 5 moscovite 1 moscovites 5 moscow 723 moses 5 mosetig 2 moskowa 2 moskva 8 moslem 1 mosque 2 mosquee 1 mosquito 1 mosquitoes 2 moss 6 most 908 mostly 11 mot 7 mother 312 motherland 1 motherless 1 motherly 2 mothers 12 motif 1 motile 5 motion 60 motioned 2 motionless 35 motions 2 motivate 1 motivation 1 motive 17 motives 14 motley 3 motor 29 motorist 1 motorway 1 mots 2 mott 1 mottled 1 mottling 1 motto 5 mould 4 moulded 4 moulton 4 mound 3 mounds 1 mounseer 1 mount 17 mountain 17 mountainous 2 mountains 27 mounted 43 mounting 10 mourn 1 mourned 1 mournful 11 mournfully 3 mourning 8 mouse 6 mousseline 1 moustache 3 moustached 1 mouth 164 mouthed 4 mouthpiece 1 mouths 11 mouton 3 movable 17 move 101 moved 248 movement 347 movements 115 moves 24 movie 1 moving 143 mowed 1 mowers 1 mowing 4 mown 6 moyens 1 moyka 1 mozhaysk 25 mr 360 mrs 59 ms 2 mt 1 much 671 mucin 1 mucius 1 muckrakers 2 muckraking 2 muco 3 mucoid 3 mucous 96 mucus 1 mud 36 muddle 3 muddled 3 muddles 4 muddling 1 muddy 19 muddying 1 mudrov 1 muff 1 muffled 6 mufti 1 mug 2 mugwump 2 mugwumps 3 muir 2 mule 2 mules 2 mulled 1 multi 2 multilocular 5 multimedia 1 multinuclear 2 multiple 95 multiplication 3 multiplicity 4 multiplied 8 multiply 8 multiplying 3 multitude 8 multitudes 1 multitudinous 2 mumbled 2 mumbling 4 mummers 11 mummification 3 mummy 7 munched 2 munching 7 mundane 2 mundi 1 munich 1 municipal 18 municipalities 3 municipality 4 munificent 1 munition 4 munitions 6 munro 3 murat 53 murder 30 murdered 10 murderer 11 murderers 2 murdering 2 murderous 5 murders 6 murfreesboro 1 murky 1 murmur 16 murmured 18 murmurs 4 murphy 8 murray 1 muscle 152 muscles 204 muscovites 3 muscovy 1 muscular 74 muscularis 1 muscularly 3 musculo 8 muse 1 museum 21 museums 3 mushroom 5 mushrooms 3 music 56 musical 9 musician 4 musicians 5 musket 19 musketeer 2 musketeers 1 musketoon 2 musketry 21 muskets 22 muslin 5 muss 1 must 955 mustache 45 mustached 2 mustaches 11 mustard 6 muster 3 mustered 7 mustn 14 musty 1 mutation 1 mutations 1 mute 5 muter 1 mutilans 1 mutilated 2 mutilation 1 mutineers 1 mutinous 1 mutiny 3 mutter 4 muttered 74 muttering 23 mutterings 1 mutton 11 mutual 20 mutually 7 muzzle 8 muzzled 1 my 2249 myasnitski 2 mycetoma 7 mycotic 1 myelia 1 myelin 5 myelitis 3 myeloid 1 myeloma 28 myelomatosis 1 myo 2 myoma 8 myomas 1 myositis 12 myriads 1 myself 227 mysteries 9 mysterious 38 mysteriously 3 mystery 39 mystic 7 mystical 5 mysticism 3 myth 3 mythological 1 mythology 1 mytishchi 12 myxo 4 myxoma 10 myxomatous 8 n 62 na 3 naevi 10 naevoid 6 naevus 27 nag 2 nail 60 nails 32 naiv 1 naive 25 naively 8 naivete 4 naked 25 name 262 named 38 namely 45 names 29 namesake 2 naming 4 nan 1 nancy 1 nankeen 1 nap 8 nape 5 naphthol 1 napkin 11 napkins 1 naples 13 napoleon 607 napoleonic 16 napoleons 4 narcotisation 1 nares 1 narragansett 2 narrate 2 narrated 4 narrating 2 narration 2 narrative 25 narratives 2 narrator 3 narrators 1 narrow 61 narrowed 8 narrowing 11 narrowings 1 narrowly 6 narrows 1 naryshkin 4 naryshkina 1 naryshkins 1 nasal 21 nascent 1 nashville 5 nasi 3 naso 3 nastasya 7 nasty 12 nataisha 1 natal 2 natalia 1 natalie 14 nataly 5 natalya 2 natasha 1212 nates 1 nathanael 1 nathaniel 4 natiform 2 nation 169 national 285 nationalism 23 nationalist 3 nationalists 1 nationalities 9 nationality 10 nationalized 4 nationalizing 1 nationally 1 nations 103 native 39 natives 12 nativity 2 natural 145 naturalists 2 naturalization 1 naturalized 2 naturally 59 nature 170 natured 34 naturedly 6 natures 2 naught 5 naughty 4 nausea 4 nautical 1 naval 41 navigable 3 navigation 16 navigators 1 navvies 1 navvy 1 navy 38 nay 3 nays 2 nd 6 ne 12 neapolitans 1 near 293 nearby 2 neared 1 nearer 84 nearest 50 nearing 8 nearly 176 nearness 11 neat 8 neatly 11 neatness 2 nebraska 24 nebulous 1 necessarily 31 necessary 327 necessitate 4 necessitates 5 necessitating 2 necessities 4 necessity 86 neck 203 necked 2 necklace 4 necklaces 1 necks 8 necktie 1 necrosed 8 necroses 1 necrosis 51 necrotic 3 ned 2 nee 1 need 160 needed 79 needful 5 needing 1 needle 40 needles 24 needless 2 needlessly 3 needling 6 needn 3 needs 43 needy 1 nefarious 1 neffer 1 negation 2 negative 27 negatived 1 neglect 14 neglected 19 neglecting 3 negligence 10 negligent 1 negligently 1 negligible 5 negotiate 12 negotiated 7 negotiates 1 negotiating 3 negotiation 11 negotiations 33 negotiator 2 negro 22 negroes 27 nehmen 1 neighbor 28 neighborhood 11 neighborhoods 1 neighboring 20 neighbors 28 neighbour 3 neighbourhood 17 neighbouring 14 neighbours 5 neighed 2 neighing 2 neihardt 2 neilsen 1 neisser 1 neithah 1 neither 168 nelson 1 neo 5 neonatorum 2 neoplasm 2 neoplasms 1 nephew 26 nephews 1 nephritis 1 nephroma 1 nerve 324 nerves 149 nervorum 1 nervous 54 nervously 8 nervousness 2 neskuchny 1 ness 1 nest 7 nestlings 1 nests 2 nesvitski 71 net 28 nether 1 netherland 2 netherlands 1 nets 1 network 13 neuralgia 19 neuralgic 6 neurasthenia 1 neurectomy 2 neuritis 21 neuro 23 neuroglia 1 neurolemma 5 neurolysis 2 neuroma 24 neuromas 4 neuromata 1 neuromatosa 3 neuron 3 neuropathic 6 neuroses 2 neurotic 5 neutral 15 neutralise 5 neutralised 1 neutralising 4 neutrality 16 neutrals 3 neutrophile 3 nevada 13 neve 2 never 593 neverovski 1 nevertheless 39 neville 19 new 1211 newark 2 newburyport 1 newby 2 newcastle 1 newcomer 17 newcomers 8 newer 3 newest 1 newfoundland 1 newlands 2 newly 40 newness 1 newport 3 news 224 newsboys 1 newsletter 7 newsletters 2 newsmonger 1 newspaper 21 newspapers 31 newton 4 newtown 1 next 277 nexus 1 ney 10 nez 2 ni 2 niagara 2 nibbled 2 nicaragua 6 nice 53 nicely 9 nicer 1 nicest 1 niceties 1 niches 1 nicholas 635 nicht 2 nick 1 nickel 1 nickname 4 nicknamed 4 nidus 2 niece 21 nieces 1 niemen 21 nigel 1 nigger 1 nigh 5 night 385 nightcap 11 nightfall 1 nightingales 1 nightly 1 nightmare 4 nights 22 nightshirt 1 nighttime 1 nikanorovich 1 nikita 4 nikitenko 1 nikitski 2 nikolaevich 5 nikolenka 12 nikolievich 1 nikolievna 4 nikolski 1 nikulins 1 nile 3 nimble 2 nimrod 1 nina 1 nine 64 nineteen 5 nineteenth 22 nineties 1 ninety 7 ninth 9 nip 2 nipper 1 nipple 6 nipples 1 nippon 1 nitrate 7 nitric 4 nitrogen 3 nitrogenous 1 nizhegorod 4 nizhni 8 nl 1 nm 1 no 2348 noah 1 nobility 31 noble 48 nobleman 11 noblemen 5 nobler 1 nobles 9 noblesse 1 noblest 7 nobodies 1 nobody 36 nocturnal 6 nocturne 1 nocturnes 1 nod 8 nodded 46 nodding 12 node 6 nodes 9 nodosum 2 nods 2 nodular 14 nodularly 2 nodulated 3 nodule 10 nodules 38 noel 1 noguchi 3 noise 38 noised 1 noiseless 6 noiselessly 11 noisily 8 noisome 1 noisy 10 nom 2 noma 3 nomenclature 2 nominal 8 nominally 6 nominate 5 nominated 22 nominating 9 nomination 14 nominee 3 non 41 nonchalance 1 nonchalantly 1 noncommissioned 12 nonconformist 1 nondescript 1 none 110 nonentity 1 nonetheless 1 nonhuman 1 nonintervention 1 nonmilitary 1 nonmoral 1 nonobservance 4 nonperformance 1 nonproprietary 2 nonreceipt 1 nonrecognition 2 nonsense 86 nook 2 noon 8 noonday 1 noose 1 nor 280 norfolk 2 norm 1 normal 109 normalize 1 normalized 1 normally 11 norman 1 normandy 1 north 227 northeast 4 northerly 2 northern 96 northerners 1 northumberland 1 northward 5 northwest 48 northwesterly 2 northwestern 3 norton 8 norway 3 norwood 2 nos 1 nose 103 nosed 11 noses 6 nostitz 2 nostrils 6 not 6626 notabilities 3 notable 5 notables 3 notably 15 notch 2 note 115 notebook 9 noted 17 notepaper 2 notes 64 noteworthy 6 nothing 646 nothingness 2 notice 98 noticeable 16 noticeably 4 noticed 191 notices 8 noticing 57 notified 1 notifies 3 notify 1 notifying 1 noting 10 notion 16 notions 8 notochord 1 notorious 8 notoriously 2 notre 3 notres 1 notwithstanding 9 nought 1 noun 2 nourish 7 nourished 14 nourishing 7 nourishment 13 nous 8 nov 1 nova 1 novarsenbillon 1 novel 20 novelist 2 novels 5 novelty 9 november 41 novgorod 3 novice 1 novices 2 novikov 1 novo 3 novocain 3 novocaine 1 novoe 2 novosiltsev 5 now 1697 nowadays 18 nowhere 24 noxa 1 noxious 1 nuclear 6 nucleated 2 nuclei 4 nucleinate 2 nucleus 6 nudged 3 nudging 2 nueces 2 nuisance 8 nuisances 2 null 11 nullification 35 nullified 2 nullifiers 2 nullifies 1 nullify 3 nullifying 2 numb 3 numbed 1 number 301 numbered 8 numbering 3 numbers 65 numbness 7 numerical 5 numerically 2 numerous 50 numskull 1 nun 3 nunnery 3 nuns 2 nur 1 nurse 70 nursed 7 nursemaids 1 nursery 22 nurses 9 nursing 13 nurtured 1 nut 10 nutrient 4 nutriment 2 nutrition 16 nuts 6 nutshell 1 ny 1 nymphe 1 o 257 oak 30 oaks 3 oakshott 7 oar 1 oars 1 oasis 1 oatfield 2 oath 26 oaths 5 oats 15 obdurate 4 obedience 14 obedient 5 obediently 4 ober 1 oberlin 2 obese 1 obey 29 obeyed 9 obeying 7 obeys 2 object 103 objected 13 objection 7 objectionable 5 objections 19 objective 4 objectives 1 objectors 1 objects 18 obligation 17 obligations 37 obligatory 2 oblige 8 obliged 32 obliges 1 obliging 2 obligingly 1 oblique 4 obliquely 2 obliquity 1 obliterans 2 obliterate 4 obliterated 17 obliterates 3 obliterating 4 obliteration 14 obliterative 1 oblivion 5 oblivious 5 obnoxious 7 obolenski 6 obregon 1 obs 1 obscure 13 obscured 6 obscurely 1 obscures 1 obscurities 1 obscurity 7 obsequious 1 obsequiously 2 observance 4 observant 5 observantly 2 observation 39 observations 13 observe 37 observed 131 observer 13 observers 6 observes 3 observing 21 obsessed 1 obsolete 4 obstacle 12 obstacles 6 obstinacy 7 obstinate 13 obstinately 5 obstruct 4 obstructed 10 obstructing 3 obstruction 13 obtain 42 obtainable 6 obtained 75 obtaining 18 obtains 3 obtrude 1 obtruded 1 obturator 2 obtuseness 1 obviate 2 obviates 1 obvious 68 obviously 38 occasion 51 occasional 24 occasionally 89 occasioned 7 occasions 16 occident 1 occipital 5 occiput 2 occlude 3 occluded 9 occludes 8 occluding 6 occlusion 9 occlusive 1 occupancy 1 occupant 5 occupants 1 occupation 52 occupational 1 occupations 26 occupied 116 occupiers 1 occupies 3 occupy 24 occupying 12 occur 203 occuring 1 occurred 121 occurrence 67 occurrences 7 occurring 25 occurs 153 ocean 14 oceanic 1 ochakov 1 oct 1 octavo 1 october 51 octogenarians 1 ocular 2 oculi 1 oculomotor 1 odd 9 oddly 1 odds 1 ode 1 oder 3 odessa 3 odious 5 odium 2 odontoma 12 odontomas 3 odor 6 odour 20 odyntsova 1 oe 2 oedema 72 oedematous 26 oesophagus 5 oestreicher 1 oeuvre 2 oeuvres 3 of 40025 off 634 offahd 1 offence 4 offences 2 offend 6 offended 36 offender 3 offenders 10 offending 3 offense 17 offenser 1 offenses 2 offensive 29 offensively 2 offer 57 offered 87 offering 24 offerings 2 offers 14 offhand 3 office 131 officer 463 officers 316 offices 37 official 91 officially 9 officials 33 officiating 1 officier 1 officious 1 offset 11 offshoots 2 offspring 8 oft 2 often 443 oftener 6 oftenest 6 ogden 1 ogg 21 oglethorpe 2 oh 410 ohio 92 oho 1 oil 39 oiled 1 oils 1 oily 4 ointment 18 ointments 3 ojibways 1 ok 1 oka 2 okay 2 oklahoma 15 old 1180 oldenburg 12 older 45 oldest 6 ole 1 oleate 3 olecranon 8 olga 2 olin 1 olive 7 oliver 2 olmutz 22 olney 1 om 1 omaha 1 omelet 1 omen 4 omens 1 omental 3 omentum 3 ominous 10 ominously 1 omission 4 omit 6 omitted 9 omitting 5 omne 1 omnipotence 1 omnipresent 1 omniscience 1 on 6643 once 569 oncoming 1 one 3371 onerous 3 ones 77 oneself 17 ong 1 onion 2 onions 1 online 15 onlooker 1 onlookers 5 only 1873 onrush 1 onset 37 onslaught 1 ont 1 onterkoff 1 onto 71 onufrich 1 onward 2 onwards 6 onya 1 onychia 10 oo 9 ooh 11 oooh 1 ooze 4 oozes 1 oozing 11 op 8 opacities 2 opal 1 opaque 2 opecacano 1 open 325 opened 217 opening 146 openings 11 openly 24 openness 1 opens 7 openshaw 16 openwork 1 opera 11 operable 1 operate 20 operated 8 operatic 1 operating 33 operation 214 operational 1 operations 78 operative 53 operator 5 operators 1 ophthalmia 5 ophthalmic 5 ophthalmoscope 1 ophthalmoscopic 1 opiates 2 opinion 218 opinions 39 opisthotonos 2 opium 23 opponens 1 opponent 23 opponents 30 opportune 4 opportunities 18 opportunity 66 oppose 14 opposed 54 opposing 20 opposite 80 opposition 96 oppress 4 oppressed 18 oppression 11 oppressive 8 oppressively 1 oppressors 2 opsonic 2 opsonin 1 opsonins 3 opt 1 optic 1 optical 1 optimism 2 optimistic 1 option 2 optional 1 opulence 3 or 5352 oracle 1 oral 2 orange 23 oranges 1 oration 3 orations 6 orator 10 orators 9 oratory 3 orb 3 orbit 20 orbital 5 orchard 1 orchards 1 orchestra 12 ord 3 ordain 2 ordained 3 ordains 1 ordeal 2 order 404 ordered 148 orderers 2 ordering 7 orderlies 14 orderly 48 orders 223 ordinance 14 ordinances 2 ordinarily 6 ordinary 102 ordinated 1 ordnance 3 ordre 5 ordynka 1 ore 3 oregon 37 oreille 1 orel 12 ores 2 org 26 organ 16 organic 13 organically 1 organisation 7 organisational 1 organise 1 organised 10 organiser 1 organism 39 organismal 1 organisms 125 organization 42 organizational 1 organizations 14 organize 7 organized 69 organizer 2 organizing 9 organs 58 orgies 3 orient 7 oriental 13 orientalis 2 orientals 1 orientation 1 orifice 9 orifices 2 origin 78 original 93 originality 6 originally 12 originate 25 originated 10 originates 23 originating 10 originator 5 origins 6 oris 7 orlando 2 orleans 31 orlov 16 orlovs 1 ormstein 2 ornament 4 ornamental 3 ornaments 3 orphan 4 orphanage 2 orphans 3 orsha 5 orthodox 9 orthopaedic 1 orthotonos 2 oryzoidea 2 os 3 oscar 1 oscillated 1 oscillates 1 oscillating 1 oscillation 1 ossea 3 osseous 20 ossible 2 ossificans 4 ossification 36 ossifications 2 ossified 6 ossify 1 ossifying 38 ossis 2 ossium 4 ostend 3 ostensible 1 ostensibly 1 ostentatiously 1 osteo 17 osteoblasts 6 osteochondritis 2 osteoclasts 1 osteogenesis 2 osteogenetic 1 osteoid 2 osteoma 20 osteomalacia 10 osteomas 3 osteomyelitis 79 osteophytes 4 osteoporosis 3 osteopsathyrosis 3 osteosarcoma 1 osteosclerosis 1 osteotomies 3 osteotomy 1 ostermann 8 ostitis 12 ostlers 2 ostralitz 1 ostrich 3 ostrogorski 1 ostrolenka 1 ostrovna 3 other 1502 others 410 otherwise 71 otis 9 otkupshchik 2 otorrhoea 1 otradnoe 33 otto 1 ottoman 3 ou 3 oublie 1 oudinot 1 ought 115 ouh 2 oui 1 ounce 13 ounces 7 our 1066 ours 35 ourselves 78 ousting 1 out 1987 outbreak 14 outbreaks 2 outbuildings 1 outburst 14 outbursts 3 outcast 1 outcome 35 outcries 1 outcry 2 outdated 3 outdistanced 1 outdo 1 outdoing 1 outdone 4 outdoor 3 outer 29 outfit 4 outfits 1 outflank 7 outflanked 1 outflanking 2 outflankings 1 outflow 2 outgallop 1 outgrowth 3 outgrowths 4 outhouse 1 outhouses 1 outing 1 outlaw 1 outlawed 4 outlaws 2 outlays 3 outlet 12 outlets 1 outline 26 outlined 6 outlines 5 outlining 1 outlive 2 outlived 2 outlook 10 outlooks 2 outlying 10 outnumbered 2 outpost 4 outposts 16 output 13 outrage 2 outraged 1 outrageous 2 outrages 4 outraging 1 outran 1 outre 2 outright 12 outrivaled 1 outset 13 outside 110 outsider 2 outsiders 1 outsides 1 outskirts 7 outspoken 5 outspread 4 outstanding 15 outstretched 10 outstripped 3 outstripping 2 outstrips 1 outturned 2 outvying 1 outward 9 outwardly 2 outwards 3 outweigh 2 outweighs 1 oval 11 ovale 1 ovarian 3 ovary 10 ovations 1 oven 7 ovens 1 over 1282 overall 4 overalls 2 overbalance 1 overbalancing 1 overbear 1 overbearing 1 overboard 2 overboots 1 overborne 4 overburdened 1 overcame 7 overcast 1 overclean 2 overcoat 26 overcoats 7 overcome 32 overcoming 5 overcrowded 1 overcrowding 2 overdid 1 overdue 1 overestimated 3 overfat 1 overfed 1 overflow 2 overflowed 5 overflowing 9 overgrown 8 overgrowth 25 overgrowths 3 overhanging 2 overhauled 5 overhauling 1 overhead 6 overhear 4 overheard 8 overhearing 1 overhung 1 overjoyed 1 overlaid 1 overland 9 overlap 3 overlapping 4 overlay 1 overlie 1 overloaded 1 overlook 3 overlooked 13 overlooking 2 overlying 51 overnight 2 overpayment 1 overpowered 3 overpowering 4 overran 1 overresist 2 overriding 1 overrule 1 overruled 1 overrun 2 oversea 1 overseas 6 overseen 1 overseer 6 overseers 2 overshadow 2 overshadowed 3 overshadowing 1 overshoes 1 oversight 1 overstepped 1 overstocked 1 overstrained 2 overstretched 1 overstretching 2 overstrung 1 overt 4 overtake 12 overtaken 8 overtakes 1 overtaking 7 overthrow 20 overthrowing 2 overthrown 9 overtook 16 overtopped 2 overture 2 overtures 1 overturn 1 overturned 3 overturning 1 overview 1 overwhelm 5 overwhelmed 9 overwhelming 4 overwhelmingly 1 overwork 1 ovo 1 ovoid 2 ovum 1 owe 20 owed 14 owen 1 owes 1 owing 47 owl 2 own 785 owned 17 owner 32 owners 44 ownership 29 owning 7 owns 7 ox 2 oxaluria 2 oxaluric 1 oxen 5 oxford 11 oxfordshire 1 oxidation 2 oxide 2 oxidising 1 oxygen 17 oxygenated 3 oxygenation 2 oz 1 ozaena 1 ozheg 3 ozoena 2 ozone 1 p 66 pa 15 pace 40 paced 36 paces 38 pachy 1 pachydermatocele 1 pachymeningitis 1 pacific 79 pacification 3 pacifier 1 pacify 2 pacifying 2 pacing 26 pack 31 package 3 packages 1 packed 40 packer 1 packet 11 packets 1 packhorse 1 packing 34 packs 7 pad 20 padded 3 paddington 7 paddle 3 padlocked 1 padlocks 1 padre 1 pads 7 pagan 1 page 59 pageboy 1 pagenstecher 1 pages 18 paget 17 pago 2 pagodas 1 pagodes 1 pahlen 1 paid 106 pail 2 pails 1 pain 303 paine 20 pained 7 painful 84 painfully 26 painless 16 painlessly 4 pains 42 painstaking 5 painstakingly 3 paint 10 painted 33 painter 3 painters 1 painting 6 paintings 2 pair 40 pairs 8 pakhra 4 pal 4 palace 33 palaces 3 palatal 2 palate 16 pale 165 paleness 1 paler 7 palestine 1 palings 2 pall 2 pallet 1 palliated 1 palliation 1 palliative 4 pallid 3 pallida 5 pallidum 3 pallor 11 palm 34 palmar 10 palmaris 3 palmer 3 palms 6 palpable 10 palpably 2 palpated 4 palpating 3 palpation 8 palpebral 1 palpitating 3 pals 1 palsies 1 palsy 5 palter 1 paltry 2 pampered 1 pamphlet 5 pamphleteer 1 pamphleteers 1 pamphlets 14 pan 4 panama 24 pancake 3 pancras 1 pancreas 2 pane 2 panel 6 panelled 1 panelling 1 panes 3 pang 3 pangs 1 panic 20 panics 3 panins 1 panoply 1 panorama 4 pans 1 panted 3 panting 13 pantry 5 papa 50 papal 1 paper 177 papers 114 paperweight 2 paperwork 5 papier 1 papillae 6 papillary 4 papilloma 12 papillomas 2 papillomatous 1 papular 6 papule 4 papules 9 paquelin 3 par 5 para 1 parables 1 parade 20 paraded 1 parades 3 parading 2 paradise 2 paradol 1 paradoxical 1 paraffin 21 paragraph 34 paragraphs 10 paraissent 1 parait 1 paraldehyde 2 parallel 17 parallelogram 1 parallels 1 paralysed 19 paralyses 4 paralysis 75 paralytic 4 paralyze 4 paralyzed 6 paralyzing 4 paramandibular 1 parameter 1 paramore 2 paramount 2 parapet 5 paraphrase 1 paraplegia 5 parasite 3 parasites 4 parasitic 7 parce 1 parcel 5 parceled 1 parceling 1 parcels 4 parched 6 parchment 7 parchments 1 pardon 21 pardoned 1 pardonner 1 pardons 3 pared 2 parent 19 parental 3 parents 43 paresis 2 pari 1 parietal 4 parietes 2 paring 7 paris 80 parish 8 parisian 3 parisienne 1 parity 3 park 15 parker 6 parking 1 parkman 4 parlance 1 parley 1 parleys 2 parliament 65 parliamentary 9 parliaments 2 parlor 2 parlour 1 parma 1 parodying 1 parole 3 paroling 1 paronychia 1 parotid 9 parotitis 2 paroxysm 4 paroxysmal 2 paroxysms 5 parquet 4 parqueted 1 parr 2 parrot 5 parry 1 parson 1 parsonage 1 parsons 1 part 704 partake 3 partakes 2 parted 22 partial 23 partiality 3 partially 10 participant 4 participants 1 participate 4 participated 3 participates 1 participating 1 participation 14 particle 5 particles 10 particular 92 particularly 174 particulars 11 partie 1 parties 99 parting 8 partisan 11 partisans 4 partisanship 4 partite 1 partition 7 partitions 2 partly 56 partner 34 partners 7 partnership 4 partnerships 3 parts 296 parturition 2 party 298 pas 23 pashette 1 pass 154 passage 110 passages 18 passe 1 passed 367 passenger 8 passengers 12 passers 3 passes 22 passing 134 passion 35 passionate 32 passionately 23 passions 29 passive 32 passively 2 passport 4 passports 4 passu 1 password 4 past 223 paste 11 pasteur 5 pastilles 1 pastime 5 pastor 2 pastoral 1 pasturage 1 pasture 4 pastured 1 pastures 2 pasty 1 pat 3 patch 14 patches 48 patchwork 1 pate 1 patella 12 patellae 1 patellar 3 patent 7 patentee 1 paternal 7 paternity 1 paterson 4 patersons 1 path 100 pathetic 18 pathetically 1 pathfinder 1 pathfinders 1 pathogenic 17 pathognomic 1 pathognomonic 1 pathological 36 pathologist 2 pathologists 1 pathology 8 pathos 1 paths 9 pathway 2 patience 26 patient 383 patiently 5 patients 59 patriarch 2 patrick 10 patriot 18 patriotic 22 patriotically 2 patriotism 19 patriotisme 2 patriots 15 patrol 8 patrolled 2 patrolling 1 patrols 2 patron 4 patronage 9 patroness 2 patronizing 4 patrons 2 patroons 1 patte 1 patted 14 patter 1 pattered 2 pattern 7 patterns 1 patties 1 patting 7 patty 1 paul 16 paula 1 paulucci 14 pauncefote 1 paunch 1 pauper 2 paupers 1 pause 40 paused 79 pauses 2 pausing 9 pauvre 6 paved 3 pavement 17 pavilion 3 pavlograd 20 pavlograds 9 pavlovich 4 pavlovna 152 paw 2 pawed 1 pawing 2 pawn 2 pawnbroker 6 pawns 1 paws 1 pawtucket 1 paxson 11 pay 128 payable 5 paying 38 paymaster 2 payment 39 payments 13 payne 4 pays 5 pe 2 pea 14 peace 227 peaceable 1 peaceably 3 peaceful 30 peacefully 8 peacetime 2 peaches 1 peak 4 peaked 4 peaks 3 peal 2 peals 2 peanuts 1 pear 3 pearl 4 pearls 9 pearly 2 peas 3 peasant 78 peasantry 1 peasants 127 pebble 1 pebbles 1 peche 1 peck 2 pecked 1 pectoral 10 pectoralis 3 pectorals 1 pectoris 2 peculation 2 peculiar 84 peculiarities 12 peculiarity 9 peculiarly 14 pecuniary 3 pedal 1 pedantic 2 pedantically 1 peddler 1 peddlers 1 pedestal 3 pedestrian 2 pedestrians 2 pedicle 5 pediculosis 1 pedunculated 13 peeled 1 peeling 2 peep 2 peeped 7 peeping 3 peer 4 peerage 1 peered 5 peeress 1 peering 12 peers 2 peevishly 1 peg 4 peggy 1 pegs 5 peking 3 pelageya 16 pelisses 1 pellet 2 pellets 8 pellicle 2 pelt 1 pelvic 6 pelvis 30 pemberton 1 pen 25 penal 1 penalized 3 penalizing 1 penalties 10 penalty 3 penance 1 pence 4 pencil 10 pencils 2 pending 7 pendulous 4 pendulum 1 penetrans 1 penetrate 11 penetrated 10 penetrating 18 penetration 2 peninsula 1 penis 16 penitence 1 penitent 2 penitentiary 1 penn 14 penned 3 pennies 6 penniless 1 penns 1 pennsylvania 95 penny 7 pens 5 pension 3 pensioner 1 pensioners 1 pensions 9 pensive 6 pensively 5 pent 1 penthouse 2 penthouses 1 pentonville 1 penza 6 peons 2 people 899 peopled 4 peoples 45 pepper 2 peppered 2 pequots 2 per 86 perambulator 1 perceive 14 perceived 6 perceives 1 perceiving 1 percent 1 percentage 5 perceptible 14 perceptibly 5 perception 13 perceptions 1 perch 4 percha 1 perchance 1 perched 5 perchloride 2 percolating 1 percussed 1 percussing 1 percussion 4 percy 2 perdere 1 perdicaris 2 pere 4 peremptorily 3 peremptory 2 perfect 39 perfecting 4 perfection 14 perfectly 45 perfidiousness 1 perforate 5 perforated 12 perforates 7 perforating 16 perforation 8 perforations 6 perform 27 performance 16 performances 4 performed 56 performer 3 performing 15 perfume 5 perfumed 5 perhaps 208 peri 33 pericardium 2 perichondritis 2 perichondrium 2 pericranium 1 periglandular 1 peril 7 perilous 4 perilously 1 perils 7 perimuscular 1 perineum 5 perineuritis 2 perineurium 2 period 203 periodic 6 periodical 1 periodically 4 periodicals 1 periodicity 1 periods 35 periosteal 39 periosteally 2 periosteum 76 periostitis 7 peripheral 40 periphery 9 periphlebitis 2 perish 21 perished 22 perishes 3 perishing 9 peristalsis 1 peritendinous 1 peritoneal 15 peritoneum 10 peritonitis 6 perivascular 2 perkhushkovo 2 permanent 64 permanently 20 permanganate 1 permeate 2 permeated 9 permeates 1 permeation 7 permissible 3 permission 52 permit 31 permits 5 permitted 22 permitting 6 permutations 1 pernetti 2 pernicious 4 pernio 2 peroneal 9 peronei 5 peroneus 2 peronskaya 14 peroxide 10 perpendicular 1 perpetrated 4 perpetrators 2 perpetual 17 perpetually 1 perpetuate 2 perpetuating 1 perplex 2 perplexed 12 perplexing 10 perplexity 29 perry 5 persecution 6 perseverance 5 persevered 6 persevering 4 perseveringly 1 pershing 6 persia 2 persian 10 persist 20 persisted 5 persistence 15 persistent 40 persistently 7 persisting 2 persists 11 person 185 personage 16 personages 14 personal 91 personalities 3 personality 16 personally 37 personate 1 personen 1 personification 3 personified 1 personnel 2 persons 119 perspective 3 perspiration 13 perspire 1 perspired 4 perspiring 15 persuade 14 persuaded 14 persuading 2 persuasion 3 persuasions 2 persuasiveness 2 pertaining 2 pertinaciously 1 pertinently 2 perturb 1 perturbation 1 perturbed 9 peru 4 perusal 1 pervade 1 pervaded 3 pervades 1 perverse 1 perversion 1 pervious 1 pes 2 pest 1 pestered 2 pestering 1 pestewing 1 pesthouse 1 pestilence 1 pet 17 petal 1 petenka 1 peter 52 petered 1 peterhof 1 peterkin 1 peters 1 petersbourg 1 petersburg 247 petersfield 1 peterson 11 petisenfans 1 petit 4 petite 1 petition 33 petitioned 4 petitioner 2 petitioners 3 petitioning 4 petitions 15 petrarch 1 petrified 2 petrifying 2 petrol 2 petroleum 1 petropol 1 petrous 1 petrov 2 petrovich 3 petrovna 3 petrusha 2 petrushka 1 pets 1 petted 4 petticoat 3 petticoats 2 pettifogging 1 pettiness 2 petting 1 petty 17 petulance 1 petulantly 2 petya 268 peu 2 peuples 2 peur 2 pew 7 pfeiler 1 pfuel 47 pg 6 pgdp 4 pglaf 16 phaeton 3 phagedaena 5 phagedaenic 4 phagocytes 13 phagocytic 2 phagocytosis 6 phalangeal 8 phalanges 11 phalanx 21 phantasm 1 phantom 1 phantoms 1 pharmacopoeial 1 pharyngeal 8 pharyngitis 1 pharynx 16 phase 21 phases 9 pheasant 1 phenomena 37 phenomenon 13 phil 1 philadelphia 65 philanthropic 1 philanthropist 1 philanthropy 7 philip 8 philippe 2 philippine 14 philippines 29 phillips 7 philology 1 philosopher 7 philosophers 5 philosophic 5 philosophical 4 philosophically 1 philosophies 1 philosophize 1 philosophizing 2 philosophy 18 phimosis 5 phlebitic 1 phlebitis 19 phlebolith 1 phleboliths 1 phlegmasia 2 phlegmon 2 phlegmonous 1 phlyctenular 1 phoebe 1 phoenix 2 phone 2 phosphates 1 phosphorus 1 photius 2 photo 1 photograph 41 photographer 1 photographic 1 photographs 6 photography 4 photophobia 1 phrase 34 phrased 5 phrases 14 phrenic 4 phthisis 3 physical 59 physically 22 physician 6 physics 5 physiognomy 2 physiological 15 physiology 6 piano 4 pick 20 picked 39 pickens 1 picket 12 pickets 3 picking 15 pickled 2 picnic 1 picric 6 picture 28 pictured 16 pictures 22 picturesque 7 picturesquely 1 picturesqueness 1 picturing 7 pie 5 piebald 1 piece 61 piecemeal 1 pieces 28 piedmont 1 piedmontese 1 pier 3 pierce 13 pierced 9 piercing 14 piercingly 6 pierre 1964 piers 2 pies 1 piety 3 pig 9 pigeon 4 pigeonholes 1 pigeons 1 pigment 16 pigmentation 14 pigmented 19 pigments 1 pigmy 1 pigs 2 pigtail 1 pike 6 pikestaff 1 pile 9 piled 8 piles 6 pilgrim 9 pilgrimage 3 pilgrimages 1 pilgrims 20 piling 2 pill 1 pillage 8 pillaged 3 pillaging 4 pillar 4 pillars 6 pillow 28 pillows 14 pills 6 pilot 3 piloted 2 pilots 1 pimple 1 pimples 1 pin 18 pince 2 pinch 11 pinched 4 pinchot 1 pinckney 3 pinckneys 1 pine 9 pineapple 1 pineapples 2 pining 2 pink 27 pinkish 4 pinnacle 1 pinnacles 1 pinned 1 pinning 2 pins 5 pint 6 pints 4 pioneer 13 pioneering 3 pioneers 33 pious 1 pipe 56 pipes 16 piping 2 pips 12 piquant 1 piquet 1 piracies 1 pirate 3 pirates 4 pirie 1 pistil 1 pistol 51 pistols 9 piston 2 pit 15 pitch 16 pitched 11 pitcher 1 pitchfork 1 pitching 1 piteous 14 piteously 7 pithy 1 piti 18 pitiable 7 pitied 14 pities 1 pitiful 15 pitiless 4 pits 4 pitt 15 pittance 1 pitted 6 pitting 4 pittsburgh 10 pituitary 3 pity 75 pitying 2 pizarro 1 placarded 1 placated 2 place 673 placed 182 placement 1 placenta 1 placental 1 places 89 placid 2 placing 28 plague 5 plagued 2 plaid 1 plain 108 plainer 4 plainly 39 plainness 7 plains 13 plaintiff 1 plaintive 5 plaintively 1 plait 7 plaited 5 plaiting 2 plaits 3 plan 159 plane 5 planed 1 planes 4 planet 3 planets 5 plank 4 planked 1 planking 1 planks 12 planned 15 planner 1 planning 15 plannings 1 plans 85 plant 12 plantagenet 1 plantar 3 plantaris 3 plantation 18 plantations 27 planted 16 planter 18 planters 59 planting 61 plants 10 plashed 1 plasma 6 plaster 19 plastered 2 plasterers 2 plastic 4 plastun 1 plat 1 plate 19 plateau 3 plateful 1 platelets 1 plates 15 platform 52 platforms 10 plating 1 platino 2 platitudes 1 plato 1 platoche 3 platon 26 platonic 1 platoon 4 platoons 1 platosha 1 platov 12 platovs 1 platt 9 plattsburgh 1 plaudits 1 plausible 6 play 95 played 60 player 8 players 6 playfellow 1 playful 6 playfully 3 playfulness 2 playing 59 playmate 2 plays 17 plea 20 plead 2 pleaded 6 pleading 5 pleadingly 1 pleads 1 pleas 7 pleasant 96 pleasanter 4 pleasantest 1 pleasantly 15 please 172 pleased 95 pleases 7 pleasing 9 pleasurable 1 pleasure 139 pleasures 13 pledge 10 pledged 8 pledges 2 plenary 1 plentiful 7 plenty 23 plethoric 1 pleura 11 pleural 2 pleurisy 2 pleurodynia 3 pleurosthotonos 2 pleurs 1 plexiform 4 plexus 20 plexuses 2 pliable 2 pliant 1 plied 3 plight 12 plighted 2 plodding 1 plood 1 plot 12 plots 5 plotted 2 plottings 1 plough 1 ploughed 1 plover 1 plow 9 plowed 6 plowing 1 plowland 1 plowmen 2 plows 5 pluck 3 plucked 6 plucking 2 plug 2 plugged 1 plugging 1 plugs 1 pluie 1 plum 1 plumage 2 plumb 1 plumber 5 plumbers 1 plume 4 plumed 2 plumes 12 plump 32 plumped 3 plumper 1 plums 4 plunder 10 plundered 6 plunderers 3 plundering 4 plunge 4 plunged 15 plunging 5 plunies 1 plural 3 plurality 1 plus 5 plush 3 plutarch 4 plutocracy 1 ply 1 plying 1 plymouth 9 pm 1 pmb 1 pneumo 4 pneumococcal 7 pneumococci 2 pneumococcus 6 pneumonia 14 po 3 pobox 4 pocahontas 1 pock 1 pocket 51 pocketbook 2 pocketbooks 1 pockets 19 pockmarked 7 podgy 3 podnovinsk 1 podnovinski 1 podolian 1 podolsk 3 poem 6 poems 3 poet 4 poetic 19 poetical 1 poetry 10 poets 3 poignant 1 point 223 pointed 90 pointedly 2 pointer 1 pointing 88 points 83 poison 19 poisoned 5 poisoner 1 poisoning 27 poisonings 1 poisonous 4 poisons 6 poker 3 pokers 1 poking 2 poklonny 6 pokrovka 2 pokrovsk 3 poky 1 poland 26 polar 1 pole 22 polemic 1 poleon 1 poles 11 police 94 policeman 18 policies 68 policy 116 poliomyelitis 5 polish 46 polished 10 polite 19 politely 12 politeness 17 politic 3 political 260 politically 2 politician 9 politicians 17 politics 116 polk 14 poll 3 pollard 2 polled 9 pollen 3 pollicis 6 polling 1 polls 10 pollution 1 polly 1 polonaise 5 poltava 2 poly 3 polygamy 6 polyglot 1 polymer 1 polymorph 2 polymorpho 5 polynuclear 3 polypi 2 polypoidal 1 polypus 3 polytechnic 1 polyvalent 3 pomade 1 pomaded 6 pomerania 2 pomp 5 pomposity 1 pompous 2 pon 3 poncet 1 pond 20 ponder 1 pondered 16 pondering 2 ponderous 3 pondicherry 5 ponds 6 poniatowski 6 ponies 1 pont 2 pontiac 1 pontoon 1 pony 4 pooh 3 pool 26 pooling 1 pools 5 poor 129 poorer 7 poorest 3 poorhouse 1 poorly 5 pop 3 pope 11 popes 2 popliteal 30 popped 3 popping 2 poppy 1 poppyseed 1 populace 5 popular 133 popularity 9 popularization 1 popularly 11 populated 1 population 100 populations 7 populism 4 populist 8 populistic 1 populists 12 populous 8 porch 90 porches 1 pores 1 porfirio 1 poring 1 pork 3 porous 10 porridge 10 port 19 portable 3 portages 3 portal 2 portend 1 portent 1 portentous 1 porter 25 porters 3 portfolio 11 portion 122 portionless 1 portions 56 portly 6 portmanteau 3 portmanteaus 4 porto 25 portrait 33 portraits 3 portray 1 ports 43 portsdown 1 portsmouth 1 portugal 5 portuguese 1 pose 21 posed 1 posen 1 poses 1 position 432 positions 25 positive 44 positively 13 posnyakov 1 possess 19 possessed 35 possesses 9 possessing 5 possession 55 possessions 15 possessor 9 possibilite 1 possibilities 7 possibility 89 possible 339 possibly 34 post 117 postage 1 postal 4 postcard 1 posted 21 poster 1 posterior 31 posterity 13 posters 2 posthouses 1 postilion 3 postilions 1 posting 1 postmark 4 postmarks 1 postmaster 10 postpone 6 postponed 4 postponement 1 posts 22 postulant 1 postulated 1 postulates 1 postulating 1 postural 1 posture 6 postures 2 pot 8 potash 7 potassium 14 potato 11 potatoes 13 potch 1 potemkin 3 potemkins 2 potent 7 potentates 1 potential 2 potentially 1 potier 1 potman 1 potocka 1 potomac 3 pots 3 potsdam 4 pott 1 potters 2 pottery 1 pouch 6 pouched 3 pouches 11 pouching 4 poughkeepsie 1 poultice 6 poultices 5 poultry 2 pounce 1 pounced 3 pound 7 pounds 26 poupart 5 pour 20 poured 33 pouring 9 pouting 2 povarskaya 5 povarskoy 6 poverty 26 powdah 1 powder 44 powdered 16 powdering 1 powders 5 powdery 1 powell 1 power 548 powerful 73 powerfully 4 powerless 14 powerlessness 1 powers 149 powhatan 1 pox 1 pp 308 practicable 5 practical 62 practically 32 practice 95 practiced 5 practices 8 practicing 2 practise 2 practised 9 practitioner 2 prague 1 prairie 6 prairies 6 praise 16 praised 13 praises 3 praiseworthy 2 praising 3 pranced 3 prancing 1 prank 5 pranks 1 praskovya 1 prater 2 prattle 1 pratzen 17 pray 79 prayed 26 prayer 42 prayerful 1 prayers 15 praying 7 pre 15 preach 7 preached 10 preacher 3 preachers 2 preaching 4 preamble 3 prearranged 5 preble 2 precarious 3 precaution 9 precautionary 1 precautions 14 precede 7 preceded 19 precedent 7 precedents 3 precedes 5 preceding 18 preceptor 1 precepts 2 prechistenka 1 precious 38 precipice 1 precipitance 1 precipitate 2 precipitated 11 precipitating 2 precise 13 precisely 24 precision 14 preclude 2 precluding 1 precursor 4 predator 1 predecessor 5 predecessors 2 predestination 1 predestined 9 predetermined 3 predicament 1 predict 2 predictable 1 predicted 3 prediction 4 predictions 4 predilection 3 predispose 2 predisposed 2 predisposes 6 predisposing 2 predisposition 3 predominance 7 predominant 2 predominantly 1 predominate 10 predominated 2 predominates 3 preening 1 preface 3 prefect 2 prefer 21 preferable 3 preferably 9 preference 10 preferments 1 preferred 36 preferring 2 prefers 2 prefix 2 preformed 1 pregnancies 3 pregnancy 8 pregnant 12 prehistoric 2 preis 1 prejudice 6 prejudiced 1 prejudices 7 preliminaries 3 preliminary 17 prelude 4 premature 4 premeditation 1 premier 2 premiers 3 premise 1 premises 12 premium 2 premonition 1 prendergast 2 preobrazhensk 11 preobrazhenskis 2 preoccupation 5 preoccupations 1 preoccupied 23 preopinant 1 preparation 33 preparations 44 preparatory 5 prepare 46 prepared 138 prepares 1 preparing 50 prepatellar 11 preponderance 1 preposterous 4 prepuce 24 prerogative 5 prerogatives 4 presage 1 presaging 1 presbyterians 4 prescribe 6 prescribed 23 prescribes 1 prescribing 3 prescription 2 prescriptions 2 presence 217 present 329 presentable 1 presentation 7 presentations 1 presented 119 presentiment 8 presenting 16 presently 13 presentment 1 presents 63 preservation 11 preserve 35 preserved 17 preserver 1 preserves 3 preserving 2 preside 3 presided 3 presidency 21 president 371 presidential 33 presidents 15 presiding 2 presidt 1 presnya 1 press 81 pressed 122 presses 8 pressing 66 pressure 235 prestige 9 preston 1 presumably 8 presume 13 presuming 1 presumption 5 presumptive 1 presumptuous 2 presupposable 1 pretence 3 pretend 8 pretended 18 pretending 15 pretends 2 pretense 7 pretension 1 pretensions 8 pretentiously 1 preternaturally 1 pretext 27 pretexts 3 prettier 7 prettiest 3 prettily 2 pretty 85 preur 1 preussisch 4 prevail 9 prevailed 16 prevailing 4 prevails 3 prevalence 1 prevalent 5 prevent 134 prevented 44 preventing 31 prevention 16 preventive 5 prevents 15 previous 67 previously 55 prey 14 preyed 1 preying 5 price 45 priceless 3 prices 45 prick 5 pricked 3 pricking 4 pride 41 prided 1 priding 2 pried 1 priest 32 priesthood 1 priests 14 prim 2 prima 1 primacy 2 primaries 3 primarily 9 primary 152 prime 11 primeval 1 primiparae 1 primitive 7 primogeniture 2 primordial 1 prince 1935 princely 4 princes 11 princess 919 princesse 2 princesses 19 princeton 4 principal 32 principally 12 principals 2 principe 1 principes 1 principle 56 principles 82 pringle 2 print 50 printed 27 printer 3 printers 7 printing 15 prints 2 prior 9 priority 2 prishprish 1 prison 22 prisoner 60 prisoners 122 prisons 6 pritchard 1 privacy 3 privat 1 private 93 privateers 7 privately 5 privates 3 privation 5 privations 3 privatisation 1 privatization 1 privilege 14 privileged 4 privileges 30 prize 10 prized 4 prizes 4 prizing 1 pro 7 probability 12 probable 27 probably 147 probation 1 probe 15 probed 2 probing 3 problem 76 problematical 1 problems 78 procedure 25 procedures 6 proceed 18 proceeded 17 proceeding 12 proceedings 18 proceeds 8 process 219 processes 35 processing 6 procession 9 processions 2 processor 1 processors 2 prochain 2 proclaim 2 proclaimed 17 proclaiming 6 proclamation 45 proclamations 4 procrastinator 1 procure 6 procured 8 procuring 1 prodded 2 prodigal 1 prodigiosus 1 prodigious 1 prodigiously 1 prodigy 1 produce 120 produced 132 producer 1 producers 6 produces 23 producing 41 product 18 production 45 productions 2 productive 2 productivity 2 products 28 prof 3 profane 1 profess 3 professe 1 professed 6 professedly 1 professing 2 profession 22 professional 28 professionally 1 professions 8 professor 9 professors 2 proficient 1 profile 6 profit 24 profitability 1 profitable 7 profited 4 profiteer 1 profiting 2 profits 29 profligacy 1 profligate 3 profound 49 profoundest 2 profoundly 17 profunda 3 profundity 4 profundus 1 profuse 20 profusely 4 profusion 3 progenitors 1 progeny 1 prognosis 34 program 43 programme 3 programming 1 programs 2 progress 103 progressed 2 progresses 8 progressing 4 progression 5 progressive 53 progressively 1 progressives 5 progressivism 1 prohibit 3 prohibited 17 prohibiting 4 prohibition 18 prohibitionists 1 prohibitions 1 prohibitive 3 project 288 projected 10 projectiles 8 projecting 21 projection 9 projections 3 projects 26 prokhor 1 prokofy 2 proletarian 1 proliferate 5 proliferated 3 proliferates 3 proliferating 3 proliferation 12 proliferative 4 prolific 1 prolong 6 prolongation 1 prolongations 3 prolonged 61 promenade 1 promenades 1 promener 1 prominence 10 prominences 3 prominent 76 prominently 5 promise 67 promised 80 promises 15 promising 8 promissory 2 promo 2 promote 19 promoted 22 promoter 3 promoters 7 promotes 1 promoting 12 promotion 19 promotions 2 prompt 14 prompted 9 prompter 1 prompting 1 promptings 1 promptitude 1 promptly 23 pronated 4 pronation 2 pronator 4 prone 12 pronged 1 pronounce 9 pronounced 21 pronouncing 6 pronunciation 1 proof 30 proofread 7 proofreading 4 proofs 14 proosia 1 prop 2 propaganda 6 propagandists 1 propagated 2 propagation 1 proper 48 properly 21 properties 7 property 137 prophecy 11 prophesied 4 prophesy 1 prophet 3 prophetic 1 prophets 2 prophylactic 2 prophylaxis 8 propitious 1 proportion 72 proportional 1 proportionate 3 proportionately 2 proportioned 1 proportions 11 propos 3 proposal 39 proposals 15 propose 25 proposed 92 proposes 3 proposing 9 proposition 16 propositions 1 propound 1 propounded 1 propounding 1 propped 5 proprietary 24 proprieties 4 proprietor 18 proprietors 16 propriety 9 proptosis 1 prosaic 1 proscription 1 proscriptions 1 prose 5 prosecute 5 prosecuted 4 prosecution 11 prosecutions 3 prospect 19 prospecting 1 prospective 4 prospectors 4 prospects 3 prosper 4 prosperity 25 prosperous 17 prostate 8 prostatectomy 1 prostatitis 1 prostrate 8 prostrated 2 prostration 2 protargol 1 protect 41 protected 21 protecting 13 protection 63 protectionist 1 protectionists 1 protective 53 protector 2 protectorate 7 protectorates 1 protectors 1 protectress 1 protects 5 protege 4 protegee 3 proteids 2 protein 4 proteins 3 proteolytic 1 protest 19 protestant 5 protestants 6 protestation 1 protested 25 protesting 8 protests 37 proto 1 protocol 4 protopathic 10 protoplasm 10 protracted 1 protrude 3 protruded 5 protrudes 1 protruding 7 protrusion 4 proud 44 proudly 9 prove 82 proved 80 provender 1 proverb 5 proverbe 1 proverbs 2 proves 20 provide 47 provided 88 providence 22 provider 1 provides 4 providing 33 province 48 provinces 42 provincial 35 provincialism 3 provincials 7 proving 15 provision 46 provisional 2 provisioned 1 provisioning 2 provisions 52 proviso 6 provisons 1 provocation 2 provocative 2 provocatively 2 provoke 3 provoked 7 provokes 1 provoking 1 provost 1 prowess 3 prowl 1 prowling 2 proximal 17 proximally 1 proximity 15 prozorovski 2 prudence 4 prudent 2 prudently 1 prusse 6 prussia 39 prussian 17 prussians 5 pryanichnikov 2 prying 2 przazdziecka 1 przebyszewski 4 psalm 1 psalms 2 psammoma 2 pseud 1 pseudo 11 pshaw 2 psoas 11 psoriasis 2 psychiatric 1 psychic 1 psychological 4 psychologist 1 psychology 2 ptolemaic 2 pua 1 pub 6 puberty 6 pubes 2 pubis 1 public 288 publican 11 publication 8 publications 2 publicist 1 publicists 1 publicity 5 publicly 5 publish 4 published 18 publisher 4 publishers 4 publishing 4 pucker 1 puckered 20 puckering 10 pudding 5 puddles 3 puerperal 3 puerperium 1 puff 11 puffed 5 puffing 12 puffs 5 puffy 6 pugachev 2 puget 1 puhse 1 pulaski 3 pulex 1 pull 23 pulled 57 pulley 6 pulleys 2 pulling 29 pullman 7 pulls 1 pulmonary 9 pulp 4 pulpit 3 pulpits 1 pulsate 3 pulsates 1 pulsatile 5 pulsating 15 pulsation 38 pulse 49 pulsed 1 pulses 4 pultaceous 2 pultusk 6 pump 5 pumped 1 pumps 1 punch 9 punched 4 punctate 2 punctilious 2 punctually 1 punctuation 6 puncture 18 punctured 25 punctures 8 puncturing 1 pungent 4 punish 26 punished 21 punishes 3 punishing 4 punishment 21 punishments 3 punitive 7 punt 1 puny 2 pupil 18 pupils 16 puppet 3 puppy 1 purchase 50 purchased 15 purchaser 4 purchasers 5 purchases 9 purchasing 4 pure 54 purely 20 purer 2 purest 4 purgation 1 purge 2 purged 2 purges 2 purification 17 purified 13 purify 7 purifying 6 puris 2 puritan 10 puritanism 3 puritans 20 purity 18 purloined 2 purple 29 purplish 3 purport 4 purpose 121 purposely 12 purposes 50 purpura 2 purpurea 1 purpuric 1 purse 28 purses 3 pursing 3 pursuance 2 pursuant 1 pursue 13 pursued 33 pursuers 2 pursues 1 pursuing 10 pursuit 23 pursuits 7 purulent 35 purves 2 purveyor 1 pus 155 push 19 pushed 81 pushes 2 pushing 39 pushkin 1 pustular 2 pustule 15 pustules 11 put 435 putnam 1 putrefaction 5 putrefactive 6 putrefying 1 putrid 4 puts 3 puttee 1 putting 73 putty 2 puzzle 5 puzzled 14 puzzling 2 pwh 1 pwiests 1 pwince 3 pwoceed 1 pwomoted 1 pwonounce 1 pwovince 1 pwovisions 1 pyaemia 27 pyaemic 8 pyelitis 1 pylorus 1 pyocyanase 1 pyocyaneus 4 pyogenes 5 pyogenic 112 pyosalpynx 1 pyramid 1 pyramids 2 pyrexia 6 q 5 qu 8 quadratus 1 quadriceps 6 quadrilateral 1 quahtehmasteh 1 quaint 3 quaker 2 quakers 6 qualification 11 qualifications 22 qualified 6 qualify 2 qualifying 1 qualities 24 quality 19 qualms 1 quand 5 quanti 1 quantitative 1 quantities 15 quantity 40 quantum 1 quarante 2 quarrel 32 quarreled 10 quarreling 2 quarrelling 2 quarrels 10 quarry 3 quart 2 quarte 1 quarter 46 quartered 12 quartering 8 quarterly 1 quartermaster 17 quartermasters 3 quarters 72 quartette 1 quartier 2 quasi 2 quatre 2 quavering 1 quay 2 que 16 quebec 10 queen 20 queenless 3 queens 1 queer 15 queerly 1 quell 2 quelle 1 quelled 1 quench 3 quenched 1 queried 1 querulous 4 querulousness 1 query 3 quest 15 question 348 questionable 3 questionably 1 questioned 23 questioning 27 questioningly 4 questionings 1 questionnaire 1 questions 181 quests 1 queue 1 qui 8 quick 81 quickened 2 quickening 3 quickens 1 quicker 19 quickest 1 quickly 182 quickness 6 quid 1 quiescent 7 quiet 118 quieted 1 quieter 5 quietest 2 quietly 79 quill 5 quilt 16 quilts 1 quincey 1 quincy 12 quinine 5 quinsy 2 quire 1 quires 1 quit 14 quite 502 quitrent 5 quitrents 1 quits 1 quitted 7 quitting 1 quiver 6 quivered 16 quivering 18 quixotic 1 quizzical 2 quizzing 1 quod 1 quoique 2 quoits 1 quorum 5 quos 1 quota 2 quotas 5 quotation 2 quotations 1 quote 4 quoted 3 quotes 1 quoth 1 quoting 3 r 53 ra 1 rabbi 1 rabbit 8 rabbits 1 rabble 7 rabid 4 rabies 5 race 42 raced 1 racemosum 3 races 9 rachel 1 rachitis 3 racial 2 racing 5 racism 1 rack 6 racked 1 racking 1 raconteur 1 radial 22 radialis 4 radiance 4 radiant 24 radiantly 4 radiate 1 radiated 5 radiates 1 radiating 5 radiation 1 radiations 1 radical 29 radicalism 2 radically 1 radicals 11 radio 2 radiogram 29 radiograms 3 radium 51 radius 11 radzivilov 1 raevski 21 raevskis 1 raft 9 rafters 1 rafts 1 rag 6 rage 22 raged 4 rages 1 ragged 14 raging 6 rags 9 rah 1 raid 7 raided 2 raider 1 rail 11 railed 2 railing 3 railings 4 raillery 1 railroad 16 railroads 9 rails 7 railway 73 railways 110 raiment 1 rain 39 rainbow 1 raindrops 1 rainfall 1 raining 3 rains 2 rainy 5 raise 52 raised 212 raisers 3 raises 2 raising 77 raisins 5 raison 1 raisuli 2 rake 4 rakes 3 raleigh 2 rallied 6 rally 4 rallying 2 ralph 2 ram 7 ramballe 19 rambling 1 ramblings 1 rameau 3 ramify 3 rampart 5 ramrod 4 ramrods 1 rams 3 ramshackle 1 ran 322 ranch 7 ranchers 2 ranches 4 ranching 1 ranchman 1 ranchmen 1 rancor 1 randolph 5 randolphs 1 random 8 rang 29 range 39 ranged 7 ranger 3 rangers 5 ranges 15 ranging 6 rank 45 ranker 2 ranks 98 ransack 1 ransacked 2 ransom 1 ranula 2 ranvier 1 rapacious 1 rape 2 rapid 96 rapidity 47 rapidly 197 rapier 5 rapiers 1 rapp 10 rapped 1 rapt 3 rapture 14 raptures 2 rapturous 21 rapturously 10 rare 83 rarefaction 5 rarefied 6 rarefying 4 rarely 86 rarer 6 rarity 3 ras 1 rascal 7 rascality 2 rascally 2 rascals 7 rasgulyay 1 rash 7 rashers 1 rashes 1 rashness 1 rat 13 rate 67 rates 48 rath 1 rather 219 raths 1 ratification 39 ratified 26 ratifies 1 ratify 7 ratifying 4 rating 2 ratio 11 ratiocination 1 ration 3 rational 8 rationally 1 rations 4 rats 2 rattle 17 rattled 13 rattling 6 raum 1 ravage 1 ravaged 2 ravages 1 raved 1 raveled 1 raven 1 ravenous 1 ravens 1 ravine 9 ravines 1 raving 1 ravish 1 raw 58 ray 40 raymond 1 raynaud 6 rays 87 razed 1 razor 3 razumovski 1 razumovskis 5 rd 10 re 189 reabsorbed 3 reach 85 reached 220 reaches 35 reaching 58 react 5 reacted 4 reacting 2 reaction 96 reactionary 10 reactions 6 reactive 7 reactor 1 reacts 1 read 219 readable 13 reader 13 readers 11 readily 96 readiness 20 reading 114 readjusted 3 readjusting 1 readjustment 1 readmit 1 readmitted 1 reads 9 ready 230 reaffirmed 1 real 102 realise 8 realised 3 realising 3 realism 2 realistic 2 realities 1 reality 30 realization 1 realize 37 realized 50 realizes 1 realizing 15 really 272 realm 22 realms 2 reams 1 reannexation 2 reap 2 reaped 3 reaper 2 reaping 4 reappear 2 reappearance 3 reappeared 9 rear 30 reared 9 rearguard 10 rearing 1 rearrange 2 rearranged 2 rearrangement 1 rearranging 3 reason 191 reasonable 29 reasonableness 4 reasonably 9 reasoned 5 reasoner 6 reasoning 41 reasons 64 reassembled 1 reasserted 1 reassigned 1 reasson 2 reassure 10 reassured 6 reassuring 2 reaumur 1 reawaken 1 reawakened 1 reawakening 1 reawoke 1 rebates 2 rebecca 1 rebel 2 rebellion 29 rebellious 1 rebels 9 rebirth 1 reborn 1 rebound 1 rebuffs 2 rebuild 5 rebuilding 3 rebuilt 1 rebuke 5 rebukes 1 rebuking 1 rec 1 recalcitrant 3 recall 37 recalled 52 recalling 21 recalls 2 recanted 1 recaptured 2 recast 1 recede 1 receded 6 receding 2 receipt 13 receipts 4 receive 95 received 280 receiver 4 receives 16 receiving 54 recent 54 recently 30 reception 58 receptions 8 receptive 2 receptor 1 recess 6 recesses 8 recession 2 recipe 1 recipient 1 recipients 1 reciprocal 2 reciprocated 1 reciprocity 3 recital 1 recitation 1 recitations 1 recite 4 recited 2 reciting 3 reckless 11 recklessly 2 recklessness 1 recklinghausen 5 reckon 8 reckoned 26 reckoning 11 reckons 1 reclaim 1 reclaimed 1 reclamation 11 reclining 1 recognisable 4 recognise 17 recognised 63 recognises 1 recognising 6 recognition 33 recognitions 1 recognizable 2 recognize 54 recognized 83 recognizes 6 recognizing 35 recoil 5 recoiled 1 recoils 1 recollect 4 recollected 2 recollection 23 recollections 8 recommence 1 recommenced 4 recommend 9 recommendation 9 recommendations 2 recommended 31 recommending 1 recommends 10 recompense 7 reconcile 6 reconciled 7 reconciliation 8 reconciling 1 reconnaissance 1 reconnaissante 1 reconnoiter 1 reconnoitered 2 reconnoitering 1 reconsider 3 reconsideration 1 reconsidered 4 reconstructed 1 reconstruction 42 reconstructive 1 record 41 recorded 26 recorder 1 recording 1 records 25 recounted 5 recounting 3 recounts 1 recourse 23 recover 30 recovered 32 recovering 12 recovers 5 recovery 51 recreation 5 recreational 1 recreations 1 recross 2 recrudescence 3 recruit 5 recruited 1 recruiting 5 recruitment 2 recruits 12 rectal 7 rectangular 1 rectified 2 rectify 4 rectitude 2 recto 1 rector 1 rectum 22 rectus 1 recumbent 2 recuperate 1 recuperative 2 recur 18 recurred 9 recurrence 17 recurrences 1 recurrent 20 recurring 3 recurs 8 recurvatum 1 recurved 1 recycle 1 red 288 reddaway 2 reddened 4 reddening 4 redder 4 reddish 15 redeem 4 redeemable 1 redeemed 5 redeeming 1 redemption 5 redemptioner 1 redemptioners 1 rediscovered 1 redistribute 3 redistributing 7 redistribution 5 redness 20 redolent 1 redouble 2 redoubled 5 redoubt 33 redoubts 2 redounded 3 redoute 3 redress 8 redressing 1 redstone 1 reduce 21 reduced 41 reduces 3 reducing 9 reduction 21 reductions 5 redundancy 1 redundant 5 reed 4 reeds 4 reef 1 reek 1 reeked 1 reelection 5 reeled 1 reeling 1 reenacted 2 reestablish 3 reestablished 3 reestablishes 1 reexamined 1 refer 9 referable 6 referee 1 reference 44 references 33 referendum 17 referendums 1 referral 1 referred 67 referring 19 refers 7 refill 2 refilling 1 refills 1 refine 1 refined 13 refinement 3 refinements 5 refineries 1 refining 1 refitting 1 refixing 1 reflect 17 reflected 40 reflecting 8 reflection 23 reflections 18 reflex 8 reflexes 2 reflexly 2 reflux 1 refolded 1 reform 59 reformation 5 reformed 2 reformer 2 reformers 23 reforming 2 reforms 13 refractory 4 refrain 20 refrained 12 refraining 3 refresh 1 refreshed 7 refreshing 3 refreshingly 1 refreshment 4 refreshments 2 refrigerans 2 refrigeration 2 refrigerator 1 refuge 13 refugee 1 refugees 2 refund 30 refusal 30 refuse 42 refused 72 refuses 4 refusing 18 refutation 1 refutations 1 refute 1 refuted 1 refutes 1 refuting 4 regain 14 regained 7 regains 2 regal 1 regard 87 regarded 110 regarding 25 regardless 19 regards 16 regatta 1 regency 2 regenerate 3 regenerated 6 regenerating 2 regeneration 38 regent 2 regicide 3 regime 10 regiment 230 regimental 48 regiments 36 region 117 regional 7 regions 38 register 7 registered 10 registering 2 registers 1 registrar 2 registration 7 registry 1 regret 24 regretful 2 regretfully 3 regrets 4 regrettable 2 regretted 18 regretting 5 regular 76 regularity 5 regularizing 1 regularly 9 regulars 11 regulate 16 regulated 6 regulates 1 regulating 12 regulation 30 regulations 19 regulatory 1 regurgitation 2 rehabilitation 2 reharnessed 1 rehearsal 1 rehearsing 1 reheat 1 reid 1 reign 38 reigned 8 reigning 3 reigns 4 reimbursed 1 rein 11 reined 9 reinforce 2 reinforced 2 reinforcement 1 reinforcements 10 reining 2 reins 20 reinspected 1 reinstate 1 reinstated 2 reinstating 1 reiterated 3 reiteration 1 reject 4 rejected 35 rejecting 1 rejection 7 rejects 2 rejoice 10 rejoiced 9 rejoices 2 rejoicing 12 rejoin 8 rejoinder 8 rejoinders 1 rejoined 13 rejoining 1 rejuvenated 1 relapse 20 relapsed 4 relapses 8 relapsing 12 relate 21 related 45 relates 5 relating 19 relation 139 relations 149 relationship 9 relationships 2 relative 25 relatively 13 relatives 10 relax 3 relaxation 5 relaxed 14 relaxes 2 relaxing 2 relay 4 relays 4 release 28 released 16 releasing 3 relent 1 relentless 10 relentlessly 2 relevance 1 relevant 3 relevantly 1 reliability 1 reliable 20 reliance 15 relic 3 relics 8 relied 4 relief 66 relieve 20 relieved 25 relieves 2 relieving 6 religion 35 religions 2 religious 54 relinquish 2 relinquishing 2 relish 4 relishing 1 relit 3 relive 1 relived 1 reload 1 reloaded 1 reluctance 9 reluctant 16 reluctantly 24 rely 11 relying 3 remain 141 remainder 12 remained 231 remaining 40 remains 73 remanded 1 remark 51 remarkable 77 remarkably 24 remarked 169 remarking 6 remarks 46 remarriage 2 remarry 1 remedied 6 remedies 18 remedy 25 remedying 3 remember 161 remembered 120 remembering 23 remembers 6 remembrance 6 remind 9 reminded 25 reminder 6 reminders 3 reminding 4 reminds 2 reminiscence 2 reminiscences 9 remission 1 remissions 2 remits 1 remittent 1 remitting 1 remnant 5 remnants 2 remonstrance 1 remonstrances 2 remonstrated 2 remorse 14 remorseless 1 remorselessly 1 remortgaged 1 remote 19 remoteness 1 remotest 3 remount 1 remounted 1 remounts 4 removable 2 removal 108 removals 2 remove 53 removed 178 removing 43 remunerative 1 renaissance 2 renal 6 renamed 2 render 28 rendered 34 rendering 14 renders 6 rendezvous 1 rending 4 renegade 2 renew 14 renewal 10 renewed 32 renominated 3 renominating 1 renomination 2 renounce 10 renounced 7 renouncing 6 renovation 1 renown 1 renowned 2 rensselaer 1 rent 19 rental 1 rented 2 renter 1 renters 1 rentes 1 renting 4 rentrez 1 rents 8 reoccupation 2 reopened 6 reopening 4 reorganized 2 rep 15 repacked 1 repacking 1 repaid 5 repair 78 repaired 6 repairing 2 repairs 4 reparation 2 reparations 2 reparative 19 repartee 1 repassed 1 repast 1 repay 10 repayment 2 repeal 24 repealed 10 repeat 25 repeated 210 repeatedly 24 repeating 47 repeats 1 repel 6 repelled 2 repellent 3 repelling 2 repent 5 repentance 3 repented 3 repenting 1 repents 1 repertoire 1 repetition 10 replace 19 replaced 55 replacement 21 replaces 6 replacing 5 replaited 1 replaiting 1 replenished 1 repletion 1 replied 320 replies 18 reply 166 replying 28 repnin 6 report 87 reported 52 reportedly 1 reporter 4 reporting 11 reports 54 repose 7 reposed 2 reprehensible 3 represent 16 representation 28 representations 3 representative 39 representatives 96 represented 42 representing 23 represents 8 repress 8 repressed 5 repressing 4 repression 1 reprieves 2 reprimand 3 reprimanded 3 reprimanding 1 reprinted 3 reprisal 2 reproach 37 reproached 16 reproaches 8 reproachful 5 reproachfully 16 reproaching 3 reproche 1 reproduce 2 reproduced 9 reproduces 1 reproducing 1 reproduction 3 reproductive 1 reproof 1 reproved 3 reproving 1 reprovingly 1 reptile 1 republic 56 republican 176 republicanism 3 republicans 146 republics 2 repudiate 2 repudiated 9 repudiating 1 repudiation 1 repugnance 2 repugnant 5 repulsed 13 repulsion 7 repulsive 7 repulsively 1 repurchasing 1 reputable 1 reputation 28 reputations 1 repute 3 reputed 2 request 40 requested 4 requesting 2 requests 4 require 29 required 92 requirement 3 requirements 21 requires 13 requiring 11 requisite 10 requisitions 1 reread 4 rescind 2 rescinded 1 rescinding 2 rescript 6 rescue 14 rescued 9 research 36 researcher 1 researches 5 resect 6 resected 11 resecting 8 resection 12 resections 3 resemblance 12 resemblances 2 resemble 32 resembled 8 resembles 26 resembling 52 resent 3 resented 12 resentful 1 resenting 1 resentment 12 resentments 1 reservation 5 reservationists 1 reservations 5 reserve 32 reserved 15 reserves 10 reserving 4 reservoir 1 reside 2 resided 3 residence 11 residences 1 resident 7 residential 1 residents 8 residing 3 residual 3 residue 2 residues 2 resign 3 resignation 10 resigned 7 resignedly 1 resigning 2 resin 2 resist 33 resistance 47 resistant 4 resisted 7 resisting 7 resistless 1 resists 5 resolute 43 resolutely 20 resolution 57 resolutions 26 resolve 14 resolved 34 resolves 2 resolving 2 resonance 3 resonant 1 resort 11 resorted 8 resorting 1 resorts 1 resounded 13 resounding 4 resource 11 resourceful 5 resources 56 respect 77 respectability 1 respectable 14 respected 22 respectful 23 respectfully 42 respecting 15 respective 17 respectively 10 respects 22 respiration 23 respirations 1 respiratory 6 respite 4 respond 9 responded 20 respondent 1 responding 3 responds 1 response 21 responses 1 responsibilities 6 responsibility 41 responsible 32 responsive 1 rest 209 restarted 1 restatement 1 restaurant 5 rested 28 restful 1 restfully 1 resting 26 restitution 1 restive 6 restless 32 restlessly 3 restlessness 10 restoration 36 restore 28 restored 40 restoring 10 restrain 39 restrained 11 restraining 9 restrains 1 restraint 18 restraints 9 restrict 5 restricted 28 restricting 3 restriction 14 restrictions 23 restrictive 8 rests 17 result 386 resultant 10 resulted 27 resulting 123 results 229 resume 11 resumed 21 resumes 1 resuming 3 resumption 10 resurrection 1 retail 2 retailer 1 retailing 1 retain 31 retained 41 retainers 2 retaining 9 retains 6 retaken 2 retaliate 3 retaliated 2 retaliation 8 retaliations 1 retard 1 retarded 3 retarding 1 rete 4 retell 1 retelling 1 retention 10 reticent 3 reticular 1 reticulated 3 reticule 9 retina 2 retinitis 1 retinue 2 retinues 1 retire 29 retired 43 retirement 13 retires 3 retiring 10 retort 2 retorted 6 retorts 1 retraced 1 retracing 2 retract 6 retracted 5 retracting 1 retraction 9 retracts 2 retraite 1 retreat 94 retreated 18 retreating 24 retreats 3 retribution 1 retrieve 1 retrieved 2 retrieving 1 retro 6 retrogressing 1 retrogression 2 retrospection 1 retuned 1 return 190 returned 194 returning 68 returns 33 reuben 1 reunion 7 reunite 1 reunited 2 rev 5 reveal 15 revealed 48 revealing 8 reveals 5 revelation 8 reveled 1 revelers 1 revellers 1 revelry 1 revels 2 revenge 8 revenue 39 revenues 9 reverberate 1 reverberated 4 reverberating 1 reverberation 1 reverdin 2 revered 1 reverence 4 reverend 1 reverent 2 reverential 1 reverently 1 reverie 7 reveries 1 reversal 3 reverse 11 reversed 4 reverses 6 revert 1 reverted 2 reverting 1 reviendra 3 review 47 reviewed 6 reviewing 4 reviews 6 revise 2 revised 5 revising 3 revision 18 revisions 1 revival 7 revive 2 revived 7 reviving 2 revoir 11 revoked 3 revolt 26 revolted 2 revolting 2 revolution 202 revolutionary 52 revolutionists 7 revolutions 11 revolve 2 revolved 1 revolver 8 revolvers 1 revolves 1 revolving 1 revulsion 1 reward 34 rewarded 8 rewarding 3 rewards 17 rewritten 1 rhabdomyoma 3 rhapsodies 1 rhetor 24 rhetoric 3 rheumatic 14 rheumatism 25 rheumatoid 3 rhine 12 rhinebeck 1 rhinophyma 2 rhipheus 1 rhode 33 rhodes 16 rhomboids 1 rhyme 2 rhymes 1 rhythm 3 rhythmic 6 rhythmical 2 rhythmically 5 ri 1 rib 8 ribbed 1 ribbon 19 ribbons 10 ribs 16 ricans 1 rice 23 rich 92 richard 6 richardson 1 richer 12 riches 10 richest 10 richly 3 richmond 8 richness 2 rickets 25 rickety 14 rico 24 ricord 1 rid 42 ridden 33 riddle 2 ride 54 rider 16 riderless 1 riders 8 rides 6 ridge 5 ridges 2 ridicule 19 ridiculed 5 ridiculing 2 ridiculous 17 ridiculously 1 riding 71 rien 1 rife 2 rifle 12 rifled 2 rifles 2 rift 3 rifts 1 rigged 3 rigging 2 right 710 righted 3 righteous 2 righteousness 4 rightful 3 righting 1 rightless 1 rightly 7 rights 168 rigid 22 rigidity 13 rigidly 6 rigor 14 rigors 4 rim 4 rimes 2 ring 55 ringing 32 ringleader 1 rings 17 ringworm 1 rinsed 4 rinsing 1 rio 2 riot 11 rioted 1 rioters 1 rioting 7 riotous 5 riots 6 rip 1 ripe 6 ripened 2 ripley 3 ripon 1 rippling 1 rire 1 rise 240 risen 30 riser 1 risers 1 rises 24 rising 84 risk 75 risked 5 risking 2 risks 14 risky 1 risus 2 ritchie 1 rite 4 ritual 2 rituals 1 rival 15 rivaled 3 rivaling 1 rivalries 2 rivalry 6 rivals 10 river 112 riverbank 1 riverbanks 1 rivers 20 riverside 12 rives 1 rivet 2 riveted 3 riveters 1 rivulet 2 road 260 roadless 1 roads 44 roadside 3 roadsides 1 roadway 2 roam 2 roamed 1 roaming 1 roan 2 roans 4 roar 25 roared 9 roaring 3 roast 8 roasted 2 roasting 3 rob 5 robbed 7 robber 5 robberies 5 robbers 1 robbery 17 robbing 4 robe 2 robed 1 robert 26 roberts 2 robertson 1 robes 2 robespierre 1 robin 1 robinson 5 robs 1 robust 6 rochester 1 rock 6 rocked 3 rockefeller 5 rockefellers 1 rocket 5 rockies 4 rocking 3 rocks 3 rocky 6 rod 10 rode 227 rodent 25 rods 5 roe 1 roger 6 rogers 5 rogozhski 2 rogue 5 rogues 2 roguet 2 roguish 1 rohans 1 roi 9 role 42 roles 2 roll 26 rolled 41 roller 1 rolling 22 rolls 1 roman 8 romance 12 romances 1 romans 3 romantic 11 rome 12 romper 1 romping 1 ronde 1 rontgen 13 roof 33 roofed 3 roofless 1 roofs 18 rook 8 room 960 roomier 1 rooms 86 roosevelt 91 root 24 rooted 5 roots 12 rope 15 ropes 10 rosa 1 rosary 2 rose 243 rosebushes 1 rosenkampf 1 roseola 2 roseoles 2 roses 4 rosier 1 ross 14 rostopchin 124 rostopchine 2 rostov 776 rostova 29 rostovs 160 rosy 30 rot 1 rotary 1 rotate 1 rotated 6 rotating 2 rotation 7 roth 1 rotted 2 rotten 8 rotterdam 1 rotund 1 rotundum 1 rou 2 rouged 1 rough 45 roughened 2 rougher 2 roughly 9 roughness 5 roughs 3 round 556 roundabout 1 rounded 35 rounder 1 rounding 1 roundly 5 rounds 4 rouse 8 roused 24 rousing 4 rousseau 5 rout 2 route 26 routed 6 routes 14 routine 23 roux 1 rover 1 rovers 1 row 26 rowdy 1 rowe 1 rowing 2 rows 28 roy 1 royal 111 royale 1 royalist 3 royalties 8 royalty 13 royaute 1 roylott 21 roylotts 2 rrrr 1 rub 3 rubbed 32 rubber 29 rubbers 2 rubbing 25 rubbish 15 rubbishy 1 rubbles 1 ruble 15 rubles 71 rubs 1 ruby 3 rucastle 38 rucastles 4 ruddy 7 rude 15 rudely 6 rudeness 5 rudenesses 1 ruder 1 rudiments 2 rudolf 1 rue 1 rueful 1 ruefully 3 ruffian 3 ruffians 1 ruffle 3 ruffled 1 ruffling 2 rug 10 rugay 8 rugayushka 2 rugby 1 rugged 1 rugs 3 ruin 48 ruined 48 ruining 3 ruinous 11 ruins 12 rule 121 ruled 14 ruler 20 rulers 19 rules 58 ruling 12 rulings 2 rum 17 rumania 3 rumble 4 rumbled 1 rumbling 2 ruminated 1 rummaged 5 rumor 10 rumored 5 rumors 23 rumour 3 rumours 3 rumpled 1 rumyantsev 8 rumyantsovs 1 run 145 runaway 7 rung 4 runner 3 runners 5 running 140 runs 27 rupia 4 rupture 86 ruptured 18 ruptures 9 rupturing 2 rural 11 rurik 1 ruse 4 rush 35 rushed 114 rushes 5 rushing 20 russe 9 russell 7 russen 2 russia 193 russian 461 russians 148 russie 1 russo 6 rust 2 rustan 1 rustchuk 1 rustic 3 rustle 17 rustled 1 rustling 7 rustomjee 1 rusty 4 rut 2 ruth 1 rutherford 1 ruthless 6 ruthlessly 1 rutledge 2 ruts 4 ruza 1 ryazan 22 ryazana 1 ryder 12 rye 18 ryefield 5 rykonty 2 s 5636 sa 4 saar 1 sabastiani 1 sabbath 3 saber 42 sabered 1 sabers 14 sabine 3 sable 9 sabre 9 sabretache 6 sabretaches 1 sac 73 saccharatus 1 saccular 1 sacculated 14 sachiez 1 sack 8 sacked 4 sackful 1 sacks 4 sacral 3 sacrament 9 sacramento 1 sacre 2 sacred 21 sacredness 2 sacree 1 sacrifice 66 sacrificed 13 sacrifices 12 sacrificing 9 sacrilege 2 sacrilegious 1 sacristan 1 sacro 5 sacrospinalis 1 sacrum 9 sacs 3 sad 91 sadden 1 saddened 1 sadder 2 saddest 1 saddle 41 saddlebow 2 saddlecloth 2 saddled 10 saddles 10 sadly 19 sadness 16 sadovaya 1 safe 47 safeguard 11 safeguarded 3 safeguarding 2 safeguards 4 safely 11 safer 7 safes 1 safest 2 safety 37 saffron 2 safi 1 sagacious 3 sagacity 2 sage 4 sagebrush 1 sagely 1 sages 1 sagittal 2 said 3464 sail 8 sailed 7 sailing 13 sailings 1 sailor 6 sailors 22 sails 2 saint 15 sainte 2 saints 9 sait 4 sake 97 sal 2 salad 2 salamanca 2 salaries 3 salary 13 sale 25 salem 1 sales 10 salesman 10 salicylate 3 salicylates 6 salicylic 8 salient 5 saline 25 saliva 8 salivary 4 salivation 1 salkindsohn 1 salle 3 sallies 2 sallow 25 sally 3 salmon 5 salol 1 salomoni 1 salon 9 salons 3 saloon 1 salt 34 saltanov 3 salter 1 saltpeter 2 salts 14 saltykov 3 salut 1 salutary 3 salutation 1 salute 9 saluted 5 saluting 1 salvarsan 7 salvation 13 salve 1 salver 6 salzeneck 2 sam 6 same 1052 sameness 1 samoa 6 samoan 7 samoset 1 samovar 21 sample 8 samples 1 sampson 3 samson 2 samuel 26 san 20 sanctified 1 sanctifying 1 sanction 9 sanctioned 4 sanctioning 1 sanctity 2 sanctuary 5 sand 16 sandbag 1 sands 4 sandstone 1 sandwich 2 sandwiched 2 sandy 3 sane 1 sang 34 sanguinary 3 sanguine 5 sanious 3 sanitary 3 sanitation 2 sank 35 sans 4 santa 14 santiago 1 santo 10 sap 2 saphena 14 saphenous 9 saphrophytes 1 sapping 1 sappy 2 sapraemia 12 saprophytic 1 saragossa 1 sarah 4 sarasate 1 saratoga 5 saratov 1 sarcasm 4 sarcastic 12 sarcastically 6 sarco 1 sarcoma 139 sarcomas 8 sarcomata 1 sarcomatous 7 sardinian 2 sardonic 1 sardonically 1 sardonicus 2 sargent 1 sartorius 2 sash 3 sasha 2 sashes 1 sat 403 satan 1 satchels 1 sate 1 satellite 1 satellites 4 satin 10 satire 5 satires 2 satirical 1 satirist 1 satisfaction 67 satisfactorily 8 satisfactory 42 satisfied 60 satisfies 1 satisfy 15 satisfying 6 saturated 6 saturday 10 saturdays 2 satyr 1 sauce 4 saucepan 1 saucer 5 saucy 1 sauerkraut 1 saul 1 sauntering 1 sausage 11 sausages 1 saute 3 savage 19 savagely 6 savageness 1 savages 4 savannah 11 savants 1 savary 4 save 110 saved 51 savelich 7 saves 1 saving 32 savings 9 savior 4 saviour 10 savishna 3 savor 1 savored 1 savoring 1 savory 4 savostyanov 1 saw 599 sawdust 1 sawies 1 sawing 1 sawmills 2 sawn 2 saws 1 saxe 7 saxon 6 saxons 2 saxony 2 say 755 saying 270 sayings 7 says 146 sca 1 scab 11 scabbard 1 scabbards 1 scabs 3 scaevola 1 scaffold 2 scaffolding 6 scala 1 scalawags 1 scald 1 scalds 6 scale 45 scalenus 1 scalers 1 scales 6 scalp 25 scalping 1 scaly 4 scamp 1 scampered 1 scan 1 scandal 19 scandalous 2 scandals 5 scandinavia 3 scandinavian 1 scandinavians 5 scanned 8 scanning 9 scant 4 scantily 1 scanty 10 scapegrace 2 scapegraces 1 scapula 22 scapular 3 scar 89 scarce 6 scarcely 65 scarcity 4 scare 3 scared 19 scarf 12 scarify 1 scarlatinal 4 scarlet 22 scarpa 3 scarred 3 scarring 3 scars 35 scarves 3 scathing 2 scatter 6 scattered 53 scattering 4 scatters 1 scenario 1 scene 49 scenery 5 scenes 12 scent 17 scented 6 scenting 2 scepter 3 sceptic 1 sceptre 1 schafer 6 schaudinn 1 schedule 5 schedules 1 schelling 2 scheme 25 schemer 1 schemes 12 scheming 1 scherbinin 3 scherer 7 schimmelbusch 1 schism 1 schlappanitz 4 schley 2 schlosser 2 schmidt 8 schnapps 1 schneider 2 scholar 3 scholars 2 scholarship 2 schon 17 schonbrunn 4 school 33 schoolbook 1 schoolboy 8 schooled 2 schoolhouses 3 schoolmaster 5 schoolroom 3 schools 28 schooner 2 schoss 16 schubert 2 schurz 3 schuyler 2 schuylkill 1 schwa 1 schwachen 1 schwann 1 schwartzenberg 1 schwarzenberg 1 sciatic 20 sciatica 8 science 60 sciences 15 scientific 12 scientist 2 scientists 1 scintillating 3 scirrhous 3 scissors 19 sclavo 4 sclerosed 8 sclerosis 32 sclerotic 2 scold 3 scolded 1 scolding 3 scoliosis 6 scoliotica 2 scoop 2 scope 7 scopolamin 1 scorbutic 3 scorbutics 1 scorched 4 scorching 4 score 17 scored 4 scores 3 scoring 1 scorn 6 scorned 2 scornful 3 scornfully 3 scorning 1 scot 2 scotch 34 scotfree 1 scotia 1 scotland 16 scots 1 scott 24 scottish 3 scoundrel 25 scoundrels 9 scoundwel 1 scoundwels 1 scour 1 scoured 1 scourge 2 scout 2 scouted 1 scouting 3 scouts 9 scow 1 scowl 1 scowled 2 scowling 6 scows 1 scraggy 2 scramble 2 scrambled 2 scrap 6 scrape 6 scraped 21 scraping 16 scraps 2 scratch 13 scratched 5 scratches 1 scratching 8 scrawl 1 scrawled 5 scream 14 screamed 37 screaming 8 screams 13 screen 14 screened 5 screening 5 screens 4 screw 11 screwed 15 screwing 10 screws 1 scribble 1 scribbled 2 scribes 1 script 1 scripture 2 scriptures 7 scrofulous 1 scrotal 1 scrotum 19 scrub 1 scrubbed 1 scruff 2 scrunching 1 scruple 3 scruples 4 scrupulous 2 scrupulously 1 scrutinize 2 scrutinized 4 scrutinizing 5 scrutinizingly 1 scrutiny 9 scudding 1 scuffle 4 sculler 2 scullery 1 scullions 1 sculptor 1 sculpture 2 scummed 1 scurf 1 scurry 1 scurrying 1 scurvy 13 scut 2 scuttle 1 scythe 1 scythia 1 scythian 2 sd 1 se 3 sea 82 seaboard 30 seacoast 4 seager 1 seal 15 sealed 15 sealing 8 seals 3 seaman 3 seamanship 2 seamed 1 seamen 9 seams 2 seaport 1 seaports 2 search 59 searched 13 searches 3 searching 31 searchingly 3 seared 2 sears 1 seas 37 seashore 1 seaside 1 season 17 seasonable 1 seasonal 2 seasoned 3 seasons 3 seat 170 seated 51 seating 4 seats 21 seattle 1 sebaceous 28 secede 2 seceded 4 seceding 2 secession 26 secessionist 1 secluded 5 seclusion 4 second 280 secondarily 3 secondary 148 secondly 20 seconds 28 secourable 1 secrecy 18 secret 81 secretariat 1 secretaries 4 secretary 52 secrete 1 secreted 2 secretest 1 secreting 11 secretion 12 secretions 5 secretive 2 secretly 10 secretory 3 secrets 16 sect 8 sectarianism 1 section 117 sectional 15 sectionalism 3 sections 54 sector 2 sects 3 secular 5 secure 74 secured 48 securely 6 securer 2 securing 32 securities 4 security 21 sedan 1 sedate 2 sedately 2 sedateness 1 sedatives 1 sedentary 1 sedgwick 1 sediment 1 sedition 17 seditious 1 sedmoretzki 1 seduced 1 seducer 2 seductive 1 seduisante 1 sedulously 2 sedyablyaka 1 see 1101 seed 15 seedless 1 seeds 7 seedy 2 seeing 207 seek 38 seeker 4 seekers 9 seeking 36 seeks 5 seem 116 seemed 695 seeming 8 seemingly 8 seemliness 1 seems 134 seen 444 seers 2 sees 26 seethed 1 seething 3 segment 19 segments 6 seigneur 2 sein 1 seine 1 seize 31 seized 114 seizes 4 seizing 32 seizure 15 seizures 1 seldom 76 select 25 selected 49 selecting 9 selection 12 selections 2 selective 2 selenium 3 self 218 selfish 9 selfishness 3 seligman 2 selivanov 1 sell 30 selle 1 seller 5 sellers 1 selling 16 selvedges 1 semantic 1 semblance 2 semen 1 semenov 8 semenova 2 semenovna 5 semenovsk 16 semi 18 semicircle 5 semicircles 2 semicircular 1 semicouncil 1 semidark 1 semidarkness 2 semifluid 1 semiliterate 1 semilunar 8 seminal 1 seminar 1 seminarists 1 seminary 2 seminude 1 semiopen 1 semple 1 senate 114 senator 45 senatorial 1 senators 45 send 99 senders 1 sending 38 sends 8 seneca 3 senegal 1 senile 18 senility 2 senior 19 seniority 7 seniors 1 senor 1 sens 1 sensation 73 sensational 3 sensationalism 2 sensations 9 sense 103 senseless 37 senselessly 2 senselessness 1 senses 11 sensibility 41 sensible 13 sensibly 3 sensing 1 sensitive 35 sensitiveness 3 sensitivity 1 sensori 1 sensory 9 sensual 3 sent 319 sentence 26 sentenced 4 sentences 7 sentiment 36 sentimental 4 sentimentality 1 sentimentally 1 sentiments 14 sentinel 12 sentinelles 1 sentinels 9 sentry 2 separable 1 separate 69 separated 75 separately 15 separates 15 separating 14 separation 51 separatist 1 separatists 1 sepsis 10 sept 2 septa 7 september 44 septic 49 septicaemia 15 septicaemic 1 septique 2 septum 3 sequel 14 sequelae 4 sequence 13 sequestra 8 sequestrated 3 sequestration 1 sequestrectomy 3 sequestrum 42 sera 9 serait 1 serajevo 1 serbia 7 serbian 1 serbs 1 serene 39 serenely 3 serenity 5 serf 16 serfdom 1 serfs 80 sergeant 40 sergeants 5 sergeevich 3 serges 1 sergey 15 sergius 2 serics 1 series 128 serious 141 seriously 63 seriousness 5 sermon 1 sermons 3 sero 6 serous 46 serpent 5 serpentine 8 serpiginous 2 serpukhov 1 serrated 1 serratus 5 serried 3 serum 53 serums 3 seruvaru 1 servant 46 servants 88 serve 64 served 63 server 1 serves 15 service 223 serviceable 3 services 38 servile 9 servility 2 serving 37 servitude 28 ses 2 sesame 1 seslavin 2 sessile 5 session 13 sessions 9 set 325 seton 2 setons 1 sets 11 settee 1 setter 2 setting 38 settings 1 settle 42 settled 110 settlement 72 settlements 24 settler 1 settlers 37 settles 3 settling 16 sevastyanych 1 seven 132 seventeen 10 seventeenth 14 seventh 19 sevenths 1 seventies 2 seventy 20 several 373 severally 1 severance 2 severe 173 severed 10 severely 29 severer 1 severing 4 severity 44 severn 1 sevier 2 seville 1 sevres 2 sew 1 seward 11 sewed 1 sewene 1 sewing 5 sewn 5 sex 11 sexe 1 sexes 3 sexless 1 sexual 5 sexuality 1 sexually 1 sez 1 sg 1 shabbiest 1 shabbily 1 shabby 9 shade 35 shaded 4 shades 6 shading 6 shadow 58 shadows 19 shadowy 1 shady 3 shaft 71 shafter 3 shafts 13 shag 4 shaggy 15 shah 1 shak 1 shake 14 shaken 11 shakes 1 shakespeare 1 shaking 50 shako 7 shakos 8 shale 1 shall 735 shallow 10 shallowness 1 shalt 2 sham 2 shame 32 shamefaced 7 shamefacedly 1 shameful 10 shamefully 5 shameless 2 shamelessly 1 shamshevo 10 shan 15 shanties 1 shantung 1 shanty 2 shape 62 shaped 50 shapeless 2 shapely 3 shapes 3 shaping 7 shapovalov 1 share 69 shared 25 shareholder 1 shares 3 sharing 23 sharp 83 sharpen 1 sharpened 4 sharpening 4 sharper 7 sharpest 2 sharply 43 sharpness 2 sharpshooter 1 sharpshooters 11 shatter 2 shattered 14 shatters 1 shave 3 shaved 11 shaven 19 shaving 6 shavings 2 shaw 2 shawl 22 shawls 2 shays 4 shcherbatov 1 shcherbaty 4 shcherbinin 6 shcherbitov 1 she 3946 sheaf 1 sheath 69 sheathed 2 sheaths 60 sheaves 3 shed 74 shedding 6 sheds 5 sheen 1 sheep 24 sheepish 1 sheepskin 8 sheer 8 sheet 29 sheets 8 shelf 8 shell 41 shelled 7 shellfire 1 shelling 3 shells 10 shelter 19 sheltered 2 shelters 3 shelves 3 shenandoah 1 shenkii 1 shepherd 3 shepherdesses 1 shepherds 2 sheridan 1 sheriff 1 sherlock 101 sherman 21 sherren 6 sherry 2 shetland 1 shevardino 29 shew 1 shied 1 shield 8 shielding 1 shift 6 shifted 5 shiftily 1 shiftiness 1 shifting 14 shifts 1 shilling 4 shillings 5 shiloh 2 shimmering 2 shine 4 shines 1 shineth 1 shining 40 shiningly 1 shinn 1 shinshin 29 shinshina 1 shiny 9 ship 73 shipboard 1 shipbuilder 1 shipbuilders 2 shipbuilding 5 shipment 1 shipments 2 shipowners 4 shipped 5 shipper 1 shippers 12 shipping 21 ships 64 shipwreck 1 shipwrights 2 shipyards 2 shirley 1 shirt 50 shirtlike 1 shirts 8 shishkov 3 shit 1 shitov 1 shiver 8 shivering 12 shivers 2 shock 87 shocked 9 shocking 1 shocks 1 shod 6 shoe 11 shoemakers 3 shoes 38 sholto 1 sholtos 1 shone 41 shook 70 shoot 15 shooting 12 shoots 7 shop 29 shopkeeper 2 shopkeepers 6 shopman 3 shopping 2 shops 22 shore 11 shores 9 shorn 2 short 236 shortage 1 shortcomings 1 shorten 2 shortened 6 shortening 11 shorter 11 shortest 1 shortly 27 shortness 4 shortsighted 5 shot 95 shots 26 should 1297 shoulder 116 shouldered 9 shouldering 3 shoulders 125 shouldn 17 shout 23 shouted 254 shouting 109 shouts 52 shove 6 shoved 1 shovel 6 shoveled 1 shoves 1 shoving 4 show 213 showed 149 shower 4 showered 2 showering 1 showing 104 showmen 1 shown 113 shows 50 showy 2 shrank 10 shrapnel 1 shred 2 shreddy 2 shreds 4 shrewd 14 shrewdest 1 shrewdly 3 shrewdness 1 shrewsbury 1 shriek 7 shrieked 14 shrieking 2 shrieks 6 shrill 13 shrillest 1 shrilly 2 shrimp 1 shrine 6 shrines 3 shrink 5 shrinkage 1 shrinking 3 shrinks 3 shriveled 11 shrivelled 5 shrivelling 1 shrivels 2 shrouded 2 shrub 1 shrubbery 2 shrug 3 shrugged 35 shrugging 13 shrunk 4 shudder 10 shuddered 10 shudders 1 shuffled 1 shuffling 6 shun 1 shunned 1 shut 40 shuts 2 shutter 4 shuttered 2 shutters 16 shutting 2 shuya 1 shy 21 shying 2 shyly 12 shyness 5 si 5 siam 1 siberia 9 sibilant 1 sic 2 sicca 3 sicily 1 sick 53 sickened 1 sickening 3 sickle 4 sickly 6 sickness 13 sickroom 1 side 511 sideboard 6 sided 5 sidedly 1 sidelights 2 sidelong 5 sides 172 sidewalk 1 sideways 12 sidled 2 sidney 2 sidorov 4 sidorych 2 siege 8 sifted 1 sifting 1 sigh 38 sighed 57 sighing 17 sighs 6 sight 129 sighted 11 sightedness 1 sights 2 sigismond 1 sign 99 signal 25 signaler 1 signalers 1 signaling 1 signalled 1 signals 1 signature 9 signatures 3 signboard 2 signboards 2 signed 40 signer 1 signers 1 signet 2 significance 89 significant 39 significantly 17 signifies 1 signify 3 signifying 2 signing 5 signs 98 sila 2 silas 2 silence 136 silenced 5 silencing 1 silent 188 silently 72 silesian 1 silhouette 1 silhouetted 1 silk 50 silken 2 silks 3 silkworm 2 sill 17 silliness 1 silly 13 silver 128 silvered 1 silverware 2 silvery 4 similar 129 similarity 2 similarly 19 simon 56 simple 139 simplehearted 1 simpler 10 simplest 14 simpleton 1 simpletons 1 simplicity 30 simplifies 1 simplify 1 simplifying 1 simply 91 simpson 1 simulate 14 simulated 3 simulates 2 simulating 4 simultaneous 4 simultaneously 29 sin 23 since 260 sincere 22 sincerely 20 sincerity 9 sinclair 1 sinew 2 sinews 3 sinewy 6 sinful 4 sinfulness 1 sing 36 singed 2 singer 6 singers 15 singing 49 single 173 singlehanded 2 singleness 2 singles 2 singly 12 sings 4 singsong 3 singular 36 singularity 1 singularly 2 sinister 16 sink 13 sinking 21 sinks 1 sinned 3 sinner 4 sinners 5 sinning 2 sins 10 sinuous 2 sinus 56 sinuses 48 sioux 3 sip 2 sipped 1 sipping 3 sir 177 sird 1 sire 32 sirin 1 sismondi 1 sister 144 sisters 16 sistine 1 sit 89 site 32 sites 9 sits 6 sitting 269 sittings 1 situ 3 situate 1 situated 59 situation 87 situations 33 sitz 1 sivtsev 2 six 176 sixteen 31 sixteenth 11 sixth 51 sixties 1 sixty 30 size 184 sized 3 sizes 2 skein 2 skeleton 35 skelter 1 skeptically 2 skepticism 1 skeptics 1 sketch 9 sketched 3 sketches 2 skewers 2 ski 1 skiagram 10 skiagrams 15 skiagraphy 3 skies 1 skilful 1 skill 34 skilled 21 skillful 16 skillfully 8 skin 579 skinned 2 skinny 2 skins 4 skipped 1 skipper 2 skippers 1 skirmish 1 skirmishers 4 skirmishes 1 skirmishing 6 skirt 17 skirted 5 skirts 8 skirving 1 skits 1 skittish 1 skittles 2 skull 71 skullcap 1 sky 68 skylight 4 skyline 1 skyward 1 slab 4 slabs 2 slack 4 slacken 2 slackened 2 slackening 4 slackens 1 slackness 1 slafe 1 slain 6 slam 3 slammed 11 slamming 2 slander 2 slandered 1 slang 2 slanting 8 slap 2 slapped 3 slapping 4 slash 2 slashed 3 slate 3 slater 1 slaughter 6 slaughtered 3 slaughtering 1 slav 1 slave 78 slaveholder 2 slaveholders 2 slaveholding 2 slavery 211 slaves 92 slavey 1 slavish 1 slay 7 slaying 2 sledge 1 sleek 5 sleeker 2 sleep 113 sleeper 3 sleepers 2 sleepily 1 sleepiness 1 sleeping 33 sleepless 15 sleeplessness 4 sleeps 3 sleepy 20 sleeve 27 sleeves 30 sleigh 39 sleighs 11 slender 26 slenderest 1 slept 35 sleuth 1 slew 3 slice 5 slices 1 slid 2 slide 4 slidell 1 sliding 3 slight 114 slighted 3 slighter 3 slightest 25 slightly 84 slim 13 slime 1 sling 2 slinging 1 slink 2 slip 24 slipped 30 slipper 3 slippered 3 slippers 10 slippery 5 slipping 20 slips 5 slit 6 slits 1 slitting 2 sloane 1 sloat 1 slobbering 1 sloboda 4 slogan 7 slogans 2 sloop 2 sloops 1 slop 1 slope 21 slopes 5 sloping 6 slot 1 sloth 2 slough 30 sloughed 2 sloughing 15 sloughs 23 sloughy 3 slovaks 1 slovenly 1 slow 65 slowed 1 slower 4 slowing 2 slowly 133 slowness 3 sluggish 2 sluggishly 2 sluiceways 1 slumber 3 slumbering 2 slump 1 slums 4 slung 3 slur 3 slurred 1 slurring 2 slut 2 sly 16 slyboots 1 smack 5 smacked 3 smacking 2 small 527 smaller 51 smallest 12 smalley 1 smallish 1 smallpox 1 smart 24 smarten 1 smartened 1 smarter 1 smartest 1 smarting 2 smartly 5 smartness 2 smash 4 smashed 10 smasher 1 smashing 1 smear 2 smeared 13 smearing 2 smell 50 smelled 6 smelling 5 smells 1 smelt 4 smelter 1 smelters 2 smelting 1 smile 426 smiled 158 smiles 18 smiling 161 smilingly 24 smirched 1 smite 3 smith 21 smithereens 1 smiths 5 smithy 1 smitten 1 smock 3 smoke 144 smoked 11 smokeless 1 smoker 1 smokers 2 smokes 2 smoking 17 smoldering 2 smolensk 102 smolyaninov 2 smooth 57 smoothed 10 smoother 1 smoothing 9 smoothly 11 smoothness 2 smote 4 smother 1 smothered 2 smudge 1 smuggled 3 smugglers 3 smuggling 3 smythe 2 sn 1 snack 1 snacks 1 snaffle 1 snail 1 snake 13 snakes 6 snakish 1 snap 9 snapped 6 snapping 4 snare 1 snarl 2 snarled 3 snatch 8 snatched 15 snatches 4 snatching 6 sneer 6 sneered 2 sneering 2 sniff 1 sniffed 4 sniffing 6 snigger 1 snipped 1 sniveling 1 snore 1 snored 1 snoring 6 snort 4 snorted 9 snorting 3 snout 3 snow 86 snowballs 1 snowbanks 1 snowed 1 snowflakes 1 snows 2 snowy 5 snub 6 snuff 11 snuffbox 26 snuffboxes 2 snuffing 1 snuffles 4 snuffling 1 snug 4 snuggery 2 snuggling 1 snugly 1 so 3017 soak 2 soaked 17 soaking 1 soames 1 soap 7 soar 1 soared 1 soaring 1 sob 19 sobbed 13 sobbing 25 sober 7 sobered 1 soberly 1 sobs 41 soccer 1 social 81 socialism 8 socialist 9 socialistic 6 socialists 14 socially 3 societies 18 society 169 sociological 1 sociology 1 sock 2 socket 5 sockets 1 socks 1 socrates 1 soda 17 sodden 12 sodium 5 sofa 84 sofas 1 soft 185 soften 14 softened 28 softening 14 softens 2 softer 10 softly 42 softness 7 software 8 soie 1 soil 93 soiled 2 soilers 1 soiling 1 soils 1 soiree 5 soirees 5 sojourn 3 sokolniki 8 sokolnitz 4 sokolov 3 sol 1 solace 1 solar 3 sold 49 soldau 1 solder 1 soldier 215 soldierly 2 soldiers 411 sole 70 solecism 1 soled 1 solely 19 solemn 55 solemnity 12 solemnly 23 soles 4 solfa 1 solfeggio 1 solicit 8 solicitation 3 solicitations 1 solicited 3 solicitor 3 solicitude 6 solid 41 solidarity 2 solidification 1 solidified 2 solidity 1 solids 1 solitary 26 solitude 18 soll 1 solo 1 solomon 6 solution 109 solutions 4 solvable 1 solve 18 solved 19 solvent 1 solvents 1 solving 3 somber 2 somberly 1 sombre 6 some 1536 somebody 21 someday 6 somehow 13 someone 160 somerset 1 something 683 sometime 1 sometimes 425 somewhat 46 somewhere 57 sommes 1 somnambulist 1 son 343 sonata 3 song 38 songs 14 songstress 1 sonorous 5 sons 43 sont 2 sontnya 1 sonya 447 soon 421 sooner 33 soot 3 soothe 5 soothed 3 soothing 16 soothingly 1 sooty 1 sophia 4 sophie 5 sophism 1 sophisticated 1 sophy 1 soporific 1 sorbier 1 sorbonne 1 sordes 3 sordid 4 sore 81 sorely 5 sores 43 sorrel 2 sorrow 60 sorrowful 9 sorrowfully 3 sorrows 6 sorry 77 sort 91 sorted 1 sorter 2 sorting 5 sorts 23 sot 1 soto 1 sots 1 sottish 1 sought 89 soul 168 souled 1 soulless 1 souls 17 sound 219 sounded 32 sounder 2 sounding 6 soundly 1 soundness 4 sounds 94 sount 1 soup 12 soups 1 sour 4 source 97 sources 31 soured 1 sous 2 soused 1 soutenir 1 south 318 southampton 3 southeast 4 southerly 1 southern 196 southerner 1 southerners 3 southerton 1 southward 6 southwest 17 southwestern 1 souvenir 1 souverain 1 souza 2 sov 2 sovereign 82 sovereigns 18 sovereignties 2 sovereignty 28 soviet 1 sow 4 sowed 2 sowing 6 sown 5 sows 1 soyez 1 soyna 1 space 65 spaces 37 spacious 2 spaciously 1 spade 2 spadefuls 2 spades 1 spain 74 spake 1 span 4 spangled 1 spaniard 1 spaniards 5 spanish 66 spanned 1 spanning 2 spare 27 spared 12 spares 1 sparing 2 sparingly 1 spark 7 sparkle 4 sparkled 5 sparkles 1 sparkling 15 sparks 10 sparrow 4 sparrows 1 spas 3 spasm 17 spasmodic 4 spasmodically 5 spasms 23 spasski 1 spastic 3 spat 2 spatial 1 spattered 2 spaulding 8 speak 255 speaker 25 speakers 5 speaking 185 speaks 11 spear 3 spears 1 special 159 specialise 1 specialised 2 specialist 8 specialists 1 specialized 3 specially 45 specie 12 species 14 specific 37 specifically 5 specification 1 specified 9 specify 1 specifying 1 specimen 14 specimens 4 speciously 1 speck 4 speckled 5 speckles 1 spectacle 16 spectacled 3 spectacles 41 spectacular 5 spectator 3 spectators 4 specter 1 specters 2 spectrum 1 speculating 1 speculation 6 speculative 4 speculator 5 speculators 7 sped 1 speech 82 speeches 13 speechless 1 speed 31 speedily 12 speeding 2 speedy 9 spell 9 spellbound 3 spelled 1 spelling 4 spells 1 spence 3 spend 32 spending 12 spends 1 spendthrift 1 spenser 1 spent 111 speranski 79 spermaceti 1 spermatic 4 sphagnum 2 spheno 1 sphere 31 spheres 6 spherical 1 sphincters 1 sphinx 4 sphinxes 1 spice 1 spicule 1 spicules 7 spider 2 spiders 1 spies 9 spike 2 spikes 1 spiking 1 spill 1 spilled 4 spilt 1 spin 3 spina 1 spinae 1 spinal 40 spinati 4 spindle 10 spindles 5 spine 35 spines 2 spinners 1 spinning 15 spinous 2 spinster 1 spinsters 1 spiral 7 spire 2 spirilla 4 spirit 167 spirited 12 spirits 42 spiritual 34 spirituality 3 spiritually 1 spirituelle 1 spirituous 1 spirochaeta 4 spirochaete 15 spirochaetes 6 spironema 2 spit 2 spite 117 spiteful 6 spitefully 1 spitting 2 spittoon 1 splash 4 splashed 6 splashing 14 spleen 11 splendid 77 splendidly 11 splendor 1 splendour 2 splenic 2 splint 17 splinter 4 splintered 1 splintering 1 splinters 5 splints 21 split 15 splitter 2 splitting 2 spluttered 3 spluttering 1 spoil 10 spoiled 18 spoiling 7 spoils 20 spoilsmen 2 spokane 1 spoke 218 spoken 92 spokesman 6 spokesmen 8 spoliation 1 sponge 7 sponged 6 sponges 1 sponging 3 spongiopilene 1 spongy 22 sponsor 5 sponsored 1 sponsors 3 sponsorship 2 spontaneity 1 spontaneous 19 spontaneously 9 spool 1 spools 1 spoon 36 spoonfuls 1 spoons 1 sporadic 1 spore 3 spores 15 sporing 1 sporothrix 1 sporotrichosis 4 sport 7 sporting 5 sports 2 sportsman 6 sportsmen 3 sporulation 2 spot 76 spotless 1 spots 12 spotswood 1 spotted 12 spouse 2 spouting 1 sprain 18 sprained 3 sprains 2 sprang 62 sprawled 1 sprawling 2 spray 4 sprayed 2 spraying 1 sprays 1 spread 193 spreading 62 spreads 53 spree 2 sprees 2 sprig 1 spring 70 springfield 3 springing 12 springs 17 springtime 2 sprinkle 1 sprinkled 7 sprinkling 2 sprinter 2 sprout 1 sprouted 2 sprouting 3 spruce 1 sprung 12 spun 9 spur 4 spurned 3 spurred 8 spurring 3 spurs 23 spurting 1 sputum 3 spy 14 spyer 1 spyglass 1 spying 1 sq 1 squad 3 squadron 66 squadrons 5 squadwon 1 squalid 1 squamous 9 squander 1 squanto 1 square 70 squared 2 squarely 5 squares 5 squat 1 squatted 5 squatter 5 squatters 4 squatting 8 squaw 1 squeaked 4 squeaking 4 squeaky 2 squealed 1 squealing 1 squeals 1 squeeze 5 squeezed 11 squeezing 6 squire 2 squires 1 squirrel 4 st 147 sta 1 stab 8 stabbed 2 stabbing 2 stability 4 stable 27 stables 4 stabling 1 stabs 5 staccato 3 stacked 2 stacks 2 stadium 1 stael 6 staff 144 staffs 5 stag 1 stage 108 stagecoach 5 stagecoaches 2 stages 45 stagger 4 staggered 13 staggering 12 stagnant 4 stagnating 1 stagnation 2 staid 7 stain 23 stained 35 staining 7 stains 8 stair 11 staircase 13 staircases 1 stairs 31 stairway 1 stake 24 staked 5 stakes 2 staking 1 stalactite 1 stale 4 stalk 3 stalked 1 stall 5 stallion 2 stallions 1 stalls 18 stalwart 1 stammered 5 stammering 1 stamp 46 stamped 9 stampede 2 stamping 3 stamps 4 stance 1 stanch 6 stand 89 standard 54 standardized 3 standards 23 standi 1 standing 218 standpoint 7 stands 19 standstill 2 stanford 2 stanley 1 stanton 3 stanwood 2 stanza 1 staphylococcal 5 staphylococci 9 staphylococcus 19 staple 4 staples 10 star 24 starch 2 starched 1 stare 5 stared 24 stares 1 staring 18 stark 10 starless 1 starlight 1 starring 1 starry 8 stars 31 start 67 started 96 starting 50 startings 2 startle 3 startled 18 startling 14 starts 4 starvation 11 starve 5 starved 2 starving 9 starwise 1 stasis 5 state 664 statecraft 4 stated 29 statehood 10 stateliness 2 stately 9 statement 42 statements 9 states 981 statesman 10 statesmanlike 1 statesmanship 2 statesmen 34 static 3 stating 5 station 52 stationary 16 stationed 32 stationmasters 1 stations 10 statistical 2 statisticians 2 statistics 5 statue 8 statues 2 statuesque 2 stature 5 status 30 statute 4 statutes 4 statutory 2 stay 74 stayed 39 staying 35 stays 2 stead 2 steadfast 1 steadfastly 2 steadily 41 steadings 1 steady 36 steal 6 stealing 3 steals 1 stealth 1 stealthily 7 steam 30 steamboat 5 steamboats 4 steamed 2 steamer 7 steamers 1 steaminess 1 steaming 2 steamship 3 steamships 2 steed 1 steel 30 steely 1 steep 12 steer 4 steered 1 steffens 1 stein 8 steins 1 stellate 2 stem 5 stemmed 1 stems 2 stench 1 stencil 2 stenographic 1 stenosis 2 stentorian 1 step 139 stepan 2 stepanovich 1 stepanych 1 stepdaughter 2 stepfather 21 stephen 6 stephens 2 stepmother 5 stepmothers 1 steppe 3 stepped 62 steppes 5 stepping 29 steps 188 stepsons 1 stereoscopic 1 stereotyped 1 sterile 9 sterilisation 9 sterilise 2 sterilised 43 steriliser 6 sterility 1 sterlet 2 sterlets 1 sterling 5 stern 65 sternal 1 sterne 1 sterner 2 sternly 42 sternness 1 sterno 13 sternum 18 steshka 1 stethoscope 2 steuben 2 steve 1 stevedore 1 stevens 3 stevenson 2 stew 1 steward 39 stewards 7 stewart 3 stick 36 sticking 11 sticks 5 sticky 5 stiff 20 stiffen 1 stiffened 3 stiffly 5 stiffness 34 stifle 7 stifled 5 stifles 2 stifling 2 stigmata 1 stile 2 stiles 2 still 922 stillness 15 stills 1 stimulant 2 stimulants 4 stimulate 6 stimulated 15 stimulating 13 stimulatingly 1 stimulation 8 stimuli 5 stimulus 10 sting 9 stinginess 1 stinging 9 stingy 4 stink 2 stinking 1 stint 2 stinted 1 stipulated 2 stipulates 1 stipulating 1 stipulation 1 stir 35 stirling 1 stirred 28 stirring 19 stirrup 8 stirrups 2 stirs 2 stitch 11 stitched 5 stitches 17 stitching 2 stock 33 stocked 2 stockholders 5 stocking 9 stockinged 1 stockings 17 stockman 1 stocks 17 stockton 1 stoffel 1 stoke 11 stole 3 stolen 23 stolypin 4 stomach 43 stomatitis 3 stone 72 stoned 5 stoner 19 stones 13 stonily 1 stony 6 stood 383 stool 5 stools 3 stoop 3 stooped 17 stooping 16 stop 99 stoper 6 stopford 1 stoppage 1 stopped 210 stopping 33 stops 5 storage 3 store 12 stored 6 storeroom 2 storerooms 2 stores 30 storied 2 stories 44 storing 2 storm 33 stormcloud 2 stormed 9 storming 1 storms 5 stormy 8 story 133 stoughton 1 stout 62 stouter 6 stoutest 2 stoutly 3 stoutness 2 stove 7 stoves 1 stowe 4 straggler 1 stragglers 8 straggling 7 straggly 1 straight 124 straighten 6 straightened 9 straightening 2 straightens 1 straighter 1 straightforward 3 strain 34 strained 14 straining 18 strains 11 strait 3 straitened 1 straits 4 stralsund 1 strand 5 strands 5 strange 220 strangely 24 strangeness 2 stranger 46 strangers 15 strangest 4 strangle 2 strangulated 4 strangulation 1 strap 5 strapped 1 strapping 2 straps 3 strata 1 strategic 18 strategical 1 strategically 1 strategics 2 strategist 2 strategy 12 strathpeffer 2 stratified 1 stratum 5 strauch 1 straw 21 strawberries 2 strawberry 1 stray 4 strayed 4 straying 2 streak 3 streaked 2 streaks 6 stream 76 streamed 13 streamers 2 streaming 6 streamlet 2 streams 11 streatham 4 street 180 streets 73 strength 183 strengthen 21 strengthened 19 strengthening 4 strengthens 2 strenuous 8 strenuously 2 streptcoccic 1 streptococcal 5 streptococci 18 streptococcic 3 streptococcus 13 streptothrix 3 stress 10 stressed 1 stressing 3 stretch 15 stretched 52 stretcher 13 stretchers 14 stretches 9 stretching 42 strewed 1 strewn 4 striated 1 stricken 10 strict 34 stricter 3 strictest 1 strictly 17 strictness 2 stricture 3 stride 4 strident 1 strides 8 striding 2 stridulous 1 strife 9 strike 39 striker 1 strikers 1 strikes 19 striking 59 strikingly 2 string 12 stringent 2 stringently 1 strings 7 strip 15 striped 9 stripes 9 stripped 15 strippers 1 stripping 5 strips 13 strive 6 striven 3 striving 6 strivings 1 strode 10 strogonov 2 stroke 31 stroked 7 strokes 4 stroking 9 stroll 3 strolled 4 strolling 1 stroma 8 stromilova 1 strong 168 stronger 49 strongest 13 stronghold 2 strongholds 1 strongly 41 strophanthin 1 strophanthus 1 stroud 1 strove 7 struck 145 structural 10 structurally 3 structure 41 structures 43 struggle 76 struggled 15 struggles 7 struggling 20 strumming 1 strut 1 struthers 2 strychnin 10 stuart 5 stuarts 2 stubble 7 stubborn 12 stubbornly 3 stubby 1 stuck 20 stud 3 studded 3 student 12 students 6 studied 17 studies 27 studio 2 studious 2 study 144 studying 11 stuff 11 stuffed 6 stuffs 1 stuffy 3 stumble 1 stumbled 14 stumbling 9 stump 23 stumps 6 stumpy 1 stung 3 stunned 1 stunning 1 stunted 1 stupefaction 1 stupefied 1 stupefying 1 stupendous 2 stupid 57 stupider 1 stupidest 3 stupidity 11 stupidly 1 stupor 1 sturdily 1 sturdy 10 stuttering 1 stuyvesant 1 stwaight 2 stwuck 1 sty 1 style 18 styled 4 stylet 2 stylish 1 styptics 4 suave 1 suavely 2 sub 23 subacute 2 subaltern 2 subcalcanean 1 subcapsular 1 subcarbonate 1 subclavian 20 subcrural 1 subcutaneous 121 subcutaneously 3 subdeltoid 1 subdivision 3 subdivisions 2 subdue 4 subdued 10 subduing 1 subjacent 11 subject 185 subjected 30 subjecting 1 subjection 8 subjective 4 subjects 67 subjugated 1 subjugates 1 subjugation 1 sublieutenancy 1 sublimate 8 sublime 8 sublimed 1 sublimis 1 sublimity 1 sublingual 1 submarine 13 submarines 7 submaxillary 6 submental 2 submerged 3 submission 20 submissive 10 submissively 7 submit 31 submits 2 submitted 27 submitting 9 submucous 4 subnormal 2 subordinate 10 subordinates 4 subordination 5 subperiosteal 2 subscapular 2 subscapularis 2 subscribe 6 subscribed 5 subscribers 1 subscription 5 subscriptions 1 subsequent 28 subsequently 26 subserous 2 subserve 4 subservience 2 subside 11 subsided 11 subsides 10 subsidiary 3 subsidies 3 subsiding 4 subsidized 3 subsidy 1 subsist 1 subsistence 3 subsisting 1 substance 49 substances 26 substantial 9 substantially 2 substantiate 1 substantive 1 substitute 14 substituted 11 substitutes 2 substituting 4 substitution 1 substitutions 1 subsynovial 2 subterranean 1 subtle 24 subtleties 1 subtly 2 subtracted 1 subungual 8 suburb 7 suburban 3 suburbs 1 subversion 1 subversive 3 subvert 1 subverted 1 subverting 1 subways 1 succeed 16 succeeded 34 succeeding 6 succeeds 5 success 93 successes 10 successful 56 successfully 25 succession 19 successive 17 successively 1 successor 17 successors 3 succinct 1 succor 3 succour 1 succumb 12 succumbing 1 succumbs 1 such 1436 suck 3 sucked 4 sucking 1 suckling 2 sucks 1 suction 24 sudan 1 sudden 79 suddenly 496 suddenness 1 sue 4 sued 1 suez 3 suffer 55 sufferance 1 suffered 63 sufferer 6 suffering 112 sufferings 25 suffers 19 suffice 6 sufficed 3 suffices 2 sufficiency 2 sufficient 75 sufficiently 32 suffocating 1 suffocation 5 suffragan 1 suffrage 115 suffrages 2 suffragists 9 suffused 5 sugar 51 sugary 1 suggest 24 suggested 69 suggesting 13 suggestion 24 suggestions 7 suggestive 11 suggestiveness 1 suggests 10 suicidal 5 suicide 10 suis 4 suit 25 suitability 1 suitable 31 suitably 2 suitcase 1 suite 79 suited 15 suites 7 suitor 8 suitors 5 suits 8 sukharev 6 sukhtelen 2 sulcus 2 sulking 2 sulky 1 sullen 4 sullenly 4 sullivan 1 sulph 1 sulphate 5 sulphates 1 sulphide 1 sulphonal 1 sulphur 8 sulphuric 2 sultan 1 sultry 1 sum 53 summarily 4 summarise 2 summarises 1 summarize 3 summarized 1 summarizing 1 summary 16 summed 6 summer 61 summertime 1 summit 4 summits 2 summon 7 summoned 35 summoning 4 summons 11 summonses 1 sumner 6 sumptuous 2 sums 20 sumter 5 sun 82 sunbeam 2 sunbeams 1 sunburned 5 sunburnt 1 sunday 19 sundays 8 sundered 1 sundial 5 sundials 1 sundry 1 sunflower 1 sung 7 sunk 27 sunken 10 sunlight 10 sunny 6 sunrise 3 sunset 5 sunshine 21 sup 1 super 4 superabundance 1 superadded 14 superb 8 superbe 1 supercilious 1 superciliousness 1 superficial 95 superficially 4 superfluity 2 superfluous 10 superhuman 2 superintended 2 superintendent 14 superintending 1 superior 41 superiority 12 superiors 7 supermarket 1 supernatural 3 supernaturally 1 supernumerary 1 superscribed 1 superscripted 1 superscription 1 supersede 1 superseded 9 supersensitiveness 2 superstition 3 superstitions 2 superstitious 2 superstitiousness 1 supervene 6 supervened 1 supervenes 4 supervise 6 supervised 1 supervising 2 supervision 20 supervisor 1 supervisors 1 supinate 1 supinated 2 supination 2 supinator 2 supinators 3 supine 2 supineness 2 supper 64 suppers 4 suppert 2 supping 1 supplanted 3 supplants 1 supple 7 supplement 7 supplementary 3 supplemented 18 supplementing 2 suppleness 1 suppliant 1 supplication 1 supplied 36 supplier 2 suppliers 1 supplies 60 supply 84 supplying 11 support 104 supported 39 supporter 4 supporters 10 supporting 16 supports 6 suppose 59 supposed 45 supposedly 1 supposes 1 supposing 21 supposition 8 suppositions 2 suppress 14 suppressed 17 suppressing 4 suppression 5 suppurate 4 suppurates 3 suppurating 3 suppuration 148 suppurations 5 suppurative 31 supra 14 supraorbital 1 suprarenin 1 supremacy 28 supreme 74 sur 2 sure 123 surely 24 surest 3 surf 1 surface 279 surfaces 74 surg 7 surge 1 surgeon 43 surgeons 15 surgery 42 surgical 66 surgically 2 surging 1 surlier 1 surly 3 surmise 5 surmised 1 surmises 5 surmounted 3 surmounting 1 surname 1 surnames 1 surpassed 3 surpassing 3 surpliced 1 surplus 11 surprise 107 surprised 80 surprising 15 surprisingly 3 surrender 37 surrendered 24 surrendering 5 surrenders 1 surrey 5 surround 12 surrounded 104 surrounding 100 surroundings 43 surrounds 7 survey 10 surveyed 5 surveying 4 surveyor 3 surveyors 1 surveys 1 survival 4 survive 18 survived 8 survives 5 surviving 2 survivor 3 susan 5 susceptible 7 sushchevski 1 suspect 12 suspected 26 suspecting 3 suspects 2 suspend 6 suspended 14 suspending 1 suspense 6 suspension 2 suspensions 1 suspicion 21 suspicions 6 suspicious 11 susquehanna 3 sussex 1 sustain 15 sustained 28 sustaining 5 sustenance 1 sutherland 11 sutler 4 sutlers 3 sutter 1 sutton 2 suture 37 sutured 11 sutures 28 suturing 3 suvara 1 suvorov 20 suvorovs 3 svayka 1 sventsyani 5 swab 2 swabbed 1 swabbing 3 swabs 4 swag 1 swagger 3 swaggerer 1 swaggering 1 swaggeringly 1 swain 2 swallow 13 swallowed 10 swallowing 9 swam 2 swamp 6 swamped 1 swamps 6 swan 2 swandam 8 swank 1 swap 1 swarm 7 swarmed 4 swarming 5 swarthy 6 swash 1 sway 11 swayed 28 swaying 31 sways 2 swear 12 swearing 1 swears 1 sweat 19 sweated 1 sweating 12 sweats 1 swede 1 sweden 5 swedes 5 swedish 7 sweep 16 sweeping 16 sweeps 1 sweet 35 sweetened 1 sweeter 2 sweetest 2 sweetheart 6 sweetish 1 sweetly 7 sweetness 4 sweets 6 swell 5 swelled 5 swelling 167 swellings 22 swells 3 swept 38 swerved 3 swerves 1 swerving 2 swift 30 swifter 1 swiftly 38 swiftness 5 swim 6 swimmer 1 swimming 5 swims 1 swindle 1 swindled 1 swindling 2 swindon 1 swine 1 swing 13 swinging 17 swish 2 swishing 1 swiss 6 switch 2 switched 1 switches 1 switzerland 8 swollen 58 swoon 2 swooped 2 swooping 2 sword 42 swords 10 swordsman 1 swore 7 sworn 6 swung 14 sychophants 1 sycosis 1 sydney 2 syllable 7 syllables 2 syllabus 7 sylvan 1 sylvis 1 symbiosis 1 symbol 6 symbolic 2 symbolized 2 symbols 7 syme 3 symmes 1 symmetrical 16 symmetrically 5 symmetry 7 sympathetic 22 sympathetically 4 sympathies 11 sympathize 5 sympathized 9 sympathizers 6 sympathy 57 symphysis 2 symptom 21 symptoms 171 synchondrosis 1 synchronously 1 syncopal 1 syncope 16 syndicalism 1 syndrome 1 synod 3 synonymous 5 synonyms 1 synostosis 4 synovia 2 synovial 98 synovitis 33 syntactic 1 synthesis 2 syphilis 170 syphilitic 151 syphiloma 2 syria 1 syrian 1 syringe 10 syringes 2 syringo 1 syringomyelia 3 syrupy 1 system 241 systematic 12 systematically 2 systems 13 systole 1 systolic 5 t 1318 ta 6 tabernacle 2 tabes 9 tabetic 1 table 296 tableaux 1 tables 19 tablet 2 tabletop 1 tablets 1 tabor 1 tabulate 1 tache 2 tacit 3 taciturn 7 taciturnity 1 tack 3 tacked 1 tacking 2 tackle 5 tackled 1 tact 14 tactful 2 tactic 1 tactical 3 tactician 2 tactics 7 tactile 1 tactless 1 taenia 3 tafa 2 taft 36 tag 2 tags 2 tail 40 tailed 3 tailing 1 tailless 1 tailor 7 tailors 2 tails 4 taint 5 take 616 taken 438 takeover 1 takes 153 taketh 1 takh 1 taking 304 takings 3 tale 21 talent 18 talented 1 talents 9 tales 17 talk 287 talkative 4 talked 105 talker 1 talkers 1 talking 203 talks 15 tall 74 taller 4 talleyrand 5 tallied 1 tallish 1 tallow 9 talma 1 tambov 1 tame 1 tamed 1 tammany 3 tampico 1 taney 4 tangerine 1 tangible 5 tangle 3 tangled 8 tank 2 tankerville 1 tanks 1 tantalizing 1 tantamount 2 tante 1 tap 10 tape 2 taper 5 tapering 2 tapers 4 tapes 2 tapestries 1 tapestry 1 tapped 10 tapping 16 tar 7 taras 3 tarbell 2 tardy 2 target 5 tariff 124 tariffs 19 tarred 1 tarry 1 tarrying 1 tarsal 4 tarso 1 tarsus 5 tartar 10 tarutino 32 tasha 2 task 49 tasks 3 tassel 1 tasseled 1 taste 23 tasted 6 tastes 8 tat 1 tatarinova 5 tatawinova 2 tate 1 tatterdemalions 1 tattered 16 tattle 1 tattoo 3 tattooed 1 tattooing 3 taught 21 taunt 1 taunted 5 taunts 2 taurida 4 taussig 1 taut 1 tavel 1 tavern 14 taverns 4 tawny 2 tax 84 taxation 36 taxed 5 taxes 63 taxi 1 taxing 5 taxpayer 2 taxpayers 5 taxpaying 2 taylor 11 te 1 tea 107 teach 27 teacher 10 teachers 14 teaching 18 teachings 2 team 8 teamster 2 tear 24 tearful 5 tearfully 1 tearing 22 tearless 1 tears 172 tearworn 1 tease 3 teased 1 teasing 2 teaspoonful 1 teatime 2 technical 12 technically 2 technique 3 technological 1 technology 1 tecumseh 2 ted 2 teddy 1 tedious 6 tedium 1 teemed 1 teenage 1 teenager 1 teeth 76 teetotaler 1 telangiectasis 4 telecommunication 1 telegram 6 telegraph 8 telegraphs 1 telephone 6 telescope 4 television 1 tell 492 teller 1 telling 75 tells 20 telly 1 telyanin 31 temerity 2 temper 38 temperament 5 temperamental 1 temperance 7 temperate 4 temperature 103 temperatures 4 tempered 7 tempest 3 tempestuous 1 temple 22 temples 18 temporal 8 temporarily 21 temporary 31 tempore 1 temporize 1 temporized 1 temporo 4 temps 3 tempt 2 temptation 10 temptations 8 tempted 4 tempting 4 tempts 1 ten 219 tenable 1 tenacious 4 tenaciously 4 tenacity 3 tenant 4 tenantry 3 tenants 7 tend 52 tended 6 tendencies 15 tendency 85 tender 88 tendered 2 tenderly 17 tenderness 96 tenders 1 tending 5 tendinitis 3 tendinous 1 tendo 7 tendon 129 tendons 72 tendre 2 tends 48 tenement 3 tenements 1 tenets 1 tenfold 6 tenn 3 tennessee 49 tennis 5 tennyson 1 teno 13 tenor 6 tenotomy 5 tens 16 tense 23 tensely 4 tensile 1 tension 40 tent 24 tentacles 1 tenth 19 tenths 5 tents 9 tenure 21 tepid 1 teratoma 4 terence 1 terentich 4 terenty 5 teres 3 term 133 termed 15 terminal 24 terminals 1 terminate 6 terminated 5 terminates 3 terminating 1 termination 12 terminations 6 terminus 1 terms 148 terrace 2 terraced 1 terrain 1 terrestrial 3 terrible 195 terribly 22 terrific 6 terrified 16 terrify 1 terrifying 5 territorial 18 territories 43 territory 114 terror 57 terrorising 1 terrorist 1 terrors 1 terse 1 tersely 1 tertiary 46 test 53 testament 4 tested 16 testes 1 testicle 4 testified 1 testify 3 testily 2 testimonials 1 testimony 7 testing 6 testis 3 tests 7 tetani 1 tetanic 12 tetanus 42 tetany 2 tete 9 tethered 3 tetragenus 2 teutonic 3 texan 2 texans 2 texas 63 text 26 textbook 3 textile 10 textiles 2 texts 7 texture 6 th 51 thabor 3 thaler 1 thames 2 than 1206 thank 105 thanked 19 thankful 4 thanking 2 thankless 1 thanks 39 thanksgiving 6 that 12512 thatch 1 thatched 2 thaw 2 thawing 2 the 80030 theah 1 theater 25 theaters 6 theatre 4 theatrical 4 theatrically 1 theatricals 4 thebes 1 thecal 3 thecally 1 thee 26 theft 3 thefts 1 their 2955 theirs 14 them 2241 theme 8 themes 3 themselves 304 then 1558 thence 10 thenceforth 1 theodore 28 theodosia 5 theological 3 theology 8 theoretical 5 theoreticians 2 theories 21 theorise 1 theorist 4 theorists 3 theory 79 therapeutic 9 therapeutics 2 therapist 1 therapy 1 there 2972 thereafter 4 thereby 32 therefore 186 therefrom 2 therein 6 thereof 26 thereon 1 theresa 3 thereto 1 thereupon 6 therewith 2 thermal 1 thermalgia 1 thermalgic 2 thermo 5 thermogene 1 thermometer 7 thermopylae 2 these 1231 thesis 2 they 3938 thick 77 thickened 34 thickening 27 thickenings 3 thickens 2 thicker 5 thickest 1 thicket 4 thickly 8 thickness 15 thicknesses 1 thief 12 thierry 3 thiers 13 thiersch 4 thieves 8 thigh 39 thighbone 1 thighs 2 thimble 1 thin 166 thine 3 thing 303 things 321 think 557 thinker 4 thinkers 4 thinking 137 thinks 25 thinly 1 thinned 4 thinner 10 thinness 2 thinning 1 thins 1 third 239 thirdly 8 thirds 43 thirst 13 thirsty 5 thirteen 32 thirteenth 11 thirties 2 thirtieth 3 thirty 123 this 4063 thither 8 thomas 33 thompson 1 thomson 9 thoracic 25 thorax 19 thoreau 1 thorn 2 thorns 4 thorough 14 thoroughbred 5 thoroughfare 2 thoroughly 45 thoroughness 1 those 1201 thou 42 though 650 thought 902 thoughtful 20 thoughtfully 11 thoughtfulness 1 thoughtless 4 thoughtlessly 1 thoughts 125 thousand 259 thousands 93 thousandth 4 thrashed 1 thrashing 3 thread 16 threadbare 1 threadneedle 2 threads 9 threat 11 threaten 10 threatened 38 threatening 26 threateningly 10 threatens 7 threats 7 three 584 threefold 3 threes 4 threescore 1 thresh 2 threshing 4 threshold 19 thresholds 1 threw 96 thrice 8 thrifty 3 thrill 16 thrilled 2 thrilling 6 thrive 2 thriving 6 throat 67 throats 4 throb 2 throbbed 2 throbbing 9 thrombi 4 thrombo 4 thrombosed 3 thrombosis 39 thrombotic 2 thrombus 24 throne 26 thrones 2 throng 12 thronged 6 thronging 2 throngs 2 throttle 2 throttling 1 through 815 throughout 78 throw 48 throwing 46 thrown 92 throws 7 thrummed 1 thrumming 1 thrust 42 thrusting 8 thrusts 1 thud 10 thudded 1 thudding 1 thuerassa 2 thumb 51 thumbs 2 thumped 1 thumping 3 thunder 9 thunderclaps 2 thundercloud 1 thundered 4 thundering 1 thunderstorm 1 thunderstorms 1 thurlow 1 thursday 7 thursdays 3 thus 212 thwaites 3 thwart 1 thwash 1 thwee 3 thwough 1 thwow 1 thy 47 thymus 1 thyreo 1 thyreoid 21 thyself 7 ti 7 tiara 1 tiberius 1 tibia 61 tibiae 4 tibial 10 tibialis 2 tic 3 tick 1 ticket 9 tickets 4 ticking 1 tickle 1 tickled 1 tickling 3 tidal 1 tide 33 tides 1 tidied 4 tidiness 1 tiding 2 tidings 5 tidy 4 tie 15 tied 40 tiens 1 tier 5 tierce 1 tiers 1 ties 24 tiger 3 tigers 1 tight 30 tighten 2 tightened 3 tightening 1 tighter 3 tightly 22 tightness 3 tikhon 82 til 2 tilde 3 tilden 6 tile 1 tiled 1 tiling 1 till 216 tillage 4 tilled 15 tiller 2 tillers 3 tilling 3 tillman 1 tilsit 16 tilt 1 tilted 3 tilting 2 tim 1 timber 15 timbered 1 timbers 3 time 1529 timed 1 timely 7 times 236 timetable 1 timid 31 timidity 4 timidly 36 timing 1 timofeevich 1 timofeevna 2 timokhin 30 timothee 1 timothy 3 tin 7 tincture 6 tinder 1 tinel 4 tinge 6 tinged 1 tingle 1 tingling 17 tiniest 1 tinker 1 tinned 1 tinsel 1 tint 11 tinted 9 tints 1 tiny 20 tip 8 tippecanoe 5 tipplers 1 tips 16 tipsy 13 tiptoe 24 tiptoes 2 tire 3 tired 40 tiredness 2 tireless 6 tires 1 tiresome 7 tiresomely 1 tis 5 tissue 579 tissues 293 tit 7 titanic 2 titi 1 title 39 titles 7 tittle 1 titus 2 tm 128 to 28766 toast 9 toastmaster 1 toasts 2 tobacco 48 tobacconist 1 tocchi 1 tocqueville 4 today 93 toe 36 toes 51 together 260 toi 2 toil 14 toilet 7 toilets 3 toiling 3 toils 4 token 11 tokens 1 tokyo 3 told 490 tolerable 4 tolerably 1 tolerant 1 tolerate 2 tolerated 8 toleration 12 toll 29 tolled 1 toller 15 tollers 1 tolls 1 tolly 17 tolstoi 1 tolstoy 13 tom 4 tomahawk 1 tomato 3 tomb 3 tomboy 1 tombs 1 tombstones 1 tomfoolery 1 tommy 1 tomorrow 112 tomowwow 3 tompkins 1 ton 7 tone 166 toned 4 tones 32 tongs 1 tongue 66 tongues 6 tonic 3 tonics 4 tonight 16 tonnage 4 tonne 1 tons 9 tonsil 4 tonsillar 2 tonsillitis 2 tonsils 7 tonus 1 tony 1 too 548 took 573 tool 7 tools 13 toombs 3 tooth 27 toothed 1 toothless 3 top 42 topcheenko 1 topeka 1 tophi 3 topic 11 topical 8 topics 34 topped 3 tops 3 topsy 3 torban 1 torch 6 torches 1 tore 18 tories 17 tormasov 3 torment 6 tormented 35 tormenting 11 torments 5 torn 60 tornado 1 torpedoed 1 torpedoes 1 torrent 2 torrents 1 torsion 5 torticollis 3 tortoise 7 tortuous 13 torture 8 tortured 10 tortures 1 torturing 3 tory 5 torzhok 6 toss 4 tossed 13 tossing 7 total 35 totaled 3 totally 9 tottenham 4 tottering 1 touch 72 touche 1 touched 78 touches 2 touching 41 touchingly 2 touchpans 1 tough 8 toujours 1 toulon 4 tour 12 toured 1 tourism 1 tourist 1 tourments 1 tournament 3 tourniquet 26 tourniquets 1 tousled 2 tout 12 tow 1 toward 331 towards 82 towel 6 towels 4 tower 9 towered 1 towering 2 towers 3 town 174 towns 78 townsfolk 2 townshend 13 township 4 townships 1 townsman 1 townsmen 1 toxaemia 18 toxaemias 1 toxaemic 1 toxic 19 toxin 13 toxins 51 toy 7 toying 2 toys 2 toyshop 1 tproo 2 tr 1 tra 2 trabeculae 2 trabecular 5 trace 36 traceable 1 traced 13 traces 23 trachea 5 tracheal 2 tracheotomy 6 tracing 3 track 32 trackless 1 tracks 17 tract 9 tractable 1 traction 8 tracts 7 trade 217 traded 3 trademark 31 trader 3 traders 18 trades 11 tradesman 9 tradesmen 12 tradespeople 2 trading 25 tradition 13 traditional 4 traditionally 1 traditions 19 trafalgar 3 traffic 22 tragedies 1 tragedy 9 tragic 9 trail 17 trailed 1 trailer 3 trailing 3 trails 12 train 57 trained 23 trainee 1 trainer 1 training 16 trainmen 2 trains 21 trait 7 traitor 20 traitorous 1 traitors 15 traits 3 trajectory 1 trakh 1 trammeled 1 tramp 12 tramped 1 tramping 2 trample 1 trampled 10 trampling 5 trance 2 tranquil 21 tranquility 2 tranquille 2 tranquillity 19 tranquillize 1 tranquillized 1 tranquilly 1 trans 2 transact 1 transaction 15 transactions 7 transcend 1 transcribe 5 transcriber 2 transcription 6 transfer 20 transference 10 transferences 1 transferred 52 transferring 3 transfers 3 transfigured 2 transfixed 2 transfixes 1 transform 3 transformation 16 transformed 23 transformer 1 transforming 3 transfusion 7 transgressed 1 transgresses 1 transgressions 1 transient 8 transit 2 transition 13 transitional 1 transitions 2 transitory 1 translate 4 translated 8 translating 2 translation 3 translations 1 translator 1 translucent 7 translucently 1 transmissible 1 transmission 8 transmit 14 transmitted 21 transmitting 4 transmoskva 1 transmuted 1 transparent 11 transparently 1 transpired 2 transplant 1 transplantation 13 transplanted 9 transplanting 3 transport 29 transportation 21 transported 7 transportee 1 transporting 3 transports 5 transshipments 1 transshipped 1 transudation 2 transudes 1 transuding 1 transverse 17 transversely 1 transylvania 3 trap 42 trapezius 4 trappers 4 trappings 1 traps 2 trash 3 trata 1 trauma 10 traumatic 50 traumatism 4 traun 1 travail 3 travel 29 traveled 13 traveler 19 travelers 11 traveling 20 travelled 8 traveller 4 travellers 2 travelling 4 travels 4 traverse 1 traversed 4 tray 8 treacheries 1 treacherous 1 treachery 14 tread 12 treading 6 treadmill 1 treason 23 treasonable 4 treasure 19 treasured 1 treasurer 3 treasures 2 treasuries 2 treasury 38 treat 31 treated 95 treaties 21 treating 22 treatise 1 treatises 3 treatment 464 treatments 1 treats 2 treaty 113 treble 2 trebled 1 tree 42 treeless 2 trees 51 treetops 1 trefoil 1 tremble 5 trembled 27 tremblement 1 trembles 1 trembling 49 tremendous 10 tremens 4 tremor 7 tremors 4 tremulous 8 trench 18 trenchant 1 trenches 4 trend 8 trendelenburg 3 trent 1 trenton 5 trepak 2 trephine 5 trephined 1 trepidation 3 trepoff 1 treponema 1 tres 4 tresor 1 trespass 1 trespasser 1 trespasses 1 tresses 2 trestle 1 trevelyan 2 trial 38 trials 5 triangle 6 triangles 1 triangular 2 tribe 4 tribes 6 tribesmen 1 tribunal 9 tribunals 4 tribune 3 tributaries 5 tributary 1 tribute 17 tributes 2 triceps 4 trichiniasis 1 trick 17 tricked 3 trickery 1 trickle 1 trickled 3 trickles 1 tricks 5 tricky 1 tried 225 tries 5 trifacial 1 trifies 1 trifle 11 trifled 1 trifles 16 trifling 12 trigeminal 4 trigeminus 1 trigger 4 trigone 3 trilled 1 trilling 1 trillion 5 trills 1 trim 5 trimly 1 trimmed 8 trimming 1 trincomalee 1 trinity 4 trional 1 trip 12 tripartite 2 triple 2 tripped 1 tripping 4 trips 1 trismus 5 trite 1 triumph 60 triumphal 2 triumphant 16 triumphantly 9 triumphed 2 triumphs 4 trivial 38 triviality 1 trocar 3 trochanter 7 trochanteric 1 trochlear 3 trod 3 trodden 15 troitsa 8 trolley 1 trollope 2 troop 2 trooped 1 trooper 2 troopers 1 troops 319 trop 1 trophic 20 trophies 3 trophy 4 tropical 10 tropics 2 trot 22 trotted 7 trotter 3 trotting 2 trouble 57 troubled 17 troubles 25 troublesome 10 troubling 5 trough 3 troughs 1 troupe 1 trouser 4 trousers 21 trousseau 4 trout 2 trouvez 1 trove 1 trowel 4 troy 3 troyka 13 troykas 5 truce 17 truck 1 true 205 truer 1 truly 18 trumbull 1 trumpet 3 trumpeters 2 trumpets 1 truncated 1 trunila 2 trunk 73 trunks 50 truss 1 trust 68 trusted 16 trustee 2 trustees 11 trustful 1 trustfulness 1 trusting 3 trusts 57 trustworthy 2 trusty 3 truth 115 truthful 2 truthfully 1 truths 3 try 87 trying 181 trypanosomiasis 1 tsar 56 tsarevich 12 tsarevo 4 tsaritsin 1 tsars 3 tserkov 3 tshausen 1 tss 1 tt 1 tu 4 tub 4 tubal 1 tube 45 tubercle 65 tubercles 3 tubercular 1 tuberculin 8 tuberculosis 77 tuberculous 241 tuberosity 4 tubes 13 tubman 1 tubs 7 tubular 5 tubules 2 tubulo 3 tuchkov 6 tuck 2 tucked 12 tucking 3 tucson 2 tudor 1 tuesday 5 tuesdays 1 tuffier 1 tuft 4 tufts 7 tug 4 tugendbund 5 tugged 9 tugging 2 tula 8 tumble 3 tumbled 5 tumbler 7 tumblerful 1 tumblerfuls 1 tumblers 3 tumbling 1 tumor 2 tumour 223 tumours 189 tumult 2 tumultuous 2 tumultuously 1 tune 15 tuned 4 tunes 1 tunic 2 tunica 13 tunics 1 tuning 1 tunnel 4 tunneled 1 tunnels 2 turbid 2 turbinate 1 turbine 1 turbulence 2 turbulent 2 turenne 2 turf 3 turk 3 turkey 20 turkish 12 turks 6 turmoil 10 turn 188 turned 502 turner 25 turning 208 turnover 1 turns 26 turpentine 6 turreted 1 turrets 2 turtle 2 turvy 2 tuscans 1 tuscaroras 1 tushin 75 tut 11 tutelage 5 tutolmin 3 tutor 17 tutoring 1 tutors 9 tutti 1 tutuila 3 tver 7 tverskaya 1 tverskoy 2 twaddle 1 twain 1 twanging 1 twansports 1 twas 3 tweasuwy 1 tweed 6 twelfth 11 twelve 43 twelvemonth 2 twenties 1 twentieth 19 twenty 272 twice 84 twicks 1 twig 1 twigs 3 twilight 7 twin 4 twinges 1 twinkle 2 twinkled 5 twinkling 4 twins 4 twirled 4 twirling 2 twist 14 twisted 21 twisting 10 twists 1 twitch 6 twitched 15 twitches 1 twitching 17 twitchings 3 twitter 1 two 1138 twofold 3 twopence 2 twos 3 twot 1 twue 1 twy 3 txt 8 ty 1 tying 8 tyler 15 tympanitic 1 tympanum 1 tyne 1 type 87 types 33 typewrite 1 typewriter 3 typewriting 4 typewritist 1 typewritten 6 typhoid 21 typhosus 2 typhus 3 typical 31 typically 3 tyrannical 4 tyranny 9 tyrant 3 tyre 1 tyrosin 1 tz 1 u 25 udder 1 uffa 1 ugh 3 uglier 1 ugliness 1 ugly 11 uhlan 3 uhlans 28 ukase 4 ukraine 3 ukrainian 2 ukranian 1 ulcer 158 ulcerans 1 ulcerate 10 ulcerated 15 ulcerates 3 ulcerating 4 ulceration 53 ulcerative 4 ulcers 119 ulm 12 ulna 7 ulnae 2 ulnar 17 ulnaris 3 ulster 6 ulsters 1 ulterior 1 ultimate 16 ultimately 29 ultimatum 1 ultra 2 ulysses 3 ulyulyu 6 ulyulyuing 2 ulyulyulyu 2 ulyulyulyulyu 1 umbilical 2 umbilicus 3 umbrella 5 un 19 unabashed 3 unabated 1 unable 146 unabsorbable 2 unacceptable 2 unaccompanied 1 unaccountable 3 unaccustomed 7 unacknowledged 1 unacquainted 2 unaffected 6 unaided 1 unalienable 1 unalterable 1 unalterably 1 unaltered 3 unamiable 1 unanimity 1 unanimous 10 unanimously 3 unanswerable 3 unanswered 2 unappreciated 1 unapproachability 1 unapproachable 2 unarmed 4 unassailable 1 unattainable 5 unattended 5 unattractive 2 unattractively 1 unauthorized 1 unavailing 1 unavenged 1 unavoidable 10 unaware 8 unawares 4 unbearable 2 unbecoming 2 unbelief 1 unbent 1 unborn 1 unbounded 1 unbreakable 1 unbroken 16 unbrushed 1 unburned 2 unbuttoned 12 unbuttoning 1 unbuttressed 1 uncalled 3 uncanny 1 uncarpeted 1 unceasing 2 unceasingly 5 uncertain 30 uncertainties 2 uncertainty 17 unchanged 15 unchanging 7 unchangingly 1 unclasped 1 unclasping 1 unclaspings 1 uncle 135 unclean 2 unclear 1 unclothed 1 unclouded 2 uncomfortable 25 uncommon 29 uncommonly 2 uncomplaining 1 uncomplainingly 1 uncomplicated 6 uncomprehended 2 uncompromising 6 unconcern 3 unconcerned 2 unconcernedly 3 unconciously 1 unconciousness 1 unconditional 3 unconditionally 2 unconditioned 2 unconfirmed 1 uncongenial 1 unconnected 2 unconquerable 1 unconscious 24 unconsciously 29 unconsciousness 3 unconsidered 1 unconstitutional 16 uncontrollable 4 uncontrollably 1 uncontrolled 3 unconvinced 2 uncorded 2 uncourteous 1 uncouth 2 uncover 2 uncovered 12 uncrossing 1 unction 5 uncultivated 1 uncut 1 und 2 undah 1 undated 1 undaunted 4 undecided 13 undefended 1 undefinable 3 undefined 4 undemocratic 2 under 963 underclothes 1 underclothing 6 undercurrents 3 underdone 1 underfoot 2 undergo 44 undergoes 18 undergoing 12 undergone 9 undergraduate 1 underground 8 undergrowth 1 underline 4 underlip 1 underlying 19 undermine 6 undermined 5 undermining 5 underneath 9 undersell 1 undersized 1 understand 412 understandable 3 understanding 78 understands 7 understood 222 undertake 16 undertaken 16 undertakers 1 undertakes 1 undertaking 24 undertakings 7 undertone 1 undertones 1 undertook 9 undervalued 2 underwood 46 undeserved 2 undeservedly 1 undesirable 8 undetermined 1 undeveloped 2 undid 1 undifferentiated 2 undignified 1 undiluted 3 undiscerning 2 undisciplined 1 undisguised 1 undismayed 2 undisputed 1 undisturbed 13 undivided 2 undo 5 undoing 3 undone 5 undoubted 10 undoubtedly 31 undreamed 1 undress 9 undressed 12 undressing 13 undue 8 undulating 1 undulations 1 unduly 11 undyed 1 une 8 unearthed 1 uneasily 18 uneasiness 11 uneasy 15 unelected 1 unembarrassed 1 unemployed 3 unemployment 4 unending 3 unendurable 1 unenforceability 2 unenforced 2 unentrenched 3 unequal 6 unequaled 1 unequally 3 unequivocal 1 unerring 1 unerringly 1 unescorted 1 uneven 13 unevenly 3 unevoked 1 unexecuted 4 unexpected 45 unexpectedly 57 unexpectedness 2 unexpended 1 unexplained 3 unexplored 3 unexposed 1 unexpressed 2 unfailingly 2 unfair 10 unfairly 1 unfaithful 1 unfamiliar 13 unfastened 6 unfathomable 5 unfavorable 8 unfavourable 7 unfeigned 1 unfenced 1 unfettered 2 unfinished 9 unfit 5 unfits 1 unflinching 1 unfold 1 unfolded 5 unfolding 4 unfordable 1 unforeseen 6 unfortunate 36 unfortunately 11 unfortunates 2 unfounded 1 unfriendly 4 unfrocked 1 unfulfilled 1 unfurled 1 ungainly 3 ungenerous 1 ungenerously 1 ungodly 1 ungovernable 1 ungraceful 2 ungrateful 7 unguarded 2 unhampered 1 unhappily 3 unhappiness 3 unhappy 34 unharness 2 unharnessed 3 unhealthy 14 unheard 6 unheeded 2 unheroic 1 unhesitating 2 unhesitatingly 1 unhindered 2 unhinged 1 unhooked 1 unicorn 1 unified 1 uniform 123 uniformed 2 uniformity 6 uniformly 7 uniforms 34 unifying 1 unilateral 6 unilocular 1 unimpaired 1 unimpeachable 2 unimportance 3 unimportant 12 uninflamed 1 uninfluenced 1 uninitiated 1 uninjured 5 uninstructed 1 unintelligible 7 unintended 1 unintentional 2 unintentionally 3 uninterested 1 uninteresting 2 uninterrupted 3 uninterruptedly 2 uninvited 1 union 273 unionism 3 unionist 2 unionists 7 unions 53 unique 14 unison 1 unit 10 unite 36 united 561 unites 3 uniting 15 units 13 unity 19 univers 1 universal 37 universally 7 universe 11 universities 7 university 31 unjust 10 unjustifiable 1 unjustly 5 unkempt 1 unkind 4 unknown 87 unknowns 1 unlawful 10 unlearned 2 unleashed 1 unless 94 unlicensed 1 unlicked 1 unlifting 1 unlike 46 unlikely 8 unlimbered 4 unlimited 8 unlink 2 unload 3 unloaded 3 unloading 3 unlocked 8 unlocking 3 unloosed 1 unlucky 6 unmade 1 unmarred 1 unmarried 9 unmarry 1 unmask 1 unmeaningly 1 unmelted 1 unmercifully 1 unmilitary 1 unmindful 2 unmistakable 2 unmistakably 1 unmixed 1 unmoved 3 unna 2 unnamed 3 unnatural 37 unnaturally 14 unnaturalness 1 unnecessarily 1 unnecessary 30 unnerved 1 unnoticed 14 unobliterated 1 unobservant 3 unobserved 6 unobtrusive 1 unobtrusively 2 unoccupied 6 unofficial 6 unofficially 1 unopened 2 unopposed 1 unorganized 1 unpack 1 unpacked 1 unpacking 1 unpaid 4 unpapered 1 unparalleled 3 unpardoned 1 unplaited 1 unplastered 2 unpleasant 53 unpleasantly 14 unpleasantness 5 unpolished 1 unpopular 2 unpopularity 2 unpracticed 1 unprecedented 5 unpretentious 1 unprofitable 2 unprovoked 1 unpunished 2 unqualified 2 unquestionable 3 unquestionably 3 unquestioning 1 unravel 2 unraveled 1 unravelled 1 unravelling 1 unreal 2 unreaped 1 unreasonable 11 unreasonably 1 unreasoning 9 unrecognisable 1 unrecognizable 2 unrecorded 1 unreduced 1 unregulated 1 unrelated 2 unremitting 1 unrepaired 1 unrest 8 unrestrainable 1 unrestrained 1 unrestricted 2 unripe 1 unrolling 1 unsaddling 1 unsanitary 1 unsatisfactory 10 unsatisfied 1 unscrupulous 1 unseat 1 unseemly 7 unseen 16 unselfishly 1 unsettled 5 unshakable 4 unshaken 2 unshapely 1 unshaven 2 unsheathed 1 unsheathing 1 unsightliness 1 unsightly 9 unskilful 1 unskilled 2 unsmiling 1 unsociable 1 unsoldierly 1 unsolicited 4 unsolved 5 unsound 3 unsoundly 1 unsparing 2 unsparingly 1 unspent 1 unspoilt 1 unspoken 1 unstable 3 unsteady 6 unstinted 2 unstrapping 1 unstriped 1 unsuccessful 8 unsuitable 8 unsuited 3 unsurpassable 1 unsuspected 2 unswervingly 1 unsymmetrically 1 unsympathizing 1 unsystematic 1 untamed 1 untaxed 1 unteachable 1 unterkunft 4 unthinkable 7 untidiness 1 untidy 1 untied 2 until 325 untilled 2 untimely 3 untiring 1 unto 7 untold 3 untouched 5 untrained 2 untreated 6 untried 1 untroubled 3 untrue 7 untrustworthy 1 untruth 3 unturned 2 untying 1 ununited 1 unused 2 unusual 32 unusually 12 unutterable 1 unvarying 1 unveiling 1 unvexed 3 unwanted 1 unwary 1 unweaned 1 unwelcome 1 unwell 9 unwilling 12 unwillingly 1 unwillingness 2 unwinding 2 unwise 3 unwittingly 2 unwonted 2 unwontedly 1 unworthiness 1 unworthy 13 unwound 2 unwounded 5 unwrapped 1 unwrinkled 2 unwritten 5 unyielding 2 up 2284 upbraid 2 upbraided 1 upbraiding 2 upbringing 1 upbuilding 1 update 1 updated 4 upgrade 1 upheaval 4 upheld 3 uphill 6 uphold 5 upholder 1 upholding 4 upholds 1 upkeep 2 upland 6 uplands 3 uplifted 7 uplifting 1 uplifts 1 upon 1111 upper 130 uppermost 4 upraised 2 upright 8 uprightness 1 uprising 12 uprisings 5 uproar 4 uprush 1 upset 26 upsetting 3 upside 4 upstairs 27 upstream 1 upswing 1 upward 18 upwards 21 urachus 1 urate 4 urates 4 uratic 1 urban 6 urbanity 1 urchin 1 urea 2 ureter 1 ureters 2 urethra 9 urethral 3 urethritis 3 urge 10 urged 51 urgency 4 urgent 13 urgently 5 urges 1 urging 16 uric 1 urica 2 urinary 9 urine 30 urope 3 urticaria 1 urticarial 1 uruguay 1 urusov 1 us 684 usage 10 use 320 used 276 useful 73 usefulness 6 useless 48 uselessly 8 uselessness 2 user 8 users 4 uses 9 usher 1 ushered 8 ushering 2 using 48 usual 178 usually 529 usurpation 1 usurpations 2 usurped 1 usurper 3 usvyazh 1 ut 4 utah 21 utensils 2 uterine 11 utero 1 uterus 16 utf 1 utilise 1 utilised 1 utilities 10 utility 7 utilize 1 utilized 2 utilizes 1 utilizing 1 utitsa 6 utmost 18 utopian 2 utter 41 utterance 6 utterances 1 uttered 58 uttering 18 utterly 21 uttermost 5 utters 1 uvarka 3 uvarov 9 uvula 1 v 51 va 7 vacancies 13 vacancy 10 vacant 10 vacantly 3 vacated 3 vacation 1 vaccination 2 vaccine 17 vaccines 13 vacillating 2 vacillation 1 vacuous 2 vacuum 1 vagabond 2 vagabonds 1 vagaries 1 vagina 5 vaginal 3 vaginitis 1 vagrancy 1 vagrant 2 vagrants 1 vague 39 vaguely 15 vagueness 1 vagus 4 vain 30 vainglorious 1 vainly 20 val 1 vale 1 valentine 1 valet 44 valets 5 valgum 1 valgus 5 valiant 8 valiantly 1 valid 10 validity 4 valise 1 vallandigham 2 valley 78 valleys 11 valor 9 valour 1 valse 2 valses 2 valuable 33 valuables 3 valuation 1 value 106 valued 15 valueless 2 values 7 valuev 5 valuevo 6 valve 6 valves 20 valvular 3 van 19 vancouver 1 vandalia 1 vanderbilts 2 vanguard 17 vanilla 6 vanish 8 vanished 35 vanishes 3 vanishing 7 vanities 1 vanity 18 vanka 1 vanquish 4 vanquished 10 vanquishing 1 vantage 2 vanya 1 vapor 1 vapour 1 vara 2 variable 16 variance 5 variant 1 variation 8 variations 16 varices 1 varicocele 1 varicose 42 varicosity 4 varied 12 variegated 1 varies 55 varieties 111 variety 83 various 155 variously 8 varix 33 varnish 3 varnished 1 varum 1 varus 2 varvarka 1 vary 56 varying 34 vas 1 vasa 1 vascular 44 vascularised 1 vascularity 6 vase 1 vaselin 1 vaseline 7 vases 1 vasilchikov 1 vasilevich 2 vasilevna 1 vasili 243 vasilich 10 vasilisa 1 vasilyevich 3 vaska 16 vaso 6 vasomotor 1 vasorum 1 vassal 1 vassalage 1 vassar 3 vast 48 vastus 1 vat 1 vault 8 ve 153 veal 1 vector 1 veered 2 vegetable 5 vegetables 6 vegetarian 1 vegetation 3 vegetative 1 vehemence 6 vehement 4 vehemently 6 vehicle 14 vehicles 21 veil 16 veiled 11 vein 116 veins 134 veldt 4 vell 2 velocity 9 velvet 18 velvets 1 velvety 5 vena 3 venae 1 venal 1 venango 2 vendor 1 venerable 7 veneration 4 venereal 12 venesection 3 venetian 2 venezuela 15 venezuelan 8 vengeance 8 venial 2 venice 3 venner 1 venom 3 venomous 4 venomously 1 venosum 3 venous 57 vent 12 venter 1 ventilate 1 ventilated 1 ventilator 14 ventilators 1 ventral 1 ventricle 1 ventricles 1 venture 17 ventured 30 ventures 1 venturing 2 venturous 1 venue 2 venules 1 venus 1 ver 2 vera 75 veranda 8 verb 2 verbal 7 verbally 1 verbatim 1 verbs 1 verdict 11 verdure 4 vere 2 vereshchagin 24 verge 8 vergennes 3 verging 2 veriest 1 verified 1 verifies 1 verify 2 verifying 1 verily 2 veritable 3 verlegt 1 verlust 1 vermont 12 vernal 1 vernon 4 verona 1 veronal 1 verrons 1 verruca 2 verrucosus 2 versa 5 versailles 3 verse 8 versed 2 verser 2 verses 22 version 10 versions 3 verso 1 versus 5 vert 1 vertebra 2 vertebrae 20 vertebral 19 vertex 1 vertical 6 vertically 5 very 1340 vesenny 4 vesenya 3 vesical 1 vesication 2 vesicle 1 vesicles 7 vesico 1 vesna 1 vespers 3 vespertime 1 vessel 137 vessels 249 vest 5 vestas 1 vested 21 vestibule 11 vestige 2 vestiges 1 vesting 2 vestment 1 vestments 2 vestries 1 vestry 1 vests 1 veteran 5 veterans 8 veterinarians 2 veterinary 3 veto 9 vetoed 6 vetoes 1 vetoing 1 veux 1 vewy 8 vex 3 vexation 26 vexations 1 vexatious 3 vexed 21 vexing 1 vi 37 via 3 viable 2 viands 2 vibrated 2 vibrating 3 vibration 2 vibratory 1 vibrion 2 vicar 2 vice 58 viceroy 1 vices 2 vicinity 49 vicious 18 viciously 2 vicissitudes 3 vicksburg 3 vicomte 43 victim 18 victimized 1 victims 9 victoire 1 victor 8 victoria 6 victories 19 victorieuses 1 victorious 16 victoriously 1 victors 3 victory 131 victuals 1 video 2 vie 3 vienna 51 viennese 3 viens 2 vient 1 vierge 1 vieux 1 view 179 viewed 21 viewer 1 viewing 7 viewpoint 1 views 64 vif 1 viflyanka 2 vight 1 vigil 1 vigilance 4 vigilant 2 vigilantes 1 vigor 13 vigorous 40 vigorously 24 vigour 1 vii 34 viii 39 viktorovna 1 vilas 1 vile 16 vileness 4 vilest 3 viliya 1 vilkavisski 2 vill 3 villa 8 village 160 villager 1 villagers 1 villages 38 villain 14 villainies 1 villains 7 villainy 1 villas 2 ville 4 villeneuve 2 villi 1 villier 1 villous 3 vilna 32 vinaigrette 1 vincennes 2 vincent 10 vindicate 1 vindicated 3 vindicating 2 vindication 6 vindictive 6 vindictively 1 vine 1 vinegar 3 vines 1 vinesse 1 vineyards 1 violate 3 violated 9 violates 3 violating 4 violation 16 violations 4 violators 1 violence 49 violent 30 violently 14 violet 8 violin 8 violins 1 viper 2 virchow 6 virgil 1 virgin 17 virginal 1 virginia 148 virginian 1 virginians 1 virginias 1 virile 3 virtual 1 virtually 5 virtue 56 virtues 14 virtuous 15 virulence 19 virulent 16 virulently 2 virus 32 vis 1 visage 1 viscera 14 visceral 1 viscid 3 viscous 2 vise 2 vish 1 visibility 1 visible 60 visibly 3 vision 12 visionary 1 visions 3 visit 81 visitation 1 visited 28 visiting 12 visitor 74 visitors 69 visits 11 visloukhovo 2 vista 2 vistas 1 vistula 6 visual 2 visualized 1 vital 41 vitality 41 vitally 1 vitamin 1 vitebsk 8 vitiated 1 vitreous 1 vitriol 1 vittorio 1 vituperation 1 viva 1 vivacity 3 vivandiere 1 vivants 1 vivarika 1 vivat 4 vive 19 vivid 11 vividly 25 vividness 3 viz 1 vizard 1 vladimir 5 vladimirovich 10 vlas 1 vo 1 vocabulary 3 vocal 3 vocation 8 vocational 3 vodka 24 vogel 2 vogels 1 vogue 7 voice 462 voiced 4 voices 149 void 21 voila 5 voir 4 voisinage 2 voit 1 vol 81 volatile 4 volcanic 2 volcano 3 volga 1 volition 3 volkmann 5 volkonski 12 volkonsky 1 volley 4 volleys 1 vols 27 voltage 1 voltaire 5 voltaires 1 voltorn 1 volume 30 volumes 6 voluminous 1 voluntarily 6 voluntary 17 volunteer 7 volunteered 2 volunteering 1 volunteers 22 vomer 1 vomit 1 vomited 1 vomiting 18 von 11 voracious 1 voraciously 1 voronezh 18 vorontsovo 2 vortex 2 vos 1 vot 2 vote 110 voted 22 voter 4 voters 43 votes 60 voting 6 votive 1 votre 2 voucher 1 vouching 1 vouchsafe 1 voulez 1 voulu 2 vous 33 vousmemes 1 vow 5 vowed 3 vows 2 voyage 12 voyages 1 voyez 1 voyna 2 voyons 2 vozdvizhenka 7 vrazhek 1 vrazhok 1 vrbna 1 vreatening 1 vs 9 vue 1 vulcanite 1 vulgar 5 vulgaris 1 vulgarity 1 vulnerable 2 vult 1 vulva 4 vulvo 1 vy 1 vyazemski 1 vyazma 20 vyazmitinov 5 vying 1 w 70 wa 1 wabash 1 wad 2 wadding 2 waddled 1 waddling 5 wade 1 waded 2 wading 1 wafers 2 wafted 1 wafting 1 wag 5 wage 17 waged 13 wager 3 wagered 1 wages 50 wagged 2 wagging 1 waggish 1 waggled 1 waggon 3 waging 3 wagon 27 wagoners 1 wagons 38 wagram 3 wags 2 wail 9 wailed 5 wailing 5 waise 1 waising 1 waist 17 waistcoat 22 waisted 1 waists 1 wait 127 waited 51 waiter 7 waiting 183 waitresses 1 waits 1 waived 1 wake 27 waked 3 waken 2 wakened 1 wakens 1 wakes 2 waking 19 waldo 1 wales 1 walk 75 walked 100 walker 2 walking 71 walks 10 wall 190 wallachia 2 wallachian 1 walled 3 wallenstein 1 wallerian 1 wallet 4 wallflower 1 walling 3 wallowed 1 walls 72 walnut 6 walnuts 1 walpole 3 walsall 1 walsingham 1 walt 1 walter 2 waltz 4 wan 1 wand 1 wander 10 wandered 15 wanderer 1 wanderers 1 wandering 14 wanderings 2 wanders 1 waned 1 waning 3 want 323 wanted 213 wanting 12 wanton 4 wantonly 1 wantonness 1 wants 39 waps 1 war 881 warburton 1 ward 13 warding 1 wardrobe 7 wardrop 4 wards 7 ware 3 warehouse 4 warehouses 3 wares 3 warfare 41 warily 1 warlike 10 warm 75 warman 1 warmed 9 warmer 6 warmest 5 warming 4 warmly 21 warmth 13 warn 11 warne 1 warned 18 warning 32 warnings 6 warns 1 warp 2 warped 1 warrant 15 warranted 3 warranties 13 warrants 4 warranty 9 warren 6 warring 4 warrior 11 warriors 6 wars 67 warsaw 6 warship 3 warships 4 wart 5 wartime 4 warts 15 warty 7 wary 3 was 11410 wascal 1 wash 20 washed 23 washerwomen 1 washing 23 washington 166 washingtons 1 wasn 14 wasps 2 wassermann 9 wast 1 wastage 1 waste 23 wasted 20 wasteful 2 wasteland 1 wastes 2 wasting 16 wat 1 watch 51 watchdog 1 watched 58 watches 1 watchful 6 watchhouse 4 watching 44 watchmaker 1 watchman 9 watchword 3 water 187 watered 4 watering 3 waterloo 9 waterproof 4 waters 30 waterway 1 waterways 6 watery 11 watson 83 watt 3 wattle 15 wave 26 waved 29 waver 1 wavered 3 wavering 8 waves 16 waving 18 wavy 5 wax 22 waxed 1 waxen 2 waxy 7 way 859 wayfaring 1 waylaid 3 wayne 1 ways 52 wayside 2 wayward 1 we 1906 wead 1 weady 2 weak 85 weaken 7 weakened 12 weakening 6 weakens 1 weaker 24 weakly 2 weakness 48 weaknesses 6 weal 3 weally 2 wealth 77 wealthier 1 wealthiest 1 wealthy 31 weaned 1 weapon 24 weapons 12 wear 30 wearer 1 wearied 5 wearily 7 weariness 12 wearing 87 wearisome 4 wears 4 weary 52 weason 1 weather 42 weathercock 2 weave 2 weaver 4 weavers 2 weaving 6 web 21 webbed 1 webbing 3 webster 29 weceipt 2 weceives 1 wecollect 1 weconciliation 1 wecwuits 1 wed 1 wedded 1 wedding 38 wedge 3 wedged 3 wedlock 1 wednesday 13 wee 3 weed 5 weeden 2 weeds 1 weedy 1 week 95 weekend 1 weekly 5 weeks 117 weep 25 weepers 1 weeping 19 wefused 1 wegiment 2 wegular 1 weib 1 weigh 4 weighed 10 weighing 5 weighs 3 weight 70 weighted 2 weightiest 1 weights 4 weighty 7 weign 2 weimar 1 weir 2 weird 4 welcome 18 welcomed 22 welcomes 2 welcoming 1 weld 2 welded 2 welfare 53 well 1198 welled 2 wellesley 1 welling 1 wellington 2 wells 5 welsh 2 welt 2 wen 1 wench 1 wenches 1 wendell 5 wens 11 went 1008 weported 1 wept 27 werden 2 were 4289 weren 8 wert 1 wesel 1 west 286 westaway 2 westbury 1 western 117 westerners 2 westhouse 2 westminster 2 westphail 1 westphalians 2 westward 30 wet 60 wetched 3 wethersfield 2 wetted 1 wetting 1 wetu 1 weturn 1 wetweating 2 weyant 2 weyl 1 weyler 2 weyrother 39 wh 1 whale 3 wharf 5 wharves 5 what 3011 whatever 114 whatnot 1 whatnots 1 whatsoever 8 wheal 1 wheals 2 wheat 38 wheatfields 1 wheedled 1 wheel 21 wheeled 4 wheeler 6 wheeling 4 wheels 47 when 2923 whence 23 whenever 38 where 977 whereabouts 4 whereas 11 whereby 8 wherefore 2 wherein 4 whereof 4 whereupon 1 wherever 23 whether 357 whetstone 2 whew 6 which 4842 whichever 3 whiff 5 whiffs 1 whifling 1 whig 18 whigs 36 while 768 whilst 7 whim 6 whims 2 whimsical 3 whine 2 whined 2 whining 3 whip 40 whipcord 3 whipped 5 whippers 3 whipping 1 whips 8 whirl 6 whirled 4 whirling 7 whirlpool 1 whirlwind 2 whirr 2 whirring 2 whishing 1 whiskered 1 whiskers 13 whiskey 1 whisky 14 whisper 51 whispered 97 whispering 19 whispers 12 whist 1 whistle 28 whistled 13 whistles 2 whistling 27 whit 3 white 353 whitelaw 1 whiten 1 whiteness 7 whitening 1 whiter 2 whites 14 whitewashed 4 whither 8 whitish 2 whitlow 26 whitman 2 whitney 10 whittier 3 whittington 1 whizz 2 whizzed 1 whizzing 1 who 3050 whoa 2 whoever 15 whole 744 wholeheartedly 1 wholesale 6 wholesome 4 wholly 15 whom 489 whomever 2 whose 188 whoso 1 whosoever 1 why 674 wiberd 1 wick 3 wicked 15 wickedness 3 wicker 1 wicket 4 wid 1 widal 1 widden 1 wide 105 widely 65 widen 2 widened 9 widening 3 wider 17 widespread 24 widest 5 widow 10 widower 4 widows 5 width 6 wie 1 wield 1 wielded 3 wielder 2 wielders 1 wielding 1 wields 1 wiesbaden 2 wiewiorowski 1 wife 367 wig 5 wight 7 wigless 1 wigmore 1 wigs 2 wiki 1 wiktionary 2 wild 35 wildbad 1 wilderness 15 wildest 1 wildlife 1 wildly 8 wilds 2 wiles 1 wilful 2 wilhelm 2 wilkes 1 wilkie 2 will 1577 willamette 2 willard 2 willarski 29 willed 1 willful 4 willfully 1 william 64 williams 7 williamsburg 1 willie 1 willing 25 willingly 8 willingness 7 willings 1 willis 1 willoughby 1 willow 1 willows 1 wills 13 wilmington 1 wilmot 7 wilson 106 wilt 2 wilton 1 wily 2 wimpfen 1 wimpole 1 win 38 wince 2 winced 6 winchester 11 wincing 5 wind 49 windfall 1 windibank 20 windigate 3 winding 16 windlass 1 window 186 windowpanes 1 windows 50 windowsill 1 winds 8 windsor 2 windy 2 wine 61 wined 1 wineglass 3 wineglasses 1 wines 4 winfield 1 wing 32 winged 3 winging 2 wings 10 wink 11 winked 8 winking 10 winner 2 winning 19 wins 3 winsor 2 winston 1 winter 52 wintering 1 winters 2 winthrop 4 wintry 3 wintzingerode 9 wintzingerodes 2 wipe 5 wiped 18 wiping 17 wire 23 wired 4 wires 2 wiring 2 wirt 1 wiry 1 wischau 6 wisconsin 24 wisdom 25 wise 24 wiseacres 1 wisely 7 wiseman 1 wiser 7 wisest 5 wisewell 2 wish 243 wished 209 wishes 42 wishing 66 wisp 6 wisps 2 wistful 1 wit 15 witch 2 witchcraft 3 witchery 1 witches 1 witching 1 with 9740 withal 1 withdraw 29 withdrawal 18 withdrawing 12 withdrawn 38 withdrew 14 withered 6 withering 1 withers 2 witherspoon 1 withheld 8 withhold 2 within 313 without 1015 withstand 9 withstood 1 witing 1 witness 33 witnessed 22 witnesses 9 wits 7 witted 5 wittgenstein 4 witticism 1 witticisms 2 wittily 1 witty 14 wives 16 wiz 1 wizard 4 wizards 1 wlocki 1 wm 2 wo 1 wobbahs 1 wobbed 1 wobber 1 wobbers 1 wobbewy 3 wobbly 2 woe 1 woes 1 wogue 1 woke 20 wolf 63 wolfe 3 wolff 2 wolfhounds 1 wollstonecraft 2 wolves 11 wolzogen 23 woman 325 womanhood 2 womanish 2 womanly 7 womb 1 women 390 won 201 wonder 37 wondered 15 wonderful 30 wonderfully 5 wondering 15 wonderment 1 wonders 4 wondrous 1 wont 10 wonted 1 wood 88 woodburn 1 woodcock 2 woodcuts 1 woodcutting 1 wooded 8 wooden 37 woodford 1 woodland 2 woodrow 13 woods 22 woodson 1 woodwork 1 woof 2 wooing 2 wool 42 woolen 15 woolens 1 woollen 2 woolly 1 wools 1 woolseys 1 woolwork 2 woot 1 worcester 3 word 298 worded 3 wordforms 1 wording 4 words 460 wordsworth 1 wordy 1 wore 58 work 382 workbag 3 worked 40 worker 8 workers 39 workforce 1 workhouse 1 working 54 workingman 2 workingmen 12 workings 2 workman 8 workmanship 2 workmen 17 workplace 1 works 99 workshop 5 workshops 6 workstation 1 world 362 worldliness 3 worldly 13 worlds 9 worldwide 2 worm 9 worming 1 worms 4 wormwood 7 worn 73 worried 16 worries 1 worry 10 worrying 8 worse 66 worsening 1 worship 6 worshiped 1 worshiper 1 worshipers 1 worshipped 1 worst 36 worsted 5 worth 70 worthier 1 worthily 1 worthless 11 worthlessness 2 worthwhile 1 worthy 47 wostov 9 wostovs 1 wotten 1 would 1953 wouldn 28 wound 304 wounded 227 wounding 4 wounds 186 wove 3 woven 5 wrack 1 wrangle 1 wrangled 3 wrangling 2 wrap 4 wrapped 33 wrapping 6 wraps 2 wrath 17 wrathful 2 wrathfully 2 wreath 2 wreaths 3 wreck 5 wrecked 4 wreckers 1 wrecking 1 wrenched 3 wrenching 3 wrested 3 wresting 1 wrestle 3 wretch 4 wretched 23 wretchedness 1 wretches 5 wriggle 2 wriggled 2 wriggles 1 wriggling 2 wright 5 wring 6 wringing 2 wrinkle 7 wrinkled 21 wrinkles 17 wrinkling 2 wrist 68 wrists 7 writ 15 write 86 writer 16 writers 27 writes 20 writhed 3 writhing 4 writing 69 writings 14 writs 11 written 117 wrnpc 4 wrong 103 wrongdoing 1 wronged 7 wrongfully 2 wrongly 3 wrongs 7 wrote 149 wrought 8 wrung 17 wry 5 wuined 1 wurst 2 wurttemberg 6 wurttembergers 2 wussian 1 wussians 1 www 20 wyeth 2 wyoming 14 wythe 1 wything 1 x 136 xanthoma 2 xi 28 xii 28 xiii 22 xiphi 1 xiv 28 xix 17 xrange 1 xv 24 xvi 34 xvii 18 xviii 19 xx 14 xxi 13 xxii 10 xxiii 8 xxiv 8 xxix 2 xxv 7 xxvi 4 xxvii 4 xxviii 3 xxx 2 xxxi 2 xxxii 2 xxxiii 2 xxxiv 2 xxxix 1 xxxv 1 xxxvi 1 xxxvii 1 xxxviii 1 y 39 yacht 2 yahweh 1 yakov 11 yakovlev 3 yale 4 yancey 2 yankee 6 yankees 1 yankovo 3 yard 79 yards 34 yarn 2 yaroslavets 8 yaroslavl 11 yauza 5 yawn 4 yawned 2 yawning 6 yawns 1 ye 8 yea 1 yeah 2 year 309 yearly 1 yearning 1 years 571 yeas 2 yell 7 yelled 8 yelling 4 yellow 75 yellowing 1 yellowish 9 yells 4 yelp 2 yelped 1 yelping 2 yeoman 1 yeomanry 2 yeomen 5 yep 1 yer 1 yes 688 yesterday 69 yet 488 yeux 1 yiddish 1 yield 36 yielded 15 yielding 21 yields 17 yoke 5 yoked 1 yokohama 1 yon 1 yonder 3 yore 1 york 195 yorkers 1 yorkshire 1 yorktown 9 you 5622 young 627 younger 41 youngest 12 youngster 4 youngsters 1 your 1279 yours 46 yourself 162 yourselves 10 youth 67 youthful 16 youthfully 1 youthfulness 4 youths 4 yukhnov 1 yukhnovna 1 yukhnovo 1 yuma 2 yuri 1 yusupov 1 yusupova 1 z 8 zachary 3 zakhar 9 zakharchenko 1 zakharino 1 zakharych 2 zakret 1 zakuska 1 zaletaev 2 zanthoma 5 zapata 1 zat 6 zavarzinsk 1 zaymishche 4 zdrzhinski 7 ze 9 zeal 25 zealand 3 zealous 11 zealously 3 zebulon 3 zen 1 zenger 3 zenith 1 zere 1 zero 5 zest 3 zeus 1 zharov 1 zheg 4 zherkov 40 zhilinski 8 zides 1 zigzag 2 zikin 1 zinaida 1 zinc 4 zip 4 zis 1 znaim 16 znamenka 1 zone 26 zoology 3 zu 2 zubov 2 zubova 3 zubovski 2 zueblin 1 zum 1 zweck 1 zygoma 1 zygomatic 1 ================================================ FILE: src/textblob/en/inflect.py ================================================ """The pluralize and singular methods from the pattern library. Licenced under the BSD. See here https://github.com/clips/pattern/blob/master/LICENSE.txt for complete license information. """ from __future__ import annotations from collections.abc import MutableMapping import re from typing import TYPE_CHECKING if TYPE_CHECKING: from typing import AnyStr VERB, NOUN, ADJECTIVE, ADVERB = "VB", "NN", "JJ", "RB" #### PLURALIZE ##################################################################################### # Based on "An Algorithmic Approach to English Pluralization" by Damian Conway: # http://www.csse.monash.edu.au/~damian/papers/HTML/Plurals.html # Prepositions are used to solve things like # "mother-in-law" or "man at arms" plural_prepositions = [ "about", "above", "across", "after", "among", "around", "at", "athwart", "before", "behind", "below", "beneath", "beside", "besides", "between", "betwixt", "beyond", "but", "by", "during", "except", "for", "from", "in", "into", "near", "of", "off", "on", "onto", "out", "over", "since", "till", "to", "under", "until", "unto", "upon", "with", ] # Inflection rules that are either general, # or apply to a certain category of words, # or apply to a certain category of words only in classical mode, # or apply only in classical mode. # Each rule consists of: # suffix, inflection, category and classic flag. plural_rules = [ # 0) Indefinite articles and demonstratives. [ ["^a$|^an$", "some", None, False], ["^this$", "these", None, False], ["^that$", "those", None, False], ["^any$", "all", None, False], ], # 1) Possessive adjectives. # Overlaps with 1/ for "his" and "its". # Overlaps with 2/ for "her". [ ["^my$", "our", None, False], ["^your$|^thy$", "your", None, False], ["^her$|^his$|^its$|^their$", "their", None, False], ], # 2) Possessive pronouns. [ ["^mine$", "ours", None, False], ["^yours$|^thine$", "yours", None, False], ["^hers$|^his$|^its$|^theirs$", "theirs", None, False], ], # 3) Personal pronouns. [ ["^I$", "we", None, False], ["^me$", "us", None, False], ["^myself$", "ourselves", None, False], ["^you$", "you", None, False], ["^thou$|^thee$", "ye", None, False], ["^yourself$|^thyself$", "yourself", None, False], ["^she$|^he$|^it$|^they$", "they", None, False], ["^her$|^him$|^it$|^them$", "them", None, False], ["^herself$|^himself$|^itself$|^themself$", "themselves", None, False], ["^oneself$", "oneselves", None, False], ], # 4) Words that do not inflect. [ ["$", "", "uninflected", False], ["$", "", "uncountable", False], ["fish$", "fish", None, False], ["([- ])bass$", "\\1bass", None, False], ["ois$", "ois", None, False], ["sheep$", "sheep", None, False], ["deer$", "deer", None, False], ["pox$", "pox", None, False], ["([A-Z].*)ese$", "\\1ese", None, False], ["itis$", "itis", None, False], [ "(fruct|gluc|galact|lact|ket|malt|rib|sacchar|cellul)ose$", "\\1ose", None, False, ], ], # 5) Irregular plurals (mongoose, oxen). [ ["atlas$", "atlantes", None, True], ["atlas$", "atlases", None, False], ["beef$", "beeves", None, True], ["brother$", "brethren", None, True], ["child$", "children", None, False], ["corpus$", "corpora", None, True], ["corpus$", "corpuses", None, False], ["^cow$", "kine", None, True], ["ephemeris$", "ephemerides", None, False], ["ganglion$", "ganglia", None, True], ["genie$", "genii", None, True], ["genus$", "genera", None, False], ["graffito$", "graffiti", None, False], ["loaf$", "loaves", None, False], ["money$", "monies", None, True], ["mongoose$", "mongooses", None, False], ["mythos$", "mythoi", None, False], ["octopus$", "octopodes", None, True], ["opus$", "opera", None, True], ["opus$", "opuses", None, False], ["^ox$", "oxen", None, False], ["penis$", "penes", None, True], ["penis$", "penises", None, False], ["soliloquy$", "soliloquies", None, False], ["testis$", "testes", None, False], ["trilby$", "trilbys", None, False], ["turf$", "turves", None, True], ["numen$", "numena", None, False], ["occiput$", "occipita", None, True], ], # 6) Irregular inflections for common suffixes (synopses, mice, men). [ ["man$", "men", None, False], ["person$", "people", None, False], ["([lm])ouse$", "\\1ice", None, False], ["tooth$", "teeth", None, False], ["goose$", "geese", None, False], ["foot$", "feet", None, False], ["zoon$", "zoa", None, False], ["([csx])is$", "\\1es", None, False], ], # 7) Fully assimilated classical inflections (vertebrae, codices). [ ["ex$", "ices", "ex-ices", False], ["ex$", "ices", "ex-ices-classical", True], ["um$", "a", "um-a", False], ["um$", "a", "um-a-classical", True], ["on$", "a", "on-a", False], ["a$", "ae", "a-ae", False], ["a$", "ae", "a-ae-classical", True], ], # 8) Classical variants of modern inflections (stigmata, soprani). [ ["trix$", "trices", None, True], ["eau$", "eaux", None, True], ["ieu$", "ieu", None, True], ["([iay])nx$", "\\1nges", None, True], ["en$", "ina", "en-ina-classical", True], ["a$", "ata", "a-ata-classical", True], ["is$", "ides", "is-ides-classical", True], ["us$", "i", "us-i-classical", True], ["us$", "us", "us-us-classical", True], ["o$", "i", "o-i-classical", True], ["$", "i", "-i-classical", True], ["$", "im", "-im-classical", True], ], # 9) -ch, -sh and -ss and the s-singular group take -es in the plural (churches, classes, lenses). [ ["([cs])h$", "\\1hes", None, False], ["ss$", "sses", None, False], ["x$", "xes", None, False], ["s$", "ses", "s-singular", False], ], # 10) Certain words ending in -f or -fe take -ves in the plural (lives, wolves). [ ["([aeo]l)f$", "\\1ves", None, False], ["([^d]ea)f$", "\\1ves", None, False], ["arf$", "arves", None, False], ["([nlw]i)fe$", "\\1ves", None, False], ], # 11) -y takes -ys if preceded by a vowel or when a proper noun, # but -ies if preceded by a consonant (storeys, Marys, stories). [ ["([aeiou])y$", "\\1ys", None, False], ["([A-Z].*)y$", "\\1ys", None, False], ["y$", "ies", None, False], ], # 12) Some words ending in -o take -os, the rest take -oes. # Words in which the -o is preceded by a vowel always take -os (lassos, potatoes, bamboos). [ ["o$", "os", "o-os", False], ["([aeiou])o$", "\\1os", None, False], ["o$", "oes", None, False], ], # 13) Miltary stuff (Major Generals). [["l$", "ls", "general-generals", False]], # 14) Otherwise, assume that the plural just adds -s (cats, programmes). [["$", "s", None, False]], ] # For performance, compile the regular expressions only once: for ruleset in plural_rules: for rule in ruleset: rule[0] = re.compile(rule[0]) # Suffix categories. plural_categories = { "uninflected": [ "aircraft", "antelope", "bison", "bream", "breeches", "britches", "carp", "cattle", "chassis", "clippers", "cod", "contretemps", "corps", "debris", "diabetes", "djinn", "eland", "elk", "flounder", "gallows", "graffiti", "headquarters", "herpes", "high-jinks", "homework", "innings", "jackanapes", "mackerel", "measles", "mews", "moose", "mumps", "offspring", "news", "pincers", "pliers", "proceedings", "rabies", "salmon", "scissors", "series", "shears", "species", "swine", "trout", "tuna", "whiting", "wildebeest", ], "uncountable": [ "advice", "bread", "butter", "cannabis", "cheese", "electricity", "equipment", "fruit", "furniture", "garbage", "gravel", "happiness", "information", "ketchup", "knowledge", "love", "luggage", "mathematics", "mayonnaise", "meat", "mustard", "news", "progress", "research", "rice", "sand", "software", "understanding", "water", ], "s-singular": [ "acropolis", "aegis", "alias", "asbestos", "bathos", "bias", "bus", "caddis", "canvas", "chaos", "christmas", "cosmos", "dais", "digitalis", "epidermis", "ethos", "gas", "glottis", "ibis", "lens", "mantis", "marquis", "metropolis", "pathos", "pelvis", "polis", "rhinoceros", "sassafras", "trellis", ], "ex-ices": ["codex", "murex", "silex"], "ex-ices-classical": [ "apex", "cortex", "index", "latex", "pontifex", "simplex", "vertex", "vortex", ], "um-a": [ "agendum", "bacterium", "candelabrum", "datum", "desideratum", "erratum", "extremum", "ovum", "stratum", ], "um-a-classical": [ "aquarium", "compendium", "consortium", "cranium", "curriculum", "dictum", "emporium", "enconium", "gymnasium", "honorarium", "interregnum", "lustrum", "maximum", "medium", "memorandum", "millenium", "minimum", "momentum", "optimum", "phylum", "quantum", "rostrum", "spectrum", "speculum", "stadium", "trapezium", "ultimatum", "vacuum", "velum", ], "on-a": [ "aphelion", "asyndeton", "criterion", "hyperbaton", "noumenon", "organon", "perihelion", "phenomenon", "prolegomenon", ], "a-ae": ["alga", "alumna", "vertebra"], "a-ae-classical": [ "abscissa", "amoeba", "antenna", "aurora", "formula", "hydra", "hyperbola", "lacuna", "medusa", "nebula", "nova", "parabola", ], "en-ina-classical": ["foramen", "lumen", "stamen"], "a-ata-classical": [ "anathema", "bema", "carcinoma", "charisma", "diploma", "dogma", "drama", "edema", "enema", "enigma", "gumma", "lemma", "lymphoma", "magma", "melisma", "miasma", "oedema", "sarcoma", "schema", "soma", "stigma", "stoma", "trauma", ], "is-ides-classical": ["clitoris", "iris"], "us-i-classical": [ "focus", "fungus", "genius", "incubus", "nimbus", "nucleolus", "radius", "stylus", "succubus", "torus", "umbilicus", "uterus", ], "us-us-classical": [ "apparatus", "cantus", "coitus", "hiatus", "impetus", "nexus", "plexus", "prospectus", "sinus", "status", ], "o-i-classical": [ "alto", "basso", "canto", "contralto", "crescendo", "solo", "soprano", "tempo", ], "-i-classical": ["afreet", "afrit", "efreet"], "-im-classical": ["cherub", "goy", "seraph"], "o-os": [ "albino", "archipelago", "armadillo", "commando", "ditto", "dynamo", "embryo", "fiasco", "generalissimo", "ghetto", "guano", "inferno", "jumbo", "lingo", "lumbago", "magneto", "manifesto", "medico", "octavo", "photo", "pro", "quarto", "rhino", "stylo", ], "general-generals": [ "Adjutant", "Brigadier", "Lieutenant", "Major", "Quartermaster", "adjutant", "brigadier", "lieutenant", "major", "quartermaster", ], } def pluralize(word: str, pos=NOUN, custom=None, classical=True) -> str: """Returns the plural of a given word. For example: child -> children. Handles nouns and adjectives, using classical inflection by default (e.g. where "matrix" pluralizes to "matrices" instead of "matrixes"). The custom dictionary is for user-defined replacements. """ if custom is None: custom = {} if word in custom: return custom[word] # Recursion of genitives. # Remove the apostrophe and any trailing -s, # form the plural of the resultant noun, and then append an apostrophe (dog's -> dogs'). if word.endswith("'") or word.endswith("'s"): owner = word.rstrip("'s") owners = pluralize(owner, pos, custom, classical) if owners.endswith("s"): return owners + "'" else: return owners + "'s" # Recursion of compound words # (Postmasters General, mothers-in-law, Roman deities). words = word.replace("-", " ").split(" ") if len(words) > 1: if ( words[1] == "general" or words[1] == "General" and words[0] not in plural_categories["general-generals"] ): return word.replace(words[0], pluralize(words[0], pos, custom, classical)) elif words[1] in plural_prepositions: return word.replace(words[0], pluralize(words[0], pos, custom, classical)) else: return word.replace(words[-1], pluralize(words[-1], pos, custom, classical)) # Only a very few number of adjectives inflect. n = list(range(len(plural_rules))) if pos.startswith(ADJECTIVE): n = [0, 1] # Apply pluralization rules. for i in n: ruleset = plural_rules[i] for rule in ruleset: suffix, inflection, category, classic = rule # A general rule, or a classic rule in classical mode. if category is None: if not classic or (classic and classical): if suffix.search(word) is not None: return suffix.sub(inflection, word) # A rule relating to a specific category of words. if category is not None: if word in plural_categories[category] and ( not classic or (classic and classical) ): if suffix.search(word) is not None: return suffix.sub(inflection, word) return word #### SINGULARIZE ################################################################################### # Adapted from Bermi Ferrer's Inflector for Python: # http://www.bermi.org/inflector/ # Copyright (c) 2006 Bermi Ferrer Martinez # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software to deal in this software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of this software, and to permit # persons to whom this software is furnished to do so, subject to the following # condition: # # THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THIS SOFTWARE OR THE USE OR OTHER DEALINGS IN # THIS SOFTWARE. singular_rules = [ (re.compile("(?i)(.)ae$"), "\\1a"), (re.compile("(?i)(.)itis$"), "\\1itis"), (re.compile("(?i)(.)eaux$"), "\\1eau"), (re.compile("(?i)(quiz)zes$"), "\\1"), (re.compile("(?i)(matr)ices$"), "\\1ix"), (re.compile("(?i)(ap|vert|ind)ices$"), "\\1ex"), (re.compile("(?i)^(ox)en"), "\\1"), (re.compile("(?i)(alias|status)es$"), "\\1"), (re.compile("(?i)([octop|vir])i$"), "\\1us"), (re.compile("(?i)(cris|ax|test)es$"), "\\1is"), (re.compile("(?i)(shoe)s$"), "\\1"), (re.compile("(?i)(o)es$"), "\\1"), (re.compile("(?i)(bus)es$"), "\\1"), (re.compile("(?i)([m|l])ice$"), "\\1ouse"), (re.compile("(?i)(x|ch|ss|sh)es$"), "\\1"), (re.compile("(?i)(m)ovies$"), "\\1ovie"), (re.compile("(?i)(.)ombies$"), "\\1ombie"), (re.compile("(?i)(s)eries$"), "\\1eries"), (re.compile("(?i)([^aeiouy]|qu)ies$"), "\\1y"), # Certain words ending in -f or -fe take -ves in the plural (lives, wolves). (re.compile("([aeo]l)ves$"), "\\1f"), (re.compile("([^d]ea)ves$"), "\\1f"), (re.compile("arves$"), "arf"), (re.compile("erves$"), "erve"), (re.compile("([nlw]i)ves$"), "\\1fe"), (re.compile("(?i)([lr])ves$"), "\\1f"), (re.compile("([aeo])ves$"), "\\1ve"), (re.compile("(?i)(sive)s$"), "\\1"), (re.compile("(?i)(tive)s$"), "\\1"), (re.compile("(?i)(hive)s$"), "\\1"), (re.compile("(?i)([^f])ves$"), "\\1fe"), # -es suffix. (re.compile("(?i)(^analy)ses$"), "\\1sis"), ( re.compile("(?i)((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$"), "\\1\\2sis", ), (re.compile("(?i)(.)opses$"), "\\1opsis"), (re.compile("(?i)(.)yses$"), "\\1ysis"), (re.compile("(?i)(h|d|r|o|n|b|cl|p)oses$"), "\\1ose"), ( re.compile("(?i)(fruct|gluc|galact|lact|ket|malt|rib|sacchar|cellul)ose$"), "\\1ose", ), (re.compile("(?i)(.)oses$"), "\\1osis"), # -a (re.compile("(?i)([ti])a$"), "\\1um"), (re.compile("(?i)(n)ews$"), "\\1ews"), (re.compile("(?i)s$"), ""), ] singular_uninflected = [ "aircraft", "antelope", "bison", "bream", "breeches", "britches", "carp", "cattle", "chassis", "clippers", "cod", "contretemps", "corps", "debris", "diabetes", "djinn", "eland", "elk", "flounder", "gallows", "georgia", "graffiti", "headquarters", "herpes", "high-jinks", "homework", "innings", "jackanapes", "mackerel", "measles", "mews", "moose", "mumps", "news", "offspring", "pincers", "pliers", "proceedings", "rabies", "salmon", "scissors", "series", "shears", "species", "swine", "swiss", "trout", "tuna", "whiting", "wildebeest", ] singular_uncountable = [ "advice", "bread", "butter", "cannabis", "cheese", "electricity", "equipment", "fruit", "furniture", "garbage", "gravel", "happiness", "information", "ketchup", "knowledge", "love", "luggage", "mathematics", "mayonnaise", "meat", "mustard", "news", "progress", "research", "rice", "sand", "software", "understanding", "water", ] singular_ie = [ "algerie", "auntie", "beanie", "birdie", "bogie", "bombie", "bookie", "collie", "cookie", "cutie", "doggie", "eyrie", "freebie", "goonie", "groupie", "hankie", "hippie", "hoagie", "hottie", "indie", "junkie", "laddie", "laramie", "lingerie", "meanie", "nightie", "oldie", "^pie", "pixie", "quickie", "reverie", "rookie", "softie", "sortie", "stoolie", "sweetie", "techie", "^tie", "toughie", "valkyrie", "veggie", "weenie", "yuppie", "zombie", ] singular_s = plural_categories["s-singular"] # key plural, value singular singular_irregular = { "men": "man", "people": "person", "children": "child", "sexes": "sex", "axes": "axe", "moves": "move", "teeth": "tooth", "geese": "goose", "feet": "foot", "zoa": "zoon", "atlantes": "atlas", "atlases": "atlas", "beeves": "beef", "brethren": "brother", "corpora": "corpus", "corpuses": "corpus", "kine": "cow", "ephemerides": "ephemeris", "ganglia": "ganglion", "genii": "genie", "genera": "genus", "graffiti": "graffito", "helves": "helve", "leaves": "leaf", "loaves": "loaf", "monies": "money", "mongooses": "mongoose", "mythoi": "mythos", "octopodes": "octopus", "opera": "opus", "opuses": "opus", "oxen": "ox", "penes": "penis", "penises": "penis", "soliloquies": "soliloquy", "testes": "testis", "trilbys": "trilby", "turves": "turf", "numena": "numen", "occipita": "occiput", "our": "my", } def singularize(word: str, pos=NOUN, custom: MutableMapping[str, str] | None = None): if custom is None: custom = {} if word in list(custom.keys()): return custom[word] # Recursion of compound words (e.g. mothers-in-law). if "-" in word: words = word.split("-") if len(words) > 1 and words[1] in plural_prepositions: return singularize(words[0], pos, custom) + "-" + "-".join(words[1:]) # dogs' => dog's if word.endswith("'"): return singularize(word[:-1]) + "'s" lower = word.lower() for w in singular_uninflected: if w.endswith(lower): return word for w in singular_uncountable: if w.endswith(lower): return word for w in singular_ie: if lower.endswith(w + "s"): return w for w in singular_s: if lower.endswith(w + "es"): return w for w in list(singular_irregular.keys()): if lower.endswith(w): return re.sub("(?i)" + w + "$", singular_irregular[w], word) for rule in singular_rules: suffix, inflection = rule match = suffix.search(word) if match: groups = match.groups() for k in range(0, len(groups)): if groups[k] is None: inflection = inflection.replace("\\" + str(k + 1), "") return suffix.sub(inflection, word) return word ================================================ FILE: src/textblob/en/np_extractors.py ================================================ """Various noun phrase extractors.""" import nltk from textblob.base import BaseNPExtractor from textblob.decorators import requires_nltk_corpus from textblob.taggers import PatternTagger from textblob.utils import filter_insignificant, tree2str class ChunkParser(nltk.ChunkParserI): _trained: bool def __init__(self): self._trained = False @requires_nltk_corpus def train(self): """Train the Chunker on the ConLL-2000 corpus.""" train_data = [ [(t, c) for _, t, c in nltk.chunk.tree2conlltags(sent)] for sent in nltk.corpus.conll2000.chunked_sents( "train.txt", chunk_types=["NP"] ) ] unigram_tagger = nltk.UnigramTagger(train_data) self.tagger = nltk.BigramTagger(train_data, backoff=unigram_tagger) self._trained = True def parse(self, tokens): """Return the parse tree for the sentence.""" if not self._trained: self.train() pos_tags = [pos for (_, pos) in tokens] tagged_pos_tags = self.tagger.tag(pos_tags) chunktags = [chunktag for (_, chunktag) in tagged_pos_tags] conlltags = [ (word, pos, chunktag) for ((word, pos), chunktag) in zip(tokens, chunktags) ] return nltk.chunk.conlltags2tree(conlltags) class ConllExtractor(BaseNPExtractor): """A noun phrase extractor that uses chunk parsing trained with the ConLL-2000 training corpus. """ POS_TAGGER = PatternTagger() # The context-free grammar with which to filter the noun phrases CFG = { ("NNP", "NNP"): "NNP", ("NN", "NN"): "NNI", ("NNI", "NN"): "NNI", ("JJ", "JJ"): "JJ", ("JJ", "NN"): "NNI", } # POS suffixes that will be ignored INSIGNIFICANT_SUFFIXES = ["DT", "CC", "PRP$", "PRP"] def __init__(self, parser=None): self.parser = ChunkParser() if not parser else parser def extract(self, text): """Return a list of noun phrases (strings) for body of text.""" sentences = nltk.tokenize.sent_tokenize(text) noun_phrases = [] for sentence in sentences: parsed = self._parse_sentence(sentence) # Get the string representation of each subtree that is a # noun phrase tree phrases = [ _normalize_tags(filter_insignificant(each, self.INSIGNIFICANT_SUFFIXES)) for each in parsed if isinstance(each, nltk.tree.Tree) and each.label() == "NP" and len(filter_insignificant(each)) >= 1 and _is_match(each, cfg=self.CFG) ] nps = [tree2str(phrase) for phrase in phrases] noun_phrases.extend(nps) return noun_phrases def _parse_sentence(self, sentence): """Tag and parse a sentence (a plain, untagged string).""" tagged = self.POS_TAGGER.tag(sentence) return self.parser.parse(tagged) class FastNPExtractor(BaseNPExtractor): """A fast and simple noun phrase extractor. Credit to Shlomi Babluk. Link to original blog post: http://thetokenizer.com/2013/05/09/efficient-way-to-extract-the-main-topics-of-a-sentence/ """ _trained: bool CFG = { ("NNP", "NNP"): "NNP", ("NN", "NN"): "NNI", ("NNI", "NN"): "NNI", ("JJ", "JJ"): "JJ", ("JJ", "NN"): "NNI", } def __init__(self): self._trained = False @requires_nltk_corpus def train(self): train_data = nltk.corpus.brown.tagged_sents(categories="news") regexp_tagger = nltk.RegexpTagger( [ (r"^-?[0-9]+(.[0-9]+)?$", "CD"), (r"(-|:|;)$", ":"), (r"\'*$", "MD"), (r"(The|the|A|a|An|an)$", "AT"), (r".*able$", "JJ"), (r"^[A-Z].*$", "NNP"), (r".*ness$", "NN"), (r".*ly$", "RB"), (r".*s$", "NNS"), (r".*ing$", "VBG"), (r".*ed$", "VBD"), (r".*", "NN"), ] ) unigram_tagger = nltk.UnigramTagger(train_data, backoff=regexp_tagger) self.tagger = nltk.BigramTagger(train_data, backoff=unigram_tagger) self._trained = True return None def _tokenize_sentence(self, sentence): """Split the sentence into single words/tokens""" tokens = nltk.word_tokenize(sentence) return tokens def extract(self, text): """Return a list of noun phrases (strings) for body of text.""" if not self._trained: self.train() tokens = self._tokenize_sentence(text) tagged = self.tagger.tag(tokens) tags = _normalize_tags(tagged) merge = True while merge: merge = False for x in range(0, len(tags) - 1): t1 = tags[x] t2 = tags[x + 1] key = t1[1], t2[1] value = self.CFG.get(key, "") if value: merge = True tags.pop(x) tags.pop(x) match = f"{t1[0]} {t2[0]}" pos = value tags.insert(x, (match, pos)) break matches = [t[0] for t in tags if t[1] in ["NNP", "NNI"]] return matches ### Utility methods ### def _normalize_tags(chunk): """Normalize the corpus tags. ("NN", "NN-PL", "NNS") -> "NN" """ ret = [] for word, tag in chunk: if tag == "NP-TL" or tag == "NP": ret.append((word, "NNP")) continue if tag.endswith("-TL"): ret.append((word, tag[:-3])) continue if tag.endswith("S"): ret.append((word, tag[:-1])) continue ret.append((word, tag)) return ret def _is_match(tagged_phrase, cfg): """Return whether or not a tagged phrases matches a context-free grammar.""" copy = list(tagged_phrase) # A copy of the list merge = True while merge: merge = False for i in range(len(copy) - 1): first, second = copy[i], copy[i + 1] key = first[1], second[1] # Tuple of tags e.g. ('NN', 'JJ') value = cfg.get(key, None) if value: merge = True copy.pop(i) copy.pop(i) match = f"{first[0]} {second[0]}" pos = value copy.insert(i, (match, pos)) break match = any([t[1] in ("NNP", "NNI") for t in copy]) return match ================================================ FILE: src/textblob/en/parsers.py ================================================ """Various parser implementations. .. versionadded:: 0.6.0 """ from textblob.base import BaseParser from textblob.en import parse as pattern_parse class PatternParser(BaseParser): """Parser that uses the implementation in Tom de Smedt's pattern library. http://www.clips.ua.ac.be/pages/pattern-en#parser """ def parse(self, text): """Parses the text.""" return pattern_parse(text) ================================================ FILE: src/textblob/en/sentiments.py ================================================ """Sentiment analysis implementations. .. versionadded:: 0.5.0 """ from collections import namedtuple import nltk from textblob.base import CONTINUOUS, DISCRETE, BaseSentimentAnalyzer from textblob.decorators import requires_nltk_corpus from textblob.en import sentiment as pattern_sentiment from textblob.tokenizers import word_tokenize class PatternAnalyzer(BaseSentimentAnalyzer): """Sentiment analyzer that uses the same implementation as the pattern library. Returns results as a named tuple of the form: ``Sentiment(polarity, subjectivity, [assessments])`` where [assessments] is a list of the assessed tokens and their polarity and subjectivity scores """ kind = CONTINUOUS # This is only here for backwards-compatibility. # The return type is actually determined upon calling analyze() RETURN_TYPE = namedtuple("Sentiment", ["polarity", "subjectivity"]) def analyze(self, text, keep_assessments=False): """Return the sentiment as a named tuple of the form: ``Sentiment(polarity, subjectivity, [assessments])``. """ #: Return type declaration if keep_assessments: Sentiment = namedtuple( "Sentiment", ["polarity", "subjectivity", "assessments"] ) assessments = pattern_sentiment(text).assessments polarity, subjectivity = pattern_sentiment(text) return Sentiment(polarity, subjectivity, assessments) else: Sentiment = namedtuple("Sentiment", ["polarity", "subjectivity"]) return Sentiment(*pattern_sentiment(text)) def _default_feature_extractor(words): """Default feature extractor for the NaiveBayesAnalyzer.""" return dict((word, True) for word in words) class NaiveBayesAnalyzer(BaseSentimentAnalyzer): """Naive Bayes analyzer that is trained on a dataset of movie reviews. Returns results as a named tuple of the form: ``Sentiment(classification, p_pos, p_neg)`` :param callable feature_extractor: Function that returns a dictionary of features, given a list of words. """ kind = DISCRETE #: Return type declaration RETURN_TYPE = namedtuple("Sentiment", ["classification", "p_pos", "p_neg"]) def __init__(self, feature_extractor=_default_feature_extractor): super().__init__() self._classifier = None self.feature_extractor = feature_extractor @requires_nltk_corpus def train(self): """Train the Naive Bayes classifier on the movie review corpus.""" super().train() neg_ids = nltk.corpus.movie_reviews.fileids("neg") pos_ids = nltk.corpus.movie_reviews.fileids("pos") neg_feats = [ ( self.feature_extractor(nltk.corpus.movie_reviews.words(fileids=[f])), "neg", ) for f in neg_ids ] pos_feats = [ ( self.feature_extractor(nltk.corpus.movie_reviews.words(fileids=[f])), "pos", ) for f in pos_ids ] train_data = neg_feats + pos_feats self._classifier = nltk.classify.NaiveBayesClassifier.train(train_data) def analyze(self, text): """Return the sentiment as a named tuple of the form: ``Sentiment(classification, p_pos, p_neg)`` """ # Lazily train the classifier super().analyze(text) tokens = word_tokenize(text, include_punc=False) filtered = (t.lower() for t in tokens if len(t) >= 3) feats = self.feature_extractor(filtered) prob_dist = self._classifier.prob_classify(feats) return self.RETURN_TYPE( classification=prob_dist.max(), p_pos=prob_dist.prob("pos"), p_neg=prob_dist.prob("neg"), ) ================================================ FILE: src/textblob/en/taggers.py ================================================ """Parts-of-speech tagger implementations.""" import nltk import textblob as tb from textblob.base import BaseTagger from textblob.decorators import requires_nltk_corpus from textblob.en import tag as pattern_tag class PatternTagger(BaseTagger): """Tagger that uses the implementation in Tom de Smedt's pattern library (http://www.clips.ua.ac.be/pattern). """ def tag(self, text, tokenize=True): """Tag a string or BaseBlob.""" if not isinstance(text, str): text = text.raw return pattern_tag(text, tokenize) class NLTKTagger(BaseTagger): """Tagger that uses NLTK's standard TreeBank tagger. NOTE: Requires numpy. Not yet supported with PyPy. """ @requires_nltk_corpus def tag(self, text): """Tag a string or BaseBlob.""" if isinstance(text, str): text = tb.TextBlob(text) return nltk.tag.pos_tag(text.tokens) ================================================ FILE: src/textblob/exceptions.py ================================================ MISSING_CORPUS_MESSAGE = """ Looks like you are missing some required data for this feature. To download the necessary data, simply run python -m textblob.download_corpora or use the NLTK downloader to download the missing data: http://nltk.org/data.html If this doesn't fix the problem, file an issue at https://github.com/sloria/TextBlob/issues. """ class TextBlobError(Exception): """A TextBlob-related error.""" pass TextBlobException = TextBlobError # Backwards compat class MissingCorpusError(TextBlobError): """Exception thrown when a user tries to use a feature that requires a dataset or model that the user does not have on their system. """ def __init__(self, message=MISSING_CORPUS_MESSAGE, *args, **kwargs): super().__init__(message, *args, **kwargs) MissingCorpusException = MissingCorpusError # Backwards compat class DeprecationError(TextBlobError): """Raised when user uses a deprecated feature.""" pass class TranslatorError(TextBlobError): """Raised when an error occurs during language translation or detection.""" pass class NotTranslated(TranslatorError): """Raised when text is unchanged after translation. This may be due to the language being unsupported by the translator. """ pass class FormatError(TextBlobError): """Raised if a data file with an unsupported format is passed to a classifier.""" pass ================================================ FILE: src/textblob/formats.py ================================================ """File formats for training and testing data. Includes a registry of valid file formats. New file formats can be added to the registry like so: :: from textblob import formats class PipeDelimitedFormat(formats.DelimitedFormat): delimiter = "|" formats.register("psv", PipeDelimitedFormat) Once a format has been registered, classifiers will be able to read data files with that format. :: from textblob.classifiers import NaiveBayesAnalyzer with open("training_data.psv", "r") as fp: cl = NaiveBayesAnalyzer(fp, format="psv") """ from __future__ import annotations import csv import json from collections import OrderedDict from textblob.utils import is_filelike DEFAULT_ENCODING = "utf-8" class BaseFormat: """Interface for format classes. Individual formats can decide on the composition and meaning of ``**kwargs``. :param File fp: A file-like object. .. versionchanged:: 0.9.0 Constructor receives a file pointer rather than a file path. """ def __init__(self, fp, **kwargs): pass def to_iterable(self): """Return an iterable object from the data.""" raise NotImplementedError('Must implement a "to_iterable" method.') @classmethod def detect(cls, stream: str): """Detect the file format given a filename. Return True if a stream is this file format. .. versionchanged:: 0.9.0 Changed from a static method to a class method. """ raise NotImplementedError('Must implement a "detect" class method.') class DelimitedFormat(BaseFormat): """A general character-delimited format.""" data: list[list[str]] delimiter = "," def __init__(self, fp, **kwargs): BaseFormat.__init__(self, fp, **kwargs) reader = csv.reader(fp, delimiter=self.delimiter) self.data = [row for row in reader] def to_iterable(self): """Return an iterable object from the data.""" return self.data @classmethod def detect(cls, stream): """Return True if stream is valid.""" try: csv.Sniffer().sniff(stream, delimiters=cls.delimiter) return True except (csv.Error, TypeError): return False class CSV(DelimitedFormat): """CSV format. Assumes each row is of the form ``text,label``. :: Today is a good day,pos I hate this car.,pos """ delimiter = "," class TSV(DelimitedFormat): """TSV format. Assumes each row is of the form ``text\tlabel``.""" delimiter = "\t" class JSON(BaseFormat): """JSON format. Assumes that JSON is formatted as an array of objects with ``text`` and ``label`` properties. :: [ {"text": "Today is a good day.", "label": "pos"}, {"text": "I hate this car.", "label": "neg"}, ] """ def __init__(self, fp, **kwargs): BaseFormat.__init__(self, fp, **kwargs) self.dict = json.load(fp) def to_iterable(self): """Return an iterable object from the JSON data.""" return [(d["text"], d["label"]) for d in self.dict] @classmethod def detect(cls, stream: str | bytes | bytearray): """Return True if stream is valid JSON.""" try: json.loads(stream) return True except ValueError: return False _registry = OrderedDict( [ ("csv", CSV), ("json", JSON), ("tsv", TSV), ] ) def detect(fp, max_read=1024): """Attempt to detect a file's format, trying each of the supported formats. Return the format class that was detected. If no format is detected, return ``None``. """ if not is_filelike(fp): return None for Format in _registry.values(): if Format.detect(fp.read(max_read)): fp.seek(0) return Format fp.seek(0) return None def get_registry(): """Return a dictionary of registered formats.""" return _registry def register(name, format_class): """Register a new format. :param str name: The name that will be used to refer to the format, e.g. 'csv' :param type format_class: The format class to register. """ get_registry()[name] = format_class ================================================ FILE: src/textblob/inflect.py ================================================ """Make word inflection default to English. This allows for backwards compatibility so you can still import text.inflect. >>> from textblob.inflect import singularize is equivalent to >>> from textblob.en.inflect import singularize """ from textblob.en.inflect import pluralize, singularize __all__ = [ "singularize", "pluralize", ] ================================================ FILE: src/textblob/mixins.py ================================================ import sys class ComparableMixin: """Implements rich operators for an object.""" def _cmpkey(self): raise NotImplementedError("Class must implement _cmpkey method") def _compare(self, other, method): try: return method(self._cmpkey(), other._cmpkey()) except (AttributeError, TypeError): # _cmpkey not implemented, or return different type, # so I can't compare with "other". Try the reverse comparison return NotImplemented def __lt__(self, other): return self._compare(other, lambda s, o: s < o) def __le__(self, other): return self._compare(other, lambda s, o: s <= o) def __eq__(self, other): return self._compare(other, lambda s, o: s == o) def __ge__(self, other): return self._compare(other, lambda s, o: s >= o) def __gt__(self, other): return self._compare(other, lambda s, o: s > o) def __ne__(self, other): return self._compare(other, lambda s, o: s != o) class BlobComparableMixin(ComparableMixin): """Allow blob objects to be comparable with both strings and blobs.""" def _compare(self, other, method): if isinstance(other, (str, bytes)): # Just compare with the other string return method(self._cmpkey(), other) return super()._compare(other, method) class StringlikeMixin: """Make blob objects behave like Python strings. Expects that classes that use this mixin to have a _strkey() method that returns the string to apply string methods to. Using _strkey() instead of __str__ ensures consistent behavior between Python 2 and 3. """ def _strkey(self) -> str: raise NotImplementedError("Class must implement _strkey method") def __repr__(self): """Returns a string representation for debugging.""" class_name = self.__class__.__name__ text = str(self) return f'{class_name}("{text}")' def __str__(self): """Returns a string representation used in print statements or str(my_blob).""" return self._strkey() def __len__(self): """Returns the length of the raw text.""" return len(self._strkey()) def __iter__(self): """Makes the object iterable as if it were a string, iterating through the raw string's characters. """ return iter(self._strkey()) def __contains__(self, sub): """Implements the `in` keyword like a Python string.""" return sub in self._strkey() def __getitem__(self, index): """Returns a substring. If index is an integer, returns a Python string of a single character. If a range is given, e.g. `blob[3:5]`, a new instance of the class is returned. """ if isinstance(index, int): return self._strkey()[index] # Just return a single character else: # Return a new blob object return self.__class__(self._strkey()[index]) def find(self, sub, start=0, end=sys.maxsize): """Behaves like the built-in str.find() method. Returns an integer, the index of the first occurrence of the substring argument sub in the sub-string given by [start:end]. """ return self._strkey().find(sub, start, end) def rfind(self, sub, start=0, end=sys.maxsize): """Behaves like the built-in str.rfind() method. Returns an integer, the index of the last (right-most) occurrence of the substring argument sub in the sub-sequence given by [start:end]. """ return self._strkey().rfind(sub, start, end) def index(self, sub, start=0, end=sys.maxsize): """Like blob.find() but raise ValueError when the substring is not found. """ return self._strkey().index(sub, start, end) def rindex(self, sub, start=0, end=sys.maxsize): """Like blob.rfind() but raise ValueError when substring is not found. """ return self._strkey().rindex(sub, start, end) def startswith(self, prefix, start=0, end=sys.maxsize): """Returns True if the blob starts with the given prefix.""" return self._strkey().startswith(prefix, start, end) def endswith(self, suffix, start=0, end=sys.maxsize): """Returns True if the blob ends with the given suffix.""" return self._strkey().endswith(suffix, start, end) # PEP8 aliases starts_with = startswith ends_with = endswith def title(self): """Returns a blob object with the text in title-case.""" return self.__class__(self._strkey().title()) def format(self, *args, **kwargs): """Perform a string formatting operation, like the built-in `str.format(*args, **kwargs)`. Returns a blob object. """ return self.__class__(self._strkey().format(*args, **kwargs)) def split(self, sep=None, maxsplit=sys.maxsize): """Behaves like the built-in str.split().""" return self._strkey().split(sep, maxsplit) def strip(self, chars=None): """Behaves like the built-in str.strip([chars]) method. Returns an object with leading and trailing whitespace removed. """ return self.__class__(self._strkey().strip(chars)) def upper(self): """Like str.upper(), returns new object with all upper-cased characters.""" return self.__class__(self._strkey().upper()) def lower(self): """Like str.lower(), returns new object with all lower-cased characters.""" return self.__class__(self._strkey().lower()) def join(self, iterable): """Behaves like the built-in `str.join(iterable)` method, except returns a blob object. Returns a blob which is the concatenation of the strings or blobs in the iterable. """ return self.__class__(self._strkey().join(iterable)) def replace(self, old, new, count=sys.maxsize): """Return a new blob object with all occurrences of `old` replaced by `new`. """ return self.__class__(self._strkey().replace(old, new, count)) ================================================ FILE: src/textblob/np_extractors.py ================================================ """Default noun phrase extractors are for English to maintain backwards compatibility, so you can still do >>> from textblob.np_extractors import ConllExtractor which is equivalent to >>> from textblob.en.np_extractors import ConllExtractor """ from textblob.base import BaseNPExtractor from textblob.en.np_extractors import ConllExtractor, FastNPExtractor __all__ = [ "BaseNPExtractor", "ConllExtractor", "FastNPExtractor", ] ================================================ FILE: src/textblob/parsers.py ================================================ """Default parsers to English for backwards compatibility so you can still do >>> from textblob.parsers import PatternParser which is equivalent to >>> from textblob.en.parsers import PatternParser """ from textblob.base import BaseParser from textblob.en.parsers import PatternParser __all__ = [ "BaseParser", "PatternParser", ] ================================================ FILE: src/textblob/sentiments.py ================================================ """Default sentiment analyzers are English for backwards compatibility, so you can still do >>> from textblob.sentiments import PatternAnalyzer which is equivalent to >>> from textblob.en.sentiments import PatternAnalyzer """ from textblob.base import BaseSentimentAnalyzer from textblob.en.sentiments import ( CONTINUOUS, DISCRETE, NaiveBayesAnalyzer, PatternAnalyzer, ) __all__ = [ "BaseSentimentAnalyzer", "DISCRETE", "CONTINUOUS", "PatternAnalyzer", "NaiveBayesAnalyzer", ] ================================================ FILE: src/textblob/taggers.py ================================================ """Default taggers to the English taggers for backwards incompatibility, so you can still do >>> from textblob.taggers import NLTKTagger which is equivalent to >>> from textblob.en.taggers import NLTKTagger """ from textblob.base import BaseTagger from textblob.en.taggers import NLTKTagger, PatternTagger __all__ = [ "BaseTagger", "PatternTagger", "NLTKTagger", ] ================================================ FILE: src/textblob/tokenizers.py ================================================ """Various tokenizer implementations. .. versionadded:: 0.4.0 """ from itertools import chain import nltk from textblob.base import BaseTokenizer from textblob.decorators import requires_nltk_corpus from textblob.utils import strip_punc class WordTokenizer(BaseTokenizer): """NLTK's recommended word tokenizer (currently the TreeBankTokenizer). Uses regular expressions to tokenize text. Assumes text has already been segmented into sentences. Performs the following steps: * split standard contractions, e.g. don't -> do n't * split commas and single quotes * separate periods that appear at the end of line """ def tokenize(self, text, include_punc=True): """Return a list of word tokens. :param text: string of text. :param include_punc: (optional) whether to include punctuation as separate tokens. Default to True. """ tokens = nltk.tokenize.word_tokenize(text) if include_punc: return tokens else: # Return each word token # Strips punctuation unless the word comes from a contraction # e.g. "Let's" => ["Let", "'s"] # e.g. "Can't" => ["Ca", "n't"] # e.g. "home." => ['home'] return [ word if word.startswith("'") else strip_punc(word, all=False) for word in tokens if strip_punc(word, all=False) ] class SentenceTokenizer(BaseTokenizer): """NLTK's sentence tokenizer (currently PunktSentenceTokenizer). Uses an unsupervised algorithm to build a model for abbreviation words, collocations, and words that start sentences, then uses that to find sentence boundaries. """ @requires_nltk_corpus def tokenize(self, text): """Return a list of sentences.""" return nltk.tokenize.sent_tokenize(text) #: Convenience function for tokenizing sentences sent_tokenize = SentenceTokenizer().itokenize _word_tokenizer = WordTokenizer() # Singleton word tokenizer def word_tokenize(text, include_punc=True, *args, **kwargs): """Convenience function for tokenizing text into words. NOTE: NLTK's word tokenizer expects sentences as input, so the text will be tokenized to sentences before being tokenized to words. """ words = chain.from_iterable( _word_tokenizer.itokenize(sentence, include_punc, *args, **kwargs) for sentence in sent_tokenize(text) ) return words ================================================ FILE: src/textblob/utils.py ================================================ from __future__ import annotations import re import string from typing import TYPE_CHECKING if TYPE_CHECKING: from collections.abc import Iterable PUNCTUATION_REGEX = re.compile(f"[{re.escape(string.punctuation)}]") def strip_punc(s: str, all=False): """Removes punctuation from a string. :param s: The string. :param all: Remove all punctuation. If False, only removes punctuation from the ends of the string. """ if all: return PUNCTUATION_REGEX.sub("", s.strip()) else: return s.strip().strip(string.punctuation) def lowerstrip(s: str, all=False): """Makes text all lowercase and strips punctuation and whitespace. :param s: The string. :param all: Remove all punctuation. If False, only removes punctuation from the ends of the string. """ return strip_punc(s.lower().strip(), all=all) def tree2str(tree, concat=" "): """Convert a nltk.tree.Tree to a string. For example: (NP a/DT beautiful/JJ new/JJ dashboard/NN) -> "a beautiful dashboard" """ return concat.join([word for (word, _) in tree]) def filter_insignificant( chunk, tag_suffixes: Iterable[str] = ("DT", "CC", "PRP$", "PRP") ): """Filter out insignificant (word, tag) tuples from a chunk of text.""" good: list[tuple[str, str]] = [] for word, tag in chunk: ok = True for suffix in tag_suffixes: if tag.endswith(suffix): ok = False break if ok: good.append((word, tag)) return good def is_filelike(obj): """Return whether ``obj`` is a file-like object.""" if not hasattr(obj, "read"): return False if not callable(obj.read): return False return True ================================================ FILE: src/textblob/wordnet.py ================================================ """Wordnet interface. Contains classes for creating Synsets and Lemmas directly. .. versionadded:: 0.7.0 """ import nltk #: wordnet module from nltk wordnet = nltk.corpus.wordnet #: Synset constructor Synset = nltk.corpus.wordnet.synset #: Lemma constructor Lemma = nltk.corpus.wordnet.lemma # Part of speech constants VERB, NOUN, ADJ, ADV = wordnet.VERB, wordnet.NOUN, wordnet.ADJ, wordnet.ADV ================================================ FILE: tests/__init__.py ================================================ ================================================ FILE: tests/data.csv ================================================ I love this car,pos 美丽优于丑陋,pos I am so excited about the concert,pos I feel great this morning,pos He is my best friend,pos This view is amazing,pos I do not like this car,neg I am not looking forward to the concert,neg He is my enemy,neg I feel tired this morning,neg ================================================ FILE: tests/data.json ================================================ [ { "text": "I love this car", "label": "pos" }, { "text": "美丽优于丑陋", "label": "pos" }, { "text": "I am so excited about the concert", "label": "pos" }, { "text": "I feel great this morning", "label": "pos" }, { "text": "He is my best friend", "label": "pos" }, { "text": "This view is amazing", "label": "pos" }, { "text": "I do not like this car", "label": "neg" }, { "text": "I am not looking forward to the concert", "label": "neg" }, { "text": "He is my enemy", "label": "neg" }, { "text": "I feel tired this morning", "label": "neg" } ] ================================================ FILE: tests/data.tsv ================================================ I love this car pos 美丽优于丑陋 pos I am so excited about the concert pos I feel great this morning pos He is my best friend pos This view is amazing pos I do not like this car neg I am not looking forward to the concert neg He is my enemy neg I feel tired this morning neg ================================================ FILE: tests/test_blob.py ================================================ """ Tests for the text processor. """ import json from datetime import datetime from unittest import TestCase import nltk import pytest import textblob as tb import textblob.wordnet as wn from textblob.classifiers import NaiveBayesClassifier from textblob.np_extractors import ConllExtractor, FastNPExtractor from textblob.parsers import PatternParser from textblob.sentiments import NaiveBayesAnalyzer, PatternAnalyzer from textblob.taggers import NLTKTagger, PatternTagger from textblob.tokenizers import SentenceTokenizer, WordTokenizer Synset = nltk.corpus.reader.Synset train = [ ("I love this sandwich.", "pos"), ("This is an amazing place!", "pos"), ("What a truly amazing dinner.", "pos"), ("I feel very good about these beers.", "pos"), ("This is my best work.", "pos"), ("What an awesome view", "pos"), ("I do not like this restaurant", "neg"), ("I am tired of this stuff.", "neg"), ("I can't deal with this", "neg"), ("He is my sworn enemy!", "neg"), ("My boss is horrible.", "neg"), ] test = [ ("The beer was good.", "pos"), ("I do not enjoy my job", "neg"), ("I ain't feeling dandy today.", "neg"), ("I feel amazing!", "pos"), ("Gary is a friend of mine.", "pos"), ("I can't believe I'm doing this.", "neg"), ] classifier = NaiveBayesClassifier(train) class WordListTest(TestCase): def setUp(self): self.words = "Beautiful is better than ugly".split() self.mixed = ["dog", "dogs", "blob", "Blobs", "text"] def test_len(self): wl = tb.WordList(["Beautiful", "is", "better"]) assert len(wl) == 3 def test_slicing(self): wl = tb.WordList(self.words) first = wl[0] assert isinstance(first, tb.Word) assert first == "Beautiful" dogs = wl[0:2] assert isinstance(dogs, tb.WordList) assert dogs == tb.WordList(["Beautiful", "is"]) def test_repr(self): wl = tb.WordList(["Beautiful", "is", "better"]) assert repr(wl) == "WordList(['Beautiful', 'is', 'better'])" def test_slice_repr(self): wl = tb.WordList(["Beautiful", "is", "better"]) assert repr(wl[:2]) == "WordList(['Beautiful', 'is'])" def test_str(self): wl = tb.WordList(self.words) assert str(wl) == str(self.words) def test_singularize(self): wl = tb.WordList(["dogs", "cats", "buffaloes", "men", "mice", "offspring"]) assert wl.singularize() == tb.WordList( ["dog", "cat", "buffalo", "man", "mouse", "offspring"] ) def test_pluralize(self): wl = tb.WordList(["dog", "cat", "buffalo", "antelope"]) assert wl.pluralize() == tb.WordList(["dogs", "cats", "buffaloes", "antelope"]) @pytest.mark.slow def test_lemmatize(self): wl = tb.WordList(["cat", "dogs", "oxen"]) assert wl.lemmatize() == tb.WordList(["cat", "dog", "ox"]) def test_stem(self): # only PorterStemmer tested wl = tb.WordList(["cat", "dogs", "oxen"]) assert wl.stem() == tb.WordList(["cat", "dog", "oxen"]) def test_upper(self): wl = tb.WordList(self.words) assert wl.upper() == tb.WordList([w.upper() for w in self.words]) def test_lower(self): wl = tb.WordList(["Zen", "oF", "PYTHON"]) assert wl.lower() == tb.WordList(["zen", "of", "python"]) def test_count(self): wl = tb.WordList(["monty", "python", "Python", "Monty"]) assert wl.count("monty") == 2 assert wl.count("monty", case_sensitive=True) == 1 assert wl.count("mon") == 0 def test_convert_to_list(self): wl = tb.WordList(self.words) assert list(wl) == self.words def test_append(self): wl = tb.WordList(["dog"]) wl.append("cat") assert isinstance(wl[1], tb.Word) wl.append(("a", "tuple")) assert isinstance(wl[2], tuple) def test_extend(self): wl = tb.WordList(["cats", "dogs"]) wl.extend(["buffalo", 4]) assert isinstance(wl[2], tb.Word) assert isinstance(wl[3], int) def test_pop(self): wl = tb.WordList(["cats", "dogs"]) assert wl.pop() == tb.Word("dogs") with pytest.raises(IndexError): wl[1] assert wl.pop() == tb.Word("cats") assert len(wl) == 0 with pytest.raises(IndexError): wl.pop() def test_setitem(self): wl = tb.WordList(["I", "love", "JavaScript"]) wl[2] = tb.Word("Python") assert wl[2] == tb.Word("Python") def test_reverse(self): wl = tb.WordList(["head", "shoulders", "knees", "toes"]) wl.reverse() assert list(wl) == ["toes", "knees", "shoulders", "head"] class SentenceTest(TestCase): def setUp(self): self.raw_sentence = "Any place with frites and Belgian beer has my vote." self.sentence = tb.Sentence(self.raw_sentence) def test_repr(self): assert repr(self.sentence) == f'Sentence("{self.raw_sentence}")' def test_stripped_sentence(self): assert ( self.sentence.stripped == "any place with frites and belgian beer has my vote" ) def test_len(self): assert len(self.sentence) == len(self.raw_sentence) @pytest.mark.slow def test_dict(self): sentence_dict = self.sentence.dict assert sentence_dict == { "raw": self.raw_sentence, "start_index": 0, "polarity": 0.0, "subjectivity": 0.0, "end_index": len(self.raw_sentence) - 1, "stripped": "any place with frites and belgian beer has my vote", "noun_phrases": self.sentence.noun_phrases, } def test_pos_tags(self): then1 = datetime.now() tagged = self.sentence.pos_tags now1 = datetime.now() t1 = now1 - then1 then2 = datetime.now() tagged = self.sentence.pos_tags now2 = datetime.now() t2 = now2 - then2 # Getting the pos tags the second time should be faster # because they were stored as an attribute the first time assert t2 < t1 assert tagged == [ ("Any", "DT"), ("place", "NN"), ("with", "IN"), ("frites", "NNS"), ("and", "CC"), ("Belgian", "JJ"), ("beer", "NN"), ("has", "VBZ"), ("my", "PRP$"), ("vote", "NN"), ] @pytest.mark.slow def test_noun_phrases(self): nps = self.sentence.noun_phrases assert nps == ["belgian beer"] def test_words_are_word_objects(self): words = self.sentence.words assert isinstance(words[0], tb.Word) assert words[1].pluralize() == "places" def test_string_equality(self): assert self.sentence == "Any place with frites and Belgian beer has my vote." def test_correct(self): blob = tb.Sentence("I havv bad speling.") assert isinstance(blob.correct(), tb.Sentence) assert blob.correct() == tb.Sentence("I have bad spelling.") blob = tb.Sentence("I havv \ngood speling.") assert isinstance(blob.correct(), tb.Sentence) assert blob.correct() == tb.Sentence("I have \ngood spelling.") class TextBlobTest(TestCase): def setUp(self): self.text = """Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those!""" self.blob = tb.TextBlob(self.text) self.np_test_text = """ Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C. The language provides constructs intended to enable clear programs on both a small and large scale. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming or procedural styles. It features a dynamic type system and automatic memory management and has a large and comprehensive standard library. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts. Using third-party tools, Python code can be packaged into standalone executable programs. Python interpreters are available for many operating systems. CPython, the reference implementation of Python, is free and open source software and h as a community-based development model, as do nearly all of its alternative implementations. CPython is managed by the non-profit Python Software Foundation.""" # noqa: E501 self.np_test_blob = tb.TextBlob(self.np_test_text) self.short = "Beautiful is better than ugly. " self.short_blob = tb.TextBlob(self.short) def test_init(self): blob = tb.TextBlob("Wow I love this place. It really rocks my socks!") assert len(blob.sentences) == 2 assert blob.sentences[1].stripped == "it really rocks my socks" assert blob.string == blob.raw # Must initialize with a string with pytest.raises(TypeError): tb.TextBlob(["invalid"]) def test_string_equality(self): blob = tb.TextBlob("Textblobs should be equal to strings.") assert blob == "Textblobs should be equal to strings." def test_string_comparison(self): blob = tb.TextBlob("apple") assert blob < "banana" assert blob > "aardvark" def test_hash(self): blob = tb.TextBlob("apple") assert hash(blob) == hash("apple") assert hash(blob) != hash("banana") def test_stripped(self): blob = tb.TextBlob("Um... well this ain't right.!..") assert blob.stripped == "um well this aint right" def test_ngrams(self): blob = tb.TextBlob("I am eating a pizza.") three_grams = blob.ngrams() assert three_grams == [ tb.WordList(("I", "am", "eating")), tb.WordList(("am", "eating", "a")), tb.WordList(("eating", "a", "pizza")), ] four_grams = blob.ngrams(n=4) assert four_grams == [ tb.WordList(("I", "am", "eating", "a")), tb.WordList(("am", "eating", "a", "pizza")), ] def test_clean_html(self): html = ( "Python is a widely used " 'general-purpose, ' '' "high-level programming language." ) with pytest.raises(NotImplementedError): tb.TextBlob(html, clean_html=True) def test_sentences(self): blob = self.blob assert len(blob.sentences) == 19 assert isinstance(blob.sentences[0], tb.Sentence) def test_senences_with_space_before_punctuation(self): text = "Uh oh. This sentence might cause some problems. : Now we're ok." b = tb.TextBlob(text) assert len(b.sentences) == 3 def test_sentiment_of_foreign_text(self): blob = tb.TextBlob( "Nous avons cherch\xe9 un motel dans la r\xe9gion de " "Madison, mais les motels ne sont pas nombreux et nous avons " "finalement choisi un Motel 6, attir\xe9s par le bas " "prix de la chambre." ) assert isinstance(blob.sentiment[0], float) def test_iter(self): for i, letter in enumerate(self.short_blob): assert letter == self.short[i] def test_raw_sentences(self): blob = tb.TextBlob(self.text) assert len(blob.raw_sentences) == 19 assert blob.raw_sentences[0] == "Beautiful is better than ugly." def test_blob_with_no_sentences(self): text = "this isn't really a sentence it's just a long string of words" blob = tb.TextBlob(text) # the blob just has one sentence assert len(blob.sentences) == 1 # the start index is 0, the end index is len(text) - 1 assert blob.sentences[0].start_index == 0 assert blob.sentences[0].end_index == len(text) def test_len(self): blob = tb.TextBlob("lorem ipsum") assert len(blob) == len("lorem ipsum") def test_repr(self): blob1 = tb.TextBlob("lorem ipsum") assert repr(blob1) == 'TextBlob("{}")'.format("lorem ipsum") def test_cmp(self): blob1 = tb.TextBlob("lorem ipsum") blob2 = tb.TextBlob("lorem ipsum") blob3 = tb.TextBlob("dolor sit amet") assert blob1 == blob2 # test == assert blob1 > blob3 # test > assert blob1 >= blob3 # test >= assert blob3 < blob2 # test < assert blob3 <= blob2 # test <= def test_invalid_comparison(self): blob = tb.TextBlob("one") # invalid comparison raises Error with pytest.raises(TypeError): blob < 2 # noqa: B015 def test_words(self): blob = tb.TextBlob( "Beautiful is better than ugly. Explicit is better than implicit." ) assert isinstance(blob.words, tb.WordList) assert blob.words == tb.WordList( [ "Beautiful", "is", "better", "than", "ugly", "Explicit", "is", "better", "than", "implicit", ] ) short = tb.TextBlob("Just a bundle of words") assert short.words == tb.WordList(["Just", "a", "bundle", "of", "words"]) def test_words_includes_apostrophes_in_contractions(self): blob = tb.TextBlob("Let's test this.") assert blob.words == tb.WordList(["Let", "'s", "test", "this"]) blob2 = tb.TextBlob("I can't believe it's not butter.") assert blob2.words == tb.WordList( ["I", "ca", "n't", "believe", "it", "'s", "not", "butter"] ) def test_pos_tags(self): blob = tb.TextBlob( "Simple is better than complex. Complex is better than complicated." ) assert blob.pos_tags == [ ("Simple", "NN"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complex", "JJ"), ("Complex", "NNP"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complicated", "VBN"), ] def test_tags(self): assert self.blob.tags == self.blob.pos_tags def test_tagging_nonascii(self): b = tb.TextBlob( "Learn how to make the five classic French mother sauces: " "Béchamel, Tomato Sauce, Espagnole, Velouté and Hollandaise." ) tags = b.tags assert isinstance(tags[0][0], str) def test_pos_tags_includes_one_letter_articles(self): blob = tb.TextBlob("This is a sentence.") assert blob.pos_tags[2][0] == "a" @pytest.mark.slow def test_np_extractor_defaults_to_fast_tagger(self): text = "Python is a high-level scripting language." blob1 = tb.TextBlob(text) assert isinstance(blob1.np_extractor, FastNPExtractor) def test_np_extractor_is_shared_among_instances(self): blob1 = tb.TextBlob("This is one sentence") blob2 = tb.TextBlob("This is another sentence") assert blob1.np_extractor is blob2.np_extractor @pytest.mark.slow def test_can_use_different_np_extractors(self): e = ConllExtractor() text = "Python is a high-level scripting language." blob = tb.TextBlob(text) blob.np_extractor = e assert isinstance(blob.np_extractor, ConllExtractor) def test_can_use_different_sentanalyzer(self): blob = tb.TextBlob("I love this car", analyzer=NaiveBayesAnalyzer()) assert isinstance(blob.analyzer, NaiveBayesAnalyzer) @pytest.mark.slow def test_discrete_sentiment(self): blob = tb.TextBlob("I feel great today.", analyzer=NaiveBayesAnalyzer()) assert blob.sentiment[0] == "pos" def test_can_get_subjectivity_and_polarity_with_different_analyzer(self): blob = tb.TextBlob("I love this car.", analyzer=NaiveBayesAnalyzer()) pattern = PatternAnalyzer() assert blob.polarity == pattern.analyze(str(blob))[0] assert blob.subjectivity == pattern.analyze(str(blob))[1] def test_pos_tagger_defaults_to_pattern(self): blob = tb.TextBlob("some text") assert isinstance(blob.pos_tagger, NLTKTagger) def test_pos_tagger_is_shared_among_instances(self): blob1 = tb.TextBlob("This is one sentence") blob2 = tb.TextBlob("This is another sentence.") assert blob1.pos_tagger is blob2.pos_tagger def test_can_use_different_pos_tagger(self): tagger = NLTKTagger() blob = tb.TextBlob("this is some text", pos_tagger=tagger) assert isinstance(blob.pos_tagger, NLTKTagger) @pytest.mark.slow def test_can_pass_np_extractor_to_constructor(self): e = ConllExtractor() blob = tb.TextBlob("Hello world!", np_extractor=e) assert isinstance(blob.np_extractor, ConllExtractor) def test_getitem(self): blob = tb.TextBlob("lorem ipsum") assert blob[0] == "l" assert blob[0:5] == tb.TextBlob("lorem") def test_upper(self): blob = tb.TextBlob("lorem ipsum") assert is_blob(blob.upper()) assert blob.upper() == tb.TextBlob("LOREM IPSUM") def test_upper_and_words(self): blob = tb.TextBlob("beautiful is better") assert blob.upper().words == tb.WordList(["BEAUTIFUL", "IS", "BETTER"]) def test_lower(self): blob = tb.TextBlob("Lorem Ipsum") assert is_blob(blob.lower()) assert blob.lower() == tb.TextBlob("lorem ipsum") def test_find(self): text = "Beautiful is better than ugly." blob = tb.TextBlob(text) assert blob.find("better", 5, len(blob)) == text.find("better", 5, len(text)) def test_rfind(self): text = "Beautiful is better than ugly. " blob = tb.TextBlob(text) assert blob.rfind("better") == text.rfind("better") def test_startswith(self): blob = tb.TextBlob(self.text) assert blob.startswith("Beautiful") assert blob.starts_with("Beautiful") def test_endswith(self): blob = tb.TextBlob(self.text) assert blob.endswith("of those!") assert blob.ends_with("of those!") def test_split(self): blob = tb.TextBlob("Beautiful is better") assert blob.split() == tb.WordList(["Beautiful", "is", "better"]) def test_title(self): blob = tb.TextBlob("Beautiful is better") assert blob.title() == tb.TextBlob("Beautiful Is Better") def test_format(self): blob = tb.TextBlob("1 + 1 = {0}") assert blob.format(1 + 1) == tb.TextBlob("1 + 1 = 2") assert "1 + 1 = {}".format(tb.TextBlob("2")) == "1 + 1 = 2" def test_using_indices_for_slicing(self): blob = tb.TextBlob("Hello world. How do you do?") sent1, sent2 = blob.sentences assert blob[sent1.start : sent1.end] == tb.TextBlob(str(sent1)) assert blob[sent2.start : sent2.end] == tb.TextBlob(str(sent2)) def test_indices_with_only_one_sentences(self): blob = tb.TextBlob("Hello world.") sent1 = blob.sentences[0] assert blob[sent1.start : sent1.end] == tb.TextBlob(str(sent1)) def test_indices_with_multiple_puncutations(self): blob = tb.TextBlob("Hello world. How do you do?! This has an ellipses...") sent1, sent2, sent3 = blob.sentences assert blob[sent2.start : sent2.end] == tb.TextBlob("How do you do?!") assert blob[sent3.start : sent3.end] == tb.TextBlob("This has an ellipses...") def test_indices_short_names(self): blob = tb.TextBlob(self.text) last_sentence = blob.sentences[len(blob.sentences) - 1] assert last_sentence.start == last_sentence.start_index assert last_sentence.end == last_sentence.end_index def test_replace(self): blob = tb.TextBlob("textblob is a blobby blob") assert blob.replace("blob", "bro") == tb.TextBlob("textbro is a broby bro") assert blob.replace("blob", "bro", 1) == tb.TextBlob("textbro is a blobby blob") def test_join(self): lst = ["explicit", "is", "better"] wl = tb.WordList(lst) assert tb.TextBlob(" ").join(lst) == tb.TextBlob("explicit is better") assert tb.TextBlob(" ").join(wl) == tb.TextBlob("explicit is better") @pytest.mark.slow def test_blob_noun_phrases(self): noun_phrases = self.np_test_blob.noun_phrases assert "python" in noun_phrases assert "design philosophy" in noun_phrases def test_word_counts(self): blob = tb.TextBlob("Buffalo buffalo ate my blue buffalo.") assert dict(blob.word_counts) == {"buffalo": 3, "ate": 1, "my": 1, "blue": 1} assert blob.word_counts["buffalo"] == 3 assert blob.words.count("buffalo") == 3 assert blob.words.count("buffalo", case_sensitive=True) == 2 assert blob.word_counts["blue"] == 1 assert blob.words.count("blue") == 1 assert blob.word_counts["ate"] == 1 assert blob.words.count("ate") == 1 assert blob.word_counts["buff"] == 0 assert blob.words.count("buff") == 0 blob2 = tb.TextBlob(self.text) assert blob2.words.count("special") == 2 assert blob2.words.count("special", case_sensitive=True) == 1 @pytest.mark.slow def test_np_counts(self): # Add some text so that we have a noun phrase that # has a frequency greater than 1 noun_phrases = self.np_test_blob.noun_phrases assert noun_phrases.count("python") == 6 assert self.np_test_blob.np_counts["python"] == noun_phrases.count("python") assert noun_phrases.count("cpython") == 2 assert noun_phrases.count("not found") == 0 def test_add(self): blob1 = tb.TextBlob("Hello, world! ") blob2 = tb.TextBlob("Hola mundo!") # Can add two text blobs assert blob1 + blob2 == tb.TextBlob("Hello, world! Hola mundo!") # Can also add a string to a tb.TextBlob assert blob1 + "Hola mundo!" == tb.TextBlob("Hello, world! Hola mundo!") # Or both assert blob1 + blob2 + " Goodbye!" == tb.TextBlob( "Hello, world! Hola mundo! Goodbye!" ) # operands must be strings with pytest.raises(TypeError): blob1 + ["hello"] def test_unicode(self): blob = tb.TextBlob(self.text) assert str(blob) == str(self.text) def test_strip(self): text = "Beautiful is better than ugly. " blob = tb.TextBlob(text) assert is_blob(blob) assert blob.strip() == tb.TextBlob(text.strip()) def test_strip_and_words(self): blob = tb.TextBlob("Beautiful is better! ") assert blob.strip().words == tb.WordList(["Beautiful", "is", "better"]) def test_index(self): blob = tb.TextBlob(self.text) assert blob.index("Namespaces") == self.text.index("Namespaces") def test_sentences_after_concatenation(self): blob1 = tb.TextBlob("Beautiful is better than ugly. ") blob2 = tb.TextBlob("Explicit is better than implicit.") concatenated = blob1 + blob2 assert len(concatenated.sentences) == 2 def test_sentiment(self): positive = tb.TextBlob( "This is the best, most amazing text-processing library ever!" ) assert positive.sentiment[0] > 0.0 negative = tb.TextBlob("bad bad bitches that's my muthufuckin problem.") assert negative.sentiment[0] < 0.0 zen = tb.TextBlob(self.text) assert round(zen.sentiment[0], 1) == 0.2 def test_subjectivity(self): positive = tb.TextBlob("Oh my god this is so amazing! I'm so happy!") assert isinstance(positive.subjectivity, float) assert positive.subjectivity > 0 def test_polarity(self): positive = tb.TextBlob("Oh my god this is so amazing! I'm so happy!") assert isinstance(positive.polarity, float) assert positive.polarity > 0 def test_sentiment_of_emoticons(self): b1 = tb.TextBlob("Faces have values =)") b2 = tb.TextBlob("Faces have values") assert b1.sentiment[0] > b2.sentiment[0] def test_bad_init(self): with pytest.raises(TypeError): tb.TextBlob(["bad"]) with pytest.raises(ValueError): tb.TextBlob("this is fine", np_extractor="this is not fine") with pytest.raises(ValueError): tb.TextBlob("this is fine", pos_tagger="this is not fine") def test_in(self): blob = tb.TextBlob("Beautiful is better than ugly. ") assert "better" in blob assert "fugly" not in blob @pytest.mark.slow def test_json(self): blob = tb.TextBlob("Beautiful is better than ugly. ") assert blob.json == blob.to_json() blob_dict = json.loads(blob.json)[0] assert blob_dict["stripped"] == "beautiful is better than ugly" assert blob_dict["noun_phrases"] == blob.sentences[0].noun_phrases assert blob_dict["start_index"] == blob.sentences[0].start assert blob_dict["end_index"] == blob.sentences[0].end assert blob_dict["polarity"] == pytest.approx( blob.sentences[0].polarity, abs=1e-4 ) assert blob_dict["subjectivity"] == pytest.approx( blob.sentences[0].subjectivity, abs=1e-4 ) def test_words_are_word_objects(self): words = self.blob.words assert isinstance(words[0], tb.Word) def test_words_have_pos_tags(self): blob = tb.TextBlob( "Simple is better than complex. Complex is better than complicated." ) first_word, first_tag = blob.pos_tags[0] assert isinstance(first_word, tb.Word) assert first_word.pos_tag == first_tag def test_tokenizer_defaults_to_word_tokenizer(self): assert isinstance(self.blob.tokenizer, WordTokenizer) def test_tokens_property(self): assert self.blob.tokens, tb.WordList(WordTokenizer().tokenize(self.text)) def test_can_use_an_different_tokenizer(self): tokenizer = nltk.tokenize.TabTokenizer() blob = tb.TextBlob("This is\ttext.", tokenizer=tokenizer) assert blob.tokens == tb.WordList(["This is", "text."]) def test_tokenize_method(self): tokenizer = nltk.tokenize.TabTokenizer() blob = tb.TextBlob("This is\ttext.") # If called without arguments, should default to WordTokenizer assert blob.tokenize() == tb.WordList(["This", "is", "text", "."]) # Pass in the TabTokenizer assert blob.tokenize(tokenizer) == tb.WordList(["This is", "text."]) def test_tags_uses_custom_tokenizer(self): tokenizer = nltk.tokenize.regexp.WordPunctTokenizer() blob = tb.TextBlob("Good muffins cost $3.88\nin New York.", tokenizer=tokenizer) assert blob.tags == [ ("Good", "JJ"), ("muffins", "NNS"), ("cost", "VBP"), ("3", "CD"), ("88", "CD"), ("in", "IN"), ("New", "NNP"), ("York", "NNP"), ] def test_tags_with_custom_tokenizer_and_tagger(self): tokenizer = nltk.tokenize.regexp.WordPunctTokenizer() tagger = tb.taggers.PatternTagger() blob = tb.TextBlob( "Good muffins cost $3.88\nin New York.", tokenizer=tokenizer, pos_tagger=tagger, ) # PatterTagger takes raw text (not tokens), and handles tokenization itself. assert blob.tags == [ ("Good", "JJ"), ("muffins", "NNS"), ("cost", "NN"), ("3.88", "CD"), ("in", "IN"), ("New", "NNP"), ("York", "NNP"), ] def test_correct(self): blob = tb.TextBlob("I havv bad speling.") assert isinstance(blob.correct(), tb.TextBlob) assert blob.correct() == tb.TextBlob("I have bad spelling.") blob2 = tb.TextBlob("I am so exciited!!!") assert blob2.correct() == "I am so excited!!!" blob3 = tb.TextBlob("The meaning of life is 42.0.") assert blob3.correct() == "The meaning of life is 42.0." blob4 = tb.TextBlob("?") assert blob4.correct() == "?" blob5 = tb.TextBlob("I can't spel") assert blob5.correct() == "I can't spell" blob6 = tb.TextBlob("I cann't \nspel") assert blob6.correct() == "I can't \nspell" # From a user-submitted bug text = ( "Before you embark on any of this journey, write a quick " + "high-level test that demonstrates the slowness. " + "You may need to introduce some minimum set of data to " + "reproduce a significant enough slowness." ) blob5 = tb.TextBlob(text) assert blob5.correct() == text text = "Word list! :\n" + "\t* spelling\n" + "\t* well" blob6 = tb.TextBlob(text) assert blob6.correct() == text def test_parse(self): blob = tb.TextBlob("And now for something completely different.") assert blob.parse() == PatternParser().parse(blob.string) def test_passing_bad_init_params(self): tagger = PatternTagger() with pytest.raises(ValueError): tb.TextBlob("blah", parser=tagger) with pytest.raises(ValueError): tb.TextBlob("blah", np_extractor=tagger) with pytest.raises(ValueError): tb.TextBlob("blah", tokenizer=tagger) with pytest.raises(ValueError): tb.TextBlob("blah", analyzer=tagger) with pytest.raises(ValueError): tb.TextBlob("blah", pos_tagger=PatternAnalyzer) def test_classify(self): blob = tb.TextBlob( "This is an amazing library. What an awesome classifier!", classifier=classifier, ) assert blob.classify() == "pos" for s in blob.sentences: assert s.classify() == "pos" def test_classify_without_classifier(self): blob = tb.TextBlob("This isn't gonna be good") with pytest.raises(NameError): blob.classify() def test_word_string_type_after_pos_tags_is_str(self): text = "John is a cat" blob = tb.TextBlob(text) for word, _ in blob.pos_tags: assert type(word.string) is str class WordTest(TestCase): def setUp(self): self.cat = tb.Word("cat") self.cats = tb.Word("cats") def test_init(self): tb.Word("cat") assert isinstance(self.cat, tb.Word) word = tb.Word("cat", "NN") assert word.pos_tag == "NN" def test_singularize(self): singular = self.cats.singularize() assert singular == "cat" assert self.cat.singularize() == "cat" assert isinstance(self.cat.singularize(), tb.Word) def test_pluralize(self): plural = self.cat.pluralize() assert self.cat.pluralize() == "cats" assert isinstance(plural, tb.Word) def test_repr(self): assert repr(self.cat) == repr("cat") def test_str(self): assert str(self.cat) == "cat" def test_has_str_methods(self): assert self.cat.upper() == "CAT" assert self.cat.lower() == "cat" assert self.cat[0:2] == "ca" def test_spellcheck(self): blob = tb.Word("speling") suggestions = blob.spellcheck() assert suggestions[0][0] == "spelling" def test_spellcheck_special_cases(self): # Punctuation assert tb.Word("!").spellcheck() == [("!", 1.0)] # Numbers assert tb.Word("42").spellcheck() == [("42", 1.0)] assert tb.Word("12.34").spellcheck() == [("12.34", 1.0)] # One-letter words assert tb.Word("I").spellcheck() == [("I", 1.0)] assert tb.Word("A").spellcheck() == [("A", 1.0)] assert tb.Word("a").spellcheck() == [("a", 1.0)] def test_correct(self): w = tb.Word("speling") correct = w.correct() assert correct == tb.Word("spelling") assert isinstance(correct, tb.Word) @pytest.mark.slow def test_lemmatize(self): w = tb.Word("cars") assert w.lemmatize() == "car" w = tb.Word("wolves") assert w.lemmatize() == "wolf" w = tb.Word("went") assert w.lemmatize("v") == "go" # wordnet tagset assert w.lemmatize("VBD") == "go" # penn treebank tagset def test_lemma(self): w = tb.Word("wolves") assert w.lemma == "wolf" w = tb.Word("went", "VBD") assert w.lemma == "go" def test_stem(self): # only PorterStemmer tested w = tb.Word("cars") assert w.stem() == "car" w = tb.Word("wolves") assert w.stem() == "wolv" w = tb.Word("went") assert w.stem() == "went" def test_synsets(self): w = tb.Word("car") assert isinstance(w.synsets, (list, tuple)) assert isinstance(w.synsets[0], Synset) def test_synsets_with_pos_argument(self): w = tb.Word("work") noun_syns = w.get_synsets(pos=wn.NOUN) for synset in noun_syns: assert synset.pos() == wn.NOUN def test_definitions(self): w = tb.Word("octopus") for definition in w.definitions: assert isinstance(definition, str) def test_define(self): w = tb.Word("hack") synsets = w.get_synsets(wn.NOUN) definitions = w.define(wn.NOUN) assert len(synsets) == len(definitions) class TestWordnetInterface(TestCase): def setUp(self): pass def test_synset(self): syn = wn.Synset("dog.n.01") word = tb.Word("dog") assert word.synsets[0] == syn def test_lemma(self): lemma = wn.Lemma("eat.v.01.eat") word = tb.Word("eat") assert word.synsets[0].lemmas()[0] == lemma class BlobberTest(TestCase): def setUp(self): self.blobber = tb.Blobber() # The default blobber def test_creates_blobs(self): blob1 = self.blobber("this is one blob") assert isinstance(blob1, tb.TextBlob) blob2 = self.blobber("another blob") assert blob1.pos_tagger == blob2.pos_tagger def test_default_tagger(self): blob = self.blobber("Some text") assert isinstance(blob.pos_tagger, NLTKTagger) def test_default_np_extractor(self): blob = self.blobber("Some text") assert isinstance(blob.np_extractor, FastNPExtractor) def test_default_tokenizer(self): blob = self.blobber("Some text") assert isinstance(blob.tokenizer, WordTokenizer) def test_str_and_repr(self): expected = "Blobber(tokenizer=WordTokenizer(), pos_tagger=NLTKTagger(), np_extractor=FastNPExtractor(), analyzer=PatternAnalyzer(), parser=PatternParser(), classifier=None)" # noqa: E501 assert repr(self.blobber) == expected assert str(self.blobber) == repr(self.blobber) def test_overrides(self): b = tb.Blobber(tokenizer=SentenceTokenizer(), np_extractor=ConllExtractor()) blob = b("How now? Brown cow?") assert isinstance(blob.tokenizer, SentenceTokenizer) assert blob.tokens == tb.WordList(["How now?", "Brown cow?"]) blob2 = b("Another blob") # blobs have the same tokenizer assert blob.tokenizer is blob2.tokenizer # but aren't the same object assert blob != blob2 def test_override_analyzer(self): b = tb.Blobber(analyzer=NaiveBayesAnalyzer()) blob = b("How now?") blob2 = b("Brown cow") assert isinstance(blob.analyzer, NaiveBayesAnalyzer) assert blob.analyzer is blob2.analyzer def test_overrider_classifier(self): b = tb.Blobber(classifier=classifier) blob = b("I am so amazing") assert blob.classify() == "pos" def is_blob(obj): return isinstance(obj, tb.TextBlob) ================================================ FILE: tests/test_classifiers.py ================================================ import os import unittest from unittest import mock import nltk import pytest from textblob import formats from textblob.classifiers import ( DecisionTreeClassifier, MaxEntClassifier, NaiveBayesClassifier, NLTKClassifier, PositiveNaiveBayesClassifier, _get_words_from_dataset, basic_extractor, contains_extractor, ) from textblob.exceptions import FormatError from textblob.tokenizers import WordTokenizer HERE = os.path.abspath(os.path.dirname(__file__)) CSV_FILE = os.path.join(HERE, "data.csv") JSON_FILE = os.path.join(HERE, "data.json") TSV_FILE = os.path.join(HERE, "data.tsv") train_set = [ ("I love this car", "positive"), ("This view is amazing", "positive"), ("I feel great this morning", "positive"), ("I am so excited about the concert", "positive"), ("He is my best friend", "positive"), ("I do not like this car", "negative"), ("This view is horrible", "negative"), ("I feel tired this morning", "negative"), ("I am not looking forward to the concert", "negative"), ("He is my enemy", "negative"), ] test_set = [ ("I feel happy this morning", "positive"), ("Larry is my friend.", "positive"), ("I do not like that man.", "negative"), ("My house is not great.", "negative"), ("Your song is annoying.", "negative"), ] class BadNLTKClassifier(NLTKClassifier): """An NLTK classifier without ``nltk_class`` defined. Oops!""" pass class TestNLTKClassifier(unittest.TestCase): def setUp(self): self.bad_classifier = BadNLTKClassifier(train_set) def test_raises_value_error_without_nltk_class(self): with pytest.raises(ValueError): self.bad_classifier.classifier # noqa: B018 with pytest.raises(ValueError): self.bad_classifier.train(train_set) with pytest.raises(ValueError): self.bad_classifier.update([("This is no good.", "negative")]) class TestNaiveBayesClassifier(unittest.TestCase): def setUp(self): self.classifier = NaiveBayesClassifier(train_set) def test_default_extractor(self): text = "I feel happy this morning." assert self.classifier.extract_features(text) == basic_extractor( text, train_set ) def test_classify(self): res = self.classifier.classify("I feel happy this morning") assert res == "positive" assert len(self.classifier.train_set) == len(train_set) def test_classify_a_list_of_words(self): res = self.classifier.classify(["I", "feel", "happy", "this", "morning"]) assert res == "positive" def test_train_from_lists_of_words(self): # classifier can be trained on lists of words instead of strings train = [(doc.split(), label) for doc, label in train_set] classifier = NaiveBayesClassifier(train) assert classifier.accuracy(test_set) == self.classifier.accuracy(test_set) def test_prob_classify(self): res = self.classifier.prob_classify("I feel happy this morning") assert res.max() == "positive" assert res.prob("positive") > res.prob("negative") def test_accuracy(self): acc = self.classifier.accuracy(test_set) assert isinstance(acc, float) def test_update(self): res1 = self.classifier.prob_classify("lorem ipsum") original_length = len(self.classifier.train_set) self.classifier.update([("lorem ipsum", "positive")]) new_length = len(self.classifier.train_set) res2 = self.classifier.prob_classify("lorem ipsum") assert res2.prob("positive") > res1.prob("positive") assert original_length + 1 == new_length def test_labels(self): labels = self.classifier.labels() assert "positive" in labels assert "negative" in labels def test_show_informative_features(self): self.classifier.show_informative_features() def test_informative_features(self): feats = self.classifier.informative_features(3) assert isinstance(feats, list) assert isinstance(feats[0], tuple) def test_custom_feature_extractor(self): cl = NaiveBayesClassifier(train_set, custom_extractor) cl.classify("Yay! I'm so happy it works.") assert cl.train_features[0][1] == "positive" def test_init_with_csv_file(self): with open(CSV_FILE) as fp: cl = NaiveBayesClassifier(fp, format="csv") assert cl.classify("I feel happy this morning") == "pos" training_sentence = cl.train_set[0][0] assert isinstance(training_sentence, str) def test_init_with_csv_file_without_format_specifier(self): with open(CSV_FILE) as fp: cl = NaiveBayesClassifier(fp) assert cl.classify("I feel happy this morning") == "pos" training_sentence = cl.train_set[0][0] assert isinstance(training_sentence, str) def test_init_with_json_file(self): with open(JSON_FILE) as fp: cl = NaiveBayesClassifier(fp, format="json") assert cl.classify("I feel happy this morning") == "pos" training_sentence = cl.train_set[0][0] assert isinstance(training_sentence, str) def test_init_with_json_file_without_format_specifier(self): with open(JSON_FILE) as fp: cl = NaiveBayesClassifier(fp) assert cl.classify("I feel happy this morning") == "pos" training_sentence = cl.train_set[0][0] assert isinstance(training_sentence, str) def test_init_with_custom_format(self): redis_train = [("I like turtles", "pos"), ("I hate turtles", "neg")] class MockRedisFormat(formats.BaseFormat): def __init__(self, client, port): self.client = client self.port = port @classmethod def detect(cls, stream): return True def to_iterable(self): return redis_train formats.register("redis", MockRedisFormat) mock_redis = mock.Mock() cl = NaiveBayesClassifier(mock_redis, format="redis", port=1234) assert cl.train_set == redis_train def test_data_with_no_available_format(self): mock_fp = mock.Mock() mock_fp.read.return_value = "" with pytest.raises(FormatError): NaiveBayesClassifier(mock_fp) def test_accuracy_on_a_csv_file(self): with open(CSV_FILE) as fp: a = self.classifier.accuracy(fp) assert type(a) == float def test_accuracy_on_json_file(self): with open(CSV_FILE) as fp: a = self.classifier.accuracy(fp) assert type(a) == float def test_init_with_tsv_file(self): with open(TSV_FILE) as fp: cl = NaiveBayesClassifier(fp) assert cl.classify("I feel happy this morning") == "pos" training_sentence = cl.train_set[0][0] assert isinstance(training_sentence, str) def test_init_with_bad_format_specifier(self): with pytest.raises(ValueError): NaiveBayesClassifier(CSV_FILE, format="unknown") def test_repr(self): assert ( repr(self.classifier) == f"" ) class TestDecisionTreeClassifier(unittest.TestCase): def setUp(self): self.classifier = DecisionTreeClassifier(train_set) def test_classify(self): res = self.classifier.classify("I feel happy this morning") assert res == "positive" assert len(self.classifier.train_set) == len(train_set) def test_accuracy(self): acc = self.classifier.accuracy(test_set) assert isinstance(acc, float) def test_update(self): original_length = len(self.classifier.train_set) self.classifier.update([("lorem ipsum", "positive")]) new_length = len(self.classifier.train_set) assert original_length + 1 == new_length def test_custom_feature_extractor(self): cl = DecisionTreeClassifier(train_set, custom_extractor) cl.classify("Yay! I'm so happy it works.") assert cl.train_features[0][1] == "positive" def test_pseudocode(self): code = self.classifier.pseudocode() assert "if" in code def test_pretty_format(self): pp = self.classifier.pprint(width=60) pf = self.classifier.pretty_format(width=60) assert isinstance(pp, str) assert pp == pf def test_repr(self): assert ( repr(self.classifier) == f"" ) @pytest.mark.numpy @pytest.mark.slow class TestMaxEntClassifier(unittest.TestCase): def setUp(self): self.classifier = MaxEntClassifier(train_set) def test_classify(self): res = self.classifier.classify("I feel happy this morning") assert res == "positive" assert len(self.classifier.train_set) == len(train_set) def test_prob_classify(self): res = self.classifier.prob_classify("I feel happy this morning") assert res.max() == "positive" assert res.prob("positive") > res.prob("negative") class TestPositiveNaiveBayesClassifier(unittest.TestCase): def setUp(self): sports_sentences = [ "The team dominated the game", "They lost the ball", "The game was intense", "The goalkeeper catched the ball", "The other team controlled the ballThe ball went off the court", "They had the ball for the whole game", ] various_sentences = [ "The President did not comment", "I lost the keys", "The team won the game", "Sara has two kids", "The show is over", "The cat ate the mouse.", ] self.classifier = PositiveNaiveBayesClassifier( positive_set=sports_sentences, unlabeled_set=various_sentences ) def test_classifier(self): assert isinstance( self.classifier.classifier, nltk.classify.PositiveNaiveBayesClassifier ) def test_classify(self): assert self.classifier.classify("My team lost the game.") assert not self.classifier.classify("The cat is on the table.") def test_update(self): orig_pos_length = len(self.classifier.positive_set) orig_unlabeled_length = len(self.classifier.unlabeled_set) self.classifier.update( new_positive_data=["He threw the ball to the base."], new_unlabeled_data=["I passed a tree today."], ) new_pos_length = len(self.classifier.positive_set) new_unlabeled_length = len(self.classifier.unlabeled_set) assert new_pos_length == orig_pos_length + 1 assert new_unlabeled_length == orig_unlabeled_length + 1 def test_accuracy(self): test_set = [ ("My team lost the game", True), ("The ball was in the court.", True), ("We should have won the game.", True), ("And now for something completely different", False), ("I can't believe it's not butter.", False), ] accuracy = self.classifier.accuracy(test_set) assert isinstance(accuracy, float) def test_repr(self): assert ( repr(self.classifier) == f"" # noqa: E501 ) def test_basic_extractor(): text = "I feel happy this morning." feats = basic_extractor(text, train_set) assert feats["contains(feel)"] assert feats["contains(morning)"] assert not feats["contains(amazing)"] def test_basic_extractor_with_list(): text = "I feel happy this morning.".split() feats = basic_extractor(text, train_set) assert feats["contains(feel)"] assert feats["contains(morning)"] assert not feats["contains(amazing)"] def test_contains_extractor_with_string(): text = "Simple is better than complex" features = contains_extractor(text) assert features["contains(Simple)"] assert not features.get("contains(simple)", False) assert features["contains(complex)"] assert not features.get("contains(derp)", False) def test_contains_extractor_with_list(): text = ["Simple", "is", "better", "than", "complex"] features = contains_extractor(text) assert features["contains(Simple)"] assert not features.get("contains(simple)", False) assert features["contains(complex)"] assert not features.get("contains(derp)", False) def custom_extractor(document): feats = {} tokens = document.split() for tok in tokens: feat_name = f"last_letter({tok[-1]})" feats[feat_name] = True return feats def test_get_words_from_dataset(): tok = WordTokenizer() all_words = [] for words, _ in train_set: all_words.extend(tok.itokenize(words, include_punc=False)) assert _get_words_from_dataset(train_set) == set(all_words) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_decorators.py ================================================ import unittest import pytest from textblob.decorators import requires_nltk_corpus from textblob.exceptions import MissingCorpusError class Tokenizer: @requires_nltk_corpus def tag(self, text): raise LookupError def test_decorator_raises_missing_corpus_exception(): t = Tokenizer() with pytest.raises(MissingCorpusError): t.tag("hello world") if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_formats.py ================================================ import os import unittest from textblob import formats HERE = os.path.abspath(os.path.dirname(__file__)) CSV_FILE = os.path.join(HERE, "data.csv") JSON_FILE = os.path.join(HERE, "data.json") TSV_FILE = os.path.join(HERE, "data.tsv") class TestFormats(unittest.TestCase): def setUp(self): pass def test_detect_csv(self): with open(CSV_FILE) as fp: format = formats.detect(fp) assert format == formats.CSV def test_detect_json(self): with open(JSON_FILE) as fp: format = formats.detect(fp) assert format == formats.JSON def test_available(self): registry = formats.get_registry() assert "csv" in registry.keys() assert "json" in registry.keys() assert "tsv" in registry.keys() class TestDelimitedFormat(unittest.TestCase): def test_delimiter_defaults_to_comma(self): assert formats.DelimitedFormat.delimiter == "," def test_detect(self): with open(CSV_FILE) as fp: stream = fp.read() assert formats.DelimitedFormat.detect(stream) with open(JSON_FILE) as fp: stream = fp.read() assert not formats.DelimitedFormat.detect(stream) class TestCSV(unittest.TestCase): def test_read_from_filename(self): with open(CSV_FILE) as fp: formats.CSV(fp) def test_detect(self): with open(CSV_FILE) as fp: stream = fp.read() assert formats.CSV.detect(stream) with open(JSON_FILE) as fp: stream = fp.read() assert not formats.CSV.detect(stream) class TestTSV(unittest.TestCase): def test_read_from_file_object(self): with open(TSV_FILE) as fp: formats.TSV(fp) def test_detect(self): with open(TSV_FILE) as fp: stream = fp.read() assert formats.TSV.detect(stream) with open(CSV_FILE) as fp: stream = fp.read() assert not formats.TSV.detect(stream) class TestJSON(unittest.TestCase): def test_read_from_file_object(self): with open(JSON_FILE) as fp: formats.JSON(fp) def test_detect(self): with open(JSON_FILE) as fp: stream = fp.read() assert formats.JSON.detect(stream) with open(CSV_FILE) as fp: stream = fp.read() assert not formats.JSON.detect(stream) def test_to_iterable(self): with open(JSON_FILE) as fp: d = formats.JSON(fp) data = d.to_iterable() first = data[0] text, _label = first[0], first[1] assert isinstance(text, str) class CustomFormat(formats.BaseFormat): def to_iterable(): return [("I like turtles", "pos"), ("I hate turtles", "neg")] @classmethod def detect(cls, stream): return True class TestRegistry(unittest.TestCase): def setUp(self): pass def test_register(self): registry = formats.get_registry() assert CustomFormat not in registry.values() formats.register("trt", CustomFormat) assert CustomFormat in registry.values() assert "trt" in registry.keys() if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_inflect.py ================================================ from unittest import TestCase from textblob.en.inflect import ( plural_categories, pluralize, singular_ie, singular_irregular, singularize, ) class InflectTestCase(TestCase): def s_singular_pluralize_test(self): assert pluralize("lens") == "lenses" def s_singular_singularize_test(self): assert singularize("lenses") == "lens" def diagnoses_singularize_test(self): assert singularize("diagnoses") == "diagnosis" def bus_pluralize_test(self): assert pluralize("bus") == "buses" def test_all_singular_s(self): for w in plural_categories["s-singular"]: assert singularize(pluralize(w)) == w def test_all_singular_ie(self): for w in singular_ie: assert pluralize(w).endswith("ies") assert singularize(pluralize(w)) == w def test_all_singular_irregular(self): for singular_w in singular_irregular.values(): assert singular_irregular[pluralize(singular_w)] == singular_w ================================================ FILE: tests/test_np_extractor.py ================================================ import unittest import nltk import pytest from textblob.base import BaseNPExtractor from textblob.np_extractors import ConllExtractor from textblob.utils import filter_insignificant class TestConllExtractor(unittest.TestCase): def setUp(self): self.extractor = ConllExtractor() self.text = """ Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in other languages. The language provides constructs intended to enable clear programs on both a small and large scale. """ self.sentence = ( "Python is a widely used general-purpose, high-level programming language" ) @pytest.mark.slow def test_extract(self): noun_phrases = self.extractor.extract(self.text) assert "Python" in noun_phrases assert "design philosophy" in noun_phrases assert "code readability" in noun_phrases @pytest.mark.slow def test_parse_sentence(self): parsed = self.extractor._parse_sentence(self.sentence) assert isinstance(parsed, nltk.tree.Tree) @pytest.mark.slow def test_filter_insignificant(self): chunk = self.extractor._parse_sentence(self.sentence) tags = [tag for word, tag in chunk.leaves()] assert "DT" in tags filtered = filter_insignificant(chunk.leaves()) tags = [tag for word, tag in filtered] assert "DT" not in tags class BadExtractor(BaseNPExtractor): """An extractor without an extract method. How useless.""" pass def test_cannot_instantiate_incomplete_extractor(): with pytest.raises(TypeError): BadExtractor() if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_parsers.py ================================================ import unittest from textblob.en import parse as pattern_parse from textblob.parsers import PatternParser class TestPatternParser(unittest.TestCase): def setUp(self): self.parser = PatternParser() self.text = "And now for something completely different." def test_parse(self): assert self.parser.parse(self.text) == pattern_parse(self.text) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_sentiments.py ================================================ import unittest import pytest from textblob.sentiments import ( CONTINUOUS, DISCRETE, NaiveBayesAnalyzer, PatternAnalyzer, ) class TestPatternSentiment(unittest.TestCase): def setUp(self): self.analyzer = PatternAnalyzer() def test_kind(self): assert self.analyzer.kind == CONTINUOUS def test_analyze(self): p1 = "I feel great this morning." n1 = "This is a terrible car." p1_result = self.analyzer.analyze(p1) n1_result = self.analyzer.analyze(n1) assert p1_result[0] > 0 assert n1_result[0] < 0 assert p1_result.polarity == p1_result[0] assert p1_result.subjectivity == p1_result[1] def test_analyze_assessments(self): p1 = "I feel great this morning." n1 = "This is a terrible car." p1_result = self.analyzer.analyze(p1, keep_assessments=True) n1_result = self.analyzer.analyze(n1, keep_assessments=True) p1_assessment = p1_result.assessments[0] n1_assessment = n1_result.assessments[0] assert p1_assessment[1] > 0 assert n1_assessment[1] < 0 assert p1_result.polarity == p1_assessment[1] assert p1_result.subjectivity == p1_assessment[2] class TestNaiveBayesAnalyzer(unittest.TestCase): def setUp(self): self.analyzer = NaiveBayesAnalyzer() def test_kind(self): assert self.analyzer.kind == DISCRETE @pytest.mark.slow def test_analyze(self): p1 = "I feel great this morning." n1 = "This is a terrible car." p1_result = self.analyzer.analyze(p1) assert p1_result[0] == "pos" assert self.analyzer.analyze(n1)[0] == "neg" # The 2nd item should be the probability that it is positive assert isinstance(p1_result[1], float) # 3rd item is probability that it is negative assert isinstance(p1_result[2], float) assert_about_equal(p1_result[1] + p1_result[2], 1) assert p1_result.classification == p1_result[0] assert p1_result.p_pos == p1_result[1] assert p1_result.p_neg == p1_result[2] def assert_about_equal(first, second, places=4): assert round(first, places) == second if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_taggers.py ================================================ import os import unittest import pytest import textblob.taggers from textblob.base import BaseTagger HERE = os.path.abspath(os.path.dirname(__file__)) AP_MODEL_LOC = os.path.join(HERE, "trontagger.pickle") class TestPatternTagger(unittest.TestCase): def setUp(self): self.text = "Simple is better than complex. Complex is better than complicated." self.tagger = textblob.taggers.PatternTagger() def test_init(self): tagger = textblob.taggers.PatternTagger() assert isinstance(tagger, textblob.taggers.BaseTagger) def test_tag(self): tags = self.tagger.tag(self.text) assert tags == [ ("Simple", "JJ"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complex", "JJ"), (".", "."), ("Complex", "NNP"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complicated", "VBN"), (".", "."), ] @pytest.mark.slow @pytest.mark.numpy class TestNLTKTagger(unittest.TestCase): def setUp(self): self.text = "Simple is better than complex. Complex is better than complicated." self.tagger = textblob.taggers.NLTKTagger() def test_tag(self): tags = self.tagger.tag(self.text) assert tags == [ ("Simple", "NN"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complex", "JJ"), (".", "."), ("Complex", "NNP"), ("is", "VBZ"), ("better", "JJR"), ("than", "IN"), ("complicated", "VBN"), (".", "."), ] def test_cannot_instantiate_incomplete_tagger(): class BadTagger(BaseTagger): """A tagger without a tag method. How useless.""" pass with pytest.raises(TypeError): BadTagger() if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_tokenizers.py ================================================ import unittest import pytest from textblob.tokenizers import ( SentenceTokenizer, WordTokenizer, sent_tokenize, word_tokenize, ) def is_generator(obj): return hasattr(obj, "__next__") class TestWordTokenizer(unittest.TestCase): def setUp(self): self.tokenizer = WordTokenizer() self.text = "Python is a high-level programming language." def tearDown(self): pass def test_tokenize(self): assert self.tokenizer.tokenize(self.text) == [ "Python", "is", "a", "high-level", "programming", "language", ".", ] def test_exclude_punc(self): assert self.tokenizer.tokenize(self.text, include_punc=False) == [ "Python", "is", "a", "high-level", "programming", "language", ] def test_itokenize(self): gen = self.tokenizer.itokenize(self.text) assert next(gen) == "Python" assert next(gen) == "is" def test_word_tokenize(self): tokens = word_tokenize(self.text) assert is_generator(tokens) assert list(tokens) == self.tokenizer.tokenize(self.text) class TestSentenceTokenizer(unittest.TestCase): def setUp(self): self.tokenizer = SentenceTokenizer() self.text = "Beautiful is better than ugly. Simple is better than complex." def test_tokenize(self): assert self.tokenizer.tokenize(self.text) == [ "Beautiful is better than ugly.", "Simple is better than complex.", ] @pytest.mark.skip # This is a known problem with the sentence tokenizer. def test_tokenize_with_multiple_punctuation(self): text = "Hello world. How do you do?! My name's Steve..." assert self.tokenizer.tokenize(text) == [ "Hello world.", "How do you do?!", "My name's Steve...", ] text2 = "OMG! I am soooo LOL!!!" tokens = self.tokenizer.tokenize(text2) assert len(tokens) == 2 assert tokens == ["OMG!", "I am soooo LOL!!!"] def test_itokenize(self): gen = self.tokenizer.itokenize(self.text) assert next(gen) == "Beautiful is better than ugly." assert next(gen) == "Simple is better than complex." def test_sent_tokenize(self): tokens = sent_tokenize(self.text) assert is_generator(tokens) # It's a generator assert list(tokens) == self.tokenizer.tokenize(self.text) if __name__ == "__main__": unittest.main() ================================================ FILE: tests/test_utils.py ================================================ import os from unittest import TestCase from textblob.utils import is_filelike, lowerstrip, strip_punc HERE = os.path.abspath(os.path.dirname(__file__)) CSV_FILE = os.path.join(HERE, "data.csv") class UtilsTests(TestCase): def setUp(self): self.text = "this. Has. Punctuation?! " def test_strip_punc(self): assert strip_punc(self.text) == "this. Has. Punctuation" def test_strip_punc_all(self): assert strip_punc(self.text, all=True) == "this Has Punctuation" def test_lowerstrip(self): assert lowerstrip(self.text) == "this. has. punctuation" def test_is_filelike(): with open(CSV_FILE) as fp: assert is_filelike(fp) assert not is_filelike("notafile") assert not is_filelike(12.3) ================================================ FILE: tox.ini ================================================ [tox] envlist = lint py{39,310,311,312,313} py39-lowest [testenv] extras = tests deps = lowest: nltk==3.9 commands = pytest {posargs} [testenv:lint] deps = pre-commit>=3.5,<5.0 skip_install = true commands = pre-commit run --all-files [testenv:docs] extras = docs commands = sphinx-build docs/ docs/_build {posargs} ; Below tasks are for development only (not run in CI) [testenv:docs-serve] deps = sphinx-autobuild extras = docs commands = sphinx-autobuild --port=0 --open-browser --delay=2 docs/ docs/_build {posargs} --watch src --watch CONTRIBUTING.rst --watch README.rst [testenv:readme-serve] deps = restview skip_install = true commands = restview README.rst